Return-Path: Delivered-To: apmail-incubator-jackrabbit-commits-archive@www.apache.org Received: (qmail 49658 invoked from network); 14 Oct 2005 09:02:51 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 14 Oct 2005 09:02:51 -0000 Received: (qmail 53327 invoked by uid 500); 14 Oct 2005 09:02:51 -0000 Mailing-List: contact jackrabbit-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: jackrabbit-dev@incubator.apache.org Delivered-To: mailing list jackrabbit-commits@incubator.apache.org Received: (qmail 53316 invoked by uid 500); 14 Oct 2005 09:02:50 -0000 Delivered-To: apmail-incubator-jackrabbit-cvs@incubator.apache.org Received: (qmail 53313 invoked by uid 99); 14 Oct 2005 09:02:50 -0000 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.29) with SMTP; Fri, 14 Oct 2005 02:02:50 -0700 Received: (qmail 49581 invoked by uid 65534); 14 Oct 2005 09:02:30 -0000 Message-ID: <20051014090230.49580.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r321058 - /incubator/jackrabbit/trunk/src/java/org/apache/jackrabbit/core/value/BLOBFileValue.java Date: Fri, 14 Oct 2005 09:02:29 -0000 To: jackrabbit-cvs@incubator.apache.org From: stefan@apache.org X-Mailer: svnmailer-1.0.5 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: stefan Date: Fri Oct 14 02:02:21 2005 New Revision: 321058 URL: http://svn.apache.org/viewcvs?rev=321058&view=rev Log: javadoc corrections Modified: incubator/jackrabbit/trunk/src/java/org/apache/jackrabbit/core/value/BLOBFileValue.java Modified: incubator/jackrabbit/trunk/src/java/org/apache/jackrabbit/core/value/BLOBFileValue.java URL: http://svn.apache.org/viewcvs/incubator/jackrabbit/trunk/src/java/org/apache/jackrabbit/core/value/BLOBFileValue.java?rev=321058&r1=321057&r2=321058&view=diff ============================================================================== --- incubator/jackrabbit/trunk/src/java/org/apache/jackrabbit/core/value/BLOBFileValue.java (original) +++ incubator/jackrabbit/trunk/src/java/org/apache/jackrabbit/core/value/BLOBFileValue.java Fri Oct 14 02:02:21 2005 @@ -39,10 +39,14 @@ import java.util.Calendar; /** - * BLOBFileValue represents a binary Value that - * is backed by a resource or . Unlike BinaryValue it has no + * BLOBFileValue represents a binary Value which is + * backed by a resource or byte[]. Unlike BinaryValue it has no * state, i.e. the getStream() method always returns a fresh * InputStream instance. + *

+ * Important Note:

+ * This is class is for Jackrabbit-internal use only. Applications should + * use javax.jcr.ValueFactory to create binary values. */ public class BLOBFileValue implements Value {