From e1ea3e0d8999105f144d2be98e0286928b8319ed Mon Sep 17 00:00:00 2001
From: neil_a_wilson <neil_a_wilson@localhost>
Date: Tue, 03 Apr 2007 18:52:11 +0000
Subject: [PATCH] Add initial support for a virtual attribute subsystem, and implement a few different kinds of virtual attributes. This commit addresses the following issues:
---
opends/src/server/org/opends/server/util/ServerConstants.java | 15 +++++++++++++++
1 files changed, 15 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 e5c3468..990b2b6 100644
--- a/opends/src/server/org/opends/server/util/ServerConstants.java
+++ b/opends/src/server/org/opends/server/util/ServerConstants.java
@@ -1771,6 +1771,13 @@
/**
+ * The OID for the real attributes only control.
+ */
+ public static final String OID_REAL_ATTRS_ONLY = "2.16.840.1.113730.3.4.17";
+
+
+
+ /**
* The OID for the subtree delete control.
*/
public static final String OID_SUBTREE_DELETE_CONTROL =
@@ -1803,6 +1810,14 @@
+ /**
+ * The OID for the virtual attributes only control.
+ */
+ public static final String OID_VIRTUAL_ATTRS_ONLY =
+ "2.16.840.1.113730.3.4.19";
+
+
+
/**
* The block length in bytes used when generating an HMAC-MD5 digest.
--
Gitblit v1.10.0