From a2b4c2a6b334a1338bf0827cb314ecd547e8dd4c Mon Sep 17 00:00:00 2001
From: neil_a_wilson <neil_a_wilson@localhost>
Date: Fri, 14 Sep 2007 21:10:37 +0000
Subject: [PATCH] Add support for the groupOfEntries group type as defined in draft-findlay-ldap-groupofentries. Entries with the groupOfEntries object class should be treated in a manner that is virtually identical to entries with the groupOfNames object class (technically, groupOfNames does not allow zero-member groups, but the OpenDS implementation does allow this).
---
opends/src/server/org/opends/server/util/ServerConstants.java | 16 ++++++++++++++++
1 files changed, 16 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 704801e..cb9efc5 100644
--- a/opends/src/server/org/opends/server/util/ServerConstants.java
+++ b/opends/src/server/org/opends/server/util/ServerConstants.java
@@ -655,6 +655,22 @@
/**
+ * The name of the standard "groupOfEntries" object class, formatted in
+ * camelCase.
+ */
+ public static final String OC_GROUP_OF_ENTRIES = "groupOfEntries";
+
+
+
+ /**
+ * The name of the standard "groupOfEntries" object class, formatted in all
+ * lowercase characters.
+ */
+ public static final String OC_GROUP_OF_ENTRIES_LC = "groupofentries";
+
+
+
+ /**
* The name of the standard "groupOfNames" object class, formatted in
* camelCase.
*/
--
Gitblit v1.10.0