Return-Path: Delivered-To: apmail-directory-commits-archive@www.apache.org Received: (qmail 69032 invoked from network); 18 Dec 2007 17:26:45 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 18 Dec 2007 17:26:45 -0000 Received: (qmail 7413 invoked by uid 500); 18 Dec 2007 17:26:34 -0000 Delivered-To: apmail-directory-commits-archive@directory.apache.org Received: (qmail 7379 invoked by uid 500); 18 Dec 2007 17:26:33 -0000 Mailing-List: contact commits-help@directory.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@directory.apache.org Delivered-To: mailing list commits@directory.apache.org Received: (qmail 7367 invoked by uid 99); 18 Dec 2007 17:26:33 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 18 Dec 2007 09:26:33 -0800 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 18 Dec 2007 17:26:30 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 5DC6A1A9838; Tue, 18 Dec 2007 09:26:21 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r605263 - /directory/shared/branches/bigbang/ldap/src/main/java/org/apache/directory/shared/ldap/entry/EntryAttribute.java Date: Tue, 18 Dec 2007 17:26:20 -0000 To: commits@directory.apache.org From: elecharny@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20071218172621.5DC6A1A9838@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: elecharny Date: Tue Dec 18 09:26:14 2007 New Revision: 605263 URL: http://svn.apache.org/viewvc?rev=605263&view=rev Log: Added the getUpId in the top level interface Modified: directory/shared/branches/bigbang/ldap/src/main/java/org/apache/directory/shared/ldap/entry/EntryAttribute.java Modified: directory/shared/branches/bigbang/ldap/src/main/java/org/apache/directory/shared/ldap/entry/EntryAttribute.java URL: http://svn.apache.org/viewvc/directory/shared/branches/bigbang/ldap/src/main/java/org/apache/directory/shared/ldap/entry/EntryAttribute.java?rev=605263&r1=605262&r2=605263&view=diff ============================================================================== --- directory/shared/branches/bigbang/ldap/src/main/java/org/apache/directory/shared/ldap/entry/EntryAttribute.java (original) +++ directory/shared/branches/bigbang/ldap/src/main/java/org/apache/directory/shared/ldap/entry/EntryAttribute.java Tue Dec 18 09:26:14 2007 @@ -216,6 +216,20 @@ /** + * Get's the user provided identifier for this entry. This is the value + * that will be used as the identifier for the attribute within the + * entry. If this is a commonName attribute for example and the user + * provides "COMMONname" instead when adding the entry then this is + * the format the user will have that entry returned by the directory + * server. To do so we store this value as it was given and track it + * in the attribute using this property. + * + * @return the user provided identifier for this attribute + */ + String getUpId(); + + + /** * Returns an iterator over all the attribute's values. *

* The effect on the returned enumeration of adding or removing values of