Return-Path: Delivered-To: apmail-directory-commits-archive@www.apache.org Received: (qmail 43875 invoked from network); 5 Jun 2007 15:58:45 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 5 Jun 2007 15:58:45 -0000 Received: (qmail 62239 invoked by uid 500); 5 Jun 2007 15:58:48 -0000 Delivered-To: apmail-directory-commits-archive@directory.apache.org Received: (qmail 62204 invoked by uid 500); 5 Jun 2007 15:58:48 -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 62193 invoked by uid 99); 5 Jun 2007 15:58:48 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 05 Jun 2007 08:58:48 -0700 X-ASF-Spam-Status: No, hits=-99.5 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME 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, 05 Jun 2007 08:58:44 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 1D29D1A981A; Tue, 5 Jun 2007 08:58:24 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r544525 - /directory/shared/trunk/ldap-constants/src/main/java/org/apache/directory/shared/ldap/constants/SchemaConstants.java Date: Tue, 05 Jun 2007 15:58:24 -0000 To: commits@directory.apache.org From: elecharny@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20070605155824.1D29D1A981A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: elecharny Date: Tue Jun 5 08:58:23 2007 New Revision: 544525 URL: http://svn.apache.org/viewvc?view=rev&rev=544525 Log: Added the "alias" OC and the "aliasedObjectName" AT Modified: directory/shared/trunk/ldap-constants/src/main/java/org/apache/directory/shared/ldap/constants/SchemaConstants.java Modified: directory/shared/trunk/ldap-constants/src/main/java/org/apache/directory/shared/ldap/constants/SchemaConstants.java URL: http://svn.apache.org/viewvc/directory/shared/trunk/ldap-constants/src/main/java/org/apache/directory/shared/ldap/constants/SchemaConstants.java?view=diff&rev=544525&r1=544524&r2=544525 ============================================================================== --- directory/shared/trunk/ldap-constants/src/main/java/org/apache/directory/shared/ldap/constants/SchemaConstants.java (original) +++ directory/shared/trunk/ldap-constants/src/main/java/org/apache/directory/shared/ldap/constants/SchemaConstants.java Tue Jun 5 08:58:23 2007 @@ -34,6 +34,10 @@ public static final String TOP_OC = "top"; public static final String TOP_OC_OID = "2.5.6.0"; + // Alias + public static final String ALIAS_OC = "alias"; + public static final String ALIAS_OC_OID = "2.5.6.1"; + // OrganizationalUnit public static final String ORGANIZATIONAL_UNIT_OC = "organizationalUnit"; public static final String ORGANIZATIONAL_UNIT_OC_OID = "2.5.6.5"; @@ -79,6 +83,10 @@ // ObjectClass public static final String OBJECT_CLASS_AT = "objectClass"; public static final String OBJECT_CLASS_AT_OID = "2.5.4.0"; + + // AliasedObjectName + public static final String ALIASED_OBJECT_NAME_AT = "aliasedObjectName"; + public static final String ALIASED_OBJECT_NAME_AT_OID = "2.5.4.1"; // Cn public static final String CN_AT = "cn";