Return-Path: X-Original-To: apmail-jackrabbit-oak-commits-archive@minotaur.apache.org Delivered-To: apmail-jackrabbit-oak-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 0BDD7D966 for ; Thu, 1 Nov 2012 10:23:11 +0000 (UTC) Received: (qmail 49528 invoked by uid 500); 1 Nov 2012 10:23:10 -0000 Delivered-To: apmail-jackrabbit-oak-commits-archive@jackrabbit.apache.org Received: (qmail 49481 invoked by uid 500); 1 Nov 2012 10:23:10 -0000 Mailing-List: contact oak-commits-help@jackrabbit.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: oak-dev@jackrabbit.apache.org Delivered-To: mailing list oak-commits@jackrabbit.apache.org Received: (qmail 49448 invoked by uid 99); 1 Nov 2012 10:23:08 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 01 Nov 2012 10:23:08 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 01 Nov 2012 10:23:07 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id E647223888E3; Thu, 1 Nov 2012 10:22:23 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1404536 - /jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/index/property/PropertyIndex.java Date: Thu, 01 Nov 2012 10:22:23 -0000 To: oak-commits@jackrabbit.apache.org From: mreutegg@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20121101102223.E647223888E3@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: mreutegg Date: Thu Nov 1 10:22:23 2012 New Revision: 1404536 URL: http://svn.apache.org/viewvc?rev=1404536&view=rev Log: OAK-394: IndexManagerHook to manage existing indexes - fix JavaDoc Modified: jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/index/property/PropertyIndex.java Modified: jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/index/property/PropertyIndex.java URL: http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/index/property/PropertyIndex.java?rev=1404536&r1=1404535&r2=1404536&view=diff ============================================================================== --- jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/index/property/PropertyIndex.java (original) +++ jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/index/property/PropertyIndex.java Thu Nov 1 10:22:23 2012 @@ -44,13 +44,13 @@ import static org.apache.jackrabbit.oak. * Provides a QueryIndex that does lookups against a property index * *

- * To define a property index on a subtree you have to add an oak:index node. + * To define a property index on a subtree you have to add an oak:index node. * * Under it follows the index definition node that: *

    *
  • must be of type oak:queryIndexDefinition
  • *
  • must have the type property set to property
  • - *
  • contains the propertyNames property that indicates what property will be stored in the index
  • + *
  • contains the propertyNames property that indicates what property will be stored in the index
  • *
*

*

@@ -59,11 +59,11 @@ import static org.apache.jackrabbit.oak. *

* *

- * Note: propertyNames can be a list of properties, and it is optional.in case it is missing, the node name will be used as a property name reference value + * Note: propertyNames can be a list of properties, and it is optional.in case it is missing, the node name will be used as a property name reference value *

* *

- * Note: reindex is a property that when set to true, triggers a full content reindex. + * Note: reindex is a property that when set to true, triggers a full content reindex. *

* *