Return-Path: X-Original-To: apmail-geode-commits-archive@minotaur.apache.org Delivered-To: apmail-geode-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 2F3FB18D15 for ; Fri, 4 Mar 2016 17:30:21 +0000 (UTC) Received: (qmail 32401 invoked by uid 500); 4 Mar 2016 17:30:21 -0000 Delivered-To: apmail-geode-commits-archive@geode.apache.org Received: (qmail 32373 invoked by uid 500); 4 Mar 2016 17:30:21 -0000 Mailing-List: contact commits-help@geode.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@geode.incubator.apache.org Delivered-To: mailing list commits@geode.incubator.apache.org Received: (qmail 32364 invoked by uid 99); 4 Mar 2016 17:30:21 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd4-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 04 Mar 2016 17:30:21 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd4-us-west.apache.org (ASF Mail Server at spamd4-us-west.apache.org) with ESMTP id 8FC09C0D30 for ; Fri, 4 Mar 2016 17:30:20 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd4-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -3.549 X-Spam-Level: X-Spam-Status: No, score=-3.549 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, KAM_LAZY_DOMAIN_SECURITY=1, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H3=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-0.329] autolearn=disabled Received: from mx1-lw-eu.apache.org ([10.40.0.8]) by localhost (spamd4-us-west.apache.org [10.40.0.11]) (amavisd-new, port 10024) with ESMTP id a3j6gtFChayp for ; Fri, 4 Mar 2016 17:30:19 +0000 (UTC) Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx1-lw-eu.apache.org (ASF Mail Server at mx1-lw-eu.apache.org) with SMTP id B45105FE63 for ; Fri, 4 Mar 2016 17:30:16 +0000 (UTC) Received: (qmail 30576 invoked by uid 99); 4 Mar 2016 17:30:14 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 04 Mar 2016 17:30:14 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 01CB2E790D; Fri, 4 Mar 2016 17:30:13 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: klund@apache.org To: commits@geode.incubator.apache.org Date: Fri, 04 Mar 2016 17:30:19 -0000 Message-Id: <4753a3ea81884512a253a216e769e555@git.apache.org> In-Reply-To: <96b6b252494842f082a5f2c89924a503@git.apache.org> References: <96b6b252494842f082a5f2c89924a503@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [07/14] incubator-geode git commit: GEODE-991: Marking LuceneFunction as in InternalEntity GEODE-991: Marking LuceneFunction as in InternalEntity This prevents LuceneFunction from showing up in the list functions command in gfsh. Project: http://git-wip-us.apache.org/repos/asf/incubator-geode/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-geode/commit/0ca2f2ea Tree: http://git-wip-us.apache.org/repos/asf/incubator-geode/tree/0ca2f2ea Diff: http://git-wip-us.apache.org/repos/asf/incubator-geode/diff/0ca2f2ea Branch: refs/heads/feature/GEODE-949-2 Commit: 0ca2f2ea16d09b67b3b7b3c723b0f02e35b577b3 Parents: e1a0830 Author: Dan Smith Authored: Wed Mar 2 14:12:52 2016 -0800 Committer: Dan Smith Committed: Wed Mar 2 14:21:08 2016 -0800 ---------------------------------------------------------------------- .../gemfire/cache/lucene/internal/distributed/LuceneFunction.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/0ca2f2ea/geode-lucene/src/main/java/com/gemstone/gemfire/cache/lucene/internal/distributed/LuceneFunction.java ---------------------------------------------------------------------- diff --git a/geode-lucene/src/main/java/com/gemstone/gemfire/cache/lucene/internal/distributed/LuceneFunction.java b/geode-lucene/src/main/java/com/gemstone/gemfire/cache/lucene/internal/distributed/LuceneFunction.java index c3b79c5..199b698 100644 --- a/geode-lucene/src/main/java/com/gemstone/gemfire/cache/lucene/internal/distributed/LuceneFunction.java +++ b/geode-lucene/src/main/java/com/gemstone/gemfire/cache/lucene/internal/distributed/LuceneFunction.java @@ -39,6 +39,7 @@ import com.gemstone.gemfire.cache.lucene.internal.repository.IndexRepository; import com.gemstone.gemfire.cache.lucene.internal.repository.IndexResultCollector; import com.gemstone.gemfire.cache.lucene.internal.repository.RepositoryManager; import com.gemstone.gemfire.cache.query.QueryException; +import com.gemstone.gemfire.internal.InternalEntity; import com.gemstone.gemfire.internal.cache.BucketNotFoundException; import com.gemstone.gemfire.internal.logging.LogService; @@ -47,7 +48,7 @@ import com.gemstone.gemfire.internal.logging.LogService; * and arguments like region and buckets. It invokes search on the local index and provides a result collector. The * locally collected results are sent to the search coordinator. */ -public class LuceneFunction extends FunctionAdapter { +public class LuceneFunction extends FunctionAdapter implements InternalEntity { private static final long serialVersionUID = 1L; public static final String ID = LuceneFunction.class.getName();