From c0b4060d4467969abf721756f1907653519b62b3 Mon Sep 17 00:00:00 2001
From: neil_a_wilson <neil_a_wilson@localhost>
Date: Tue, 20 Mar 2007 23:09:54 +0000
Subject: [PATCH] Add support for dynamic groups, which use the groupOfURLs object class and the memberURL attribute type to specify one or more LDAP URLs containing criteria for membership.
---
opends/src/server/org/opends/server/util/ServerConstants.java | 34 +++++++++++++++++++++++++++++++++-
1 files changed, 33 insertions(+), 1 deletions(-)
diff --git a/opends/src/server/org/opends/server/util/ServerConstants.java b/opends/src/server/org/opends/server/util/ServerConstants.java
index 4ccf23d..e5c3468 100644
--- a/opends/src/server/org/opends/server/util/ServerConstants.java
+++ b/opends/src/server/org/opends/server/util/ServerConstants.java
@@ -195,7 +195,7 @@
/**
- * The name of the standard "member" attribute type, formatted in all '
+ * The name of the standard "member" attribute type, formatted in all
* lowercase characters.
*/
public static final String ATTR_MEMBER = "member";
@@ -203,6 +203,22 @@
/**
+ * The name of the standard "memberURL" attribute type, formatted in camel
+ * case.
+ */
+ public static final String ATTR_MEMBER_URL = "memberURL";
+
+
+
+ /**
+ * The name of the standard "memberURL" attribute type, formatted in all
+ * lowercase characters.
+ */
+ public static final String ATTR_MEMBER_URL_LC = "memberurl";
+
+
+
+ /**
* The name of the monitor attribute that is used to hold a backend ID.
*/
public static final String ATTR_MONITOR_BACKEND_ID = "ds-backend-id";
@@ -632,6 +648,22 @@
/**
+ * The name of the standard "groupOfURLs" object class, formatted in camel
+ * case.
+ */
+ public static final String OC_GROUP_OF_URLS = "groupOfURLs";
+
+
+
+ /**
+ * The name of the standard "groupOfURLs" object class, formatted in all
+ * lowercase characters.
+ */
+ public static final String OC_GROUP_OF_URLS_LC = "groupofurls";
+
+
+
+ /**
* The request OID for the cancel extended operation.
*/
public static final String OID_CANCEL_REQUEST = "1.3.6.1.1.8";
--
Gitblit v1.10.0