From commits-return-14048-apmail-directory-commits-archive=directory.apache.org@directory.apache.org Wed Jun 06 11:28:49 2007 Return-Path: Delivered-To: apmail-directory-commits-archive@www.apache.org Received: (qmail 62121 invoked from network); 6 Jun 2007 11:28:47 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 6 Jun 2007 11:28:47 -0000 Received: (qmail 58461 invoked by uid 500); 6 Jun 2007 11:28:51 -0000 Delivered-To: apmail-directory-commits-archive@directory.apache.org Received: (qmail 58409 invoked by uid 500); 6 Jun 2007 11:28:51 -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 58388 invoked by uid 99); 6 Jun 2007 11:28:51 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 06 Jun 2007 04:28:51 -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; Wed, 06 Jun 2007 04:28:46 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 381A21A981A; Wed, 6 Jun 2007 04:28:26 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r544808 - /directory/shared/trunk/ldap-constants/src/main/java/org/apache/directory/shared/ldap/constants/SchemaConstants.java Date: Wed, 06 Jun 2007 11:28:26 -0000 To: commits@directory.apache.org From: elecharny@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20070606112826.381A21A981A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: elecharny Date: Wed Jun 6 04:28:25 2007 New Revision: 544808 URL: http://svn.apache.org/viewvc?view=rev&rev=544808 Log: Added some more ObjectClasses and AttributeTypes : "country", "locality", "organization", "organizationRole", "residentialPerson", "subschemaSubentry" 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=544808&r1=544807&r2=544808 ============================================================================== --- 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 Wed Jun 6 04:28:25 2007 @@ -38,6 +38,18 @@ public static final String ALIAS_OC = "alias"; public static final String ALIAS_OC_OID = "2.5.6.1"; + // Country + public static final String COUNTRY_OC = "country"; + public static final String COUNTRY_OC_OID = "2.5.6.2"; + + // Locality + public static final String LOCALITY_OC = "locality"; + public static final String LOCALITY_OC_OID = "2.5.6.3"; + + // Organization + public static final String ORGANIZATION_OC = "organization"; + public static final String ORGANIZATION_OC_OID = "2.5.6.4"; + // OrganizationalUnit public static final String ORGANIZATIONAL_UNIT_OC = "organizationalUnit"; public static final String ORGANIZATIONAL_UNIT_OC_OID = "2.5.6.5"; @@ -50,10 +62,18 @@ public static final String ORGANIZATIONAL_PERSON_OC = "organizationalPerson"; public static final String ORGANIZATIONAL_PERSON_OC_OID = "2.5.6.7"; + // OrganizationalRole + public static final String ORGANIZATIONAL_ROLE_OC = "organizationalRole"; + public static final String ORGANIZATIONAL_ROLE_OC_OID = "2.5.6.8"; + // GroupOfNames public static final String GROUP_OF_NAMES_OC = "groupOfNames"; public static final String GROUP_OF_NAMES_OC_OID = "2.5.6.9"; + // ResidentialPerson + public static final String RESIDENTIAL_PERSON_OC = "residentialPerson"; + public static final String RESIDENTIAL_PERSON_OC_OID = "2.5.6.10"; + // GroupOfUniqueNames public static final String GROUP_OF_UNIQUE_NAMES_OC = "groupOfUniqueNames"; public static final String GROUP_OF_UNIQUE_NAMES_OC_OID = "2.5.6.17"; @@ -134,6 +154,10 @@ // SubtreeSpecification public static final String SUBTREE_SPECIFICATION_AT = "subtreeSpecification"; public static final String SUBTREE_SPECIFICATION_AT_OID = "2.5.18.6"; + + // SubschemaSubentry + public static final String SUBSCHEMA_SUBENTRY_AT = "subschemaSubentry"; + public static final String SUBSCHEMA_SUBENTRY_AT_OID = "2.5.18.10"; // DitStructureRules public static final String DIT_STRUCTURE_RULES_AT = "ditStructureRules";