From bbbf0365ea2bf1fccafb6a57c2a7c0243a59b325 Mon Sep 17 00:00:00 2001
From: ludovicp <ludovicp@localhost>
Date: Wed, 18 Aug 2010 13:14:11 +0000
Subject: [PATCH] Add support for inherited collective attributes. This extension to collective attributes brings the feature on par with DSEE CoS.
---
opends/src/server/org/opends/server/util/ServerConstants.java | 60 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 60 insertions(+), 0 deletions(-)
diff --git a/opends/src/server/org/opends/server/util/ServerConstants.java b/opends/src/server/org/opends/server/util/ServerConstants.java
index 4b325ea..7532f88 100644
--- a/opends/src/server/org/opends/server/util/ServerConstants.java
+++ b/opends/src/server/org/opends/server/util/ServerConstants.java
@@ -929,6 +929,66 @@
/**
+ * The name of the "inheritedCollectiveAttributeSubentry" objectclass
+ * (which is a special type of objectclass that makes a kind of COS
+ * template subentry), formatted in camel case.
+ */
+ public static final String OC_INHERITED_COLLECTIVE_ATTR_SUBENTRY =
+ "inheritedCollectiveAttributeSubentry";
+
+
+
+ /**
+ * The name of the "inheritedCollectiveAttributeSubentry" objectclass
+ * (which is a special type of objectclass that makes a kind of COS
+ * template subentry), formatted in all lowercase.
+ */
+ public static final String OC_INHERITED_COLLECTIVE_ATTR_SUBENTRY_LC =
+ "inheritedcollectiveattributesubentry";
+
+
+
+ /**
+ * The name of the "inheritedFromDNCollectiveAttributeSubentry" objectclass
+ * (which is a special type of objectclass that makes a kind of indirect
+ * COS template subentry), formatted in camel case.
+ */
+ public static final String OC_INHERITED_FROM_DN_COLLECTIVE_ATTR_SUBENTRY =
+ "inheritedFromDNCollectiveAttributeSubentry";
+
+
+
+ /**
+ * The name of the "inheritedFromDNCollectiveAttributeSubentry" objectclass
+ * (which is a special type of objectclass that makes a kind of indirect
+ * COS template subentry), formatted in all lowercase.
+ */
+ public static final String OC_INHERITED_FROM_DN_COLLECTIVE_ATTR_SUBENTRY_LC =
+ "inheritedfromdncollectiveattributesubentry";
+
+
+
+ /**
+ * The name of the "inheritedFromRDNCollectiveAttributeSubentry" objectclass
+ * (which is a special type of objectclass that makes a kind of classic
+ * COS template subentry), formatted in camel case.
+ */
+ public static final String OC_INHERITED_FROM_RDN_COLLECTIVE_ATTR_SUBENTRY =
+ "inheritedFromRDNCollectiveAttributeSubentry";
+
+
+
+ /**
+ * The name of the "inheritedFromRDNCollectiveAttributeSubentry" objectclass
+ * (which is a special type of objectclass that makes a kind of classic
+ * COS template subentry), formatted in all lowercase.
+ */
+ public static final String OC_INHERITED_FROM_RDN_COLLECTIVE_ATTR_SUBENTRY_LC =
+ "inheritedfromrdncollectiveattributesubentry";
+
+
+
+ /**
* The name of the LDAP Password Policy Internet-Draft
* "pwdPolicy" objectclass, formatted in camel case.
*/
--
Gitblit v1.10.0