Return-Path: Delivered-To: apmail-incubator-sling-commits-archive@locus.apache.org Received: (qmail 62721 invoked from network); 26 Aug 2008 07:04:48 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 26 Aug 2008 07:04:48 -0000 Received: (qmail 47631 invoked by uid 500); 26 Aug 2008 07:04:46 -0000 Delivered-To: apmail-incubator-sling-commits-archive@incubator.apache.org Received: (qmail 47589 invoked by uid 500); 26 Aug 2008 07:04:46 -0000 Mailing-List: contact sling-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: sling-dev@incubator.apache.org Delivered-To: mailing list sling-commits@incubator.apache.org Received: (qmail 47580 invoked by uid 99); 26 Aug 2008 07:04:46 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 26 Aug 2008 00:04:46 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.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; Tue, 26 Aug 2008 07:03:57 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 8D567238889D; Tue, 26 Aug 2008 00:03:57 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r688977 - /incubator/sling/trunk/api/src/main/java/org/apache/sling/api/resource/ResourceMetadata.java Date: Tue, 26 Aug 2008 07:03:57 -0000 To: sling-commits@incubator.apache.org From: fmeschbe@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080826070357.8D567238889D@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: fmeschbe Date: Tue Aug 26 00:03:56 2008 New Revision: 688977 URL: http://svn.apache.org/viewvc?rev=688977&view=rev Log: SLING-627 Clarify the sling.resolutionPathInfo property java doc Modified: incubator/sling/trunk/api/src/main/java/org/apache/sling/api/resource/ResourceMetadata.java Modified: incubator/sling/trunk/api/src/main/java/org/apache/sling/api/resource/ResourceMetadata.java URL: http://svn.apache.org/viewvc/incubator/sling/trunk/api/src/main/java/org/apache/sling/api/resource/ResourceMetadata.java?rev=688977&r1=688976&r2=688977&view=diff ============================================================================== --- incubator/sling/trunk/api/src/main/java/org/apache/sling/api/resource/ResourceMetadata.java (original) +++ incubator/sling/trunk/api/src/main/java/org/apache/sling/api/resource/ResourceMetadata.java Tue Aug 26 00:03:56 2008 @@ -26,11 +26,10 @@ * just a map of objects indexed by string keys. *

* The actual contents of the meta data map is implementation specific with the - * exception the {@link #RESOLUTION_PATH sling.resolutionPath} and - * {@link #RESOLUTION_PATH_INFO sling.resolutionPathInfo} properties which must - * be provided by all implementations and contain the parts of the request URI - * used to resolve the resource. The type of these property values is defined to - * be String. + * exception of the {@link #RESOLUTION_PATH sling.resolutionPath} property which + * must be provided by all implementations and contain the part of the request + * URI used to resolve the resource. The type of this property value is defined + * to be String. *

* Note, that the prefix sling. to key names is reserved for the * Sling implementation. @@ -51,6 +50,9 @@ * property concatenated to the value of the * {@link #RESOLUTION_PATH sling.resolutionPath} property returns the * original request URI leading to the resource. + *

+ * This property is optional. If missing, it should be assumed equal to an + * empty string. * * @since 2.0.3-incubator-SNAPSHOT */