From 4a4a8540f0b64feff6934c3215c6f896c9561c7d Mon Sep 17 00:00:00 2001
From: neil_a_wilson <neil_a_wilson@localhost>
Date: Thu, 08 Feb 2007 22:27:58 +0000
Subject: [PATCH] Update the AuthenticationInfo object to store the entries for the authentication and authorization identities rather than just their DNs.  This includes a mechanism to keep those entries up to date as changes occur in the server, and also includes a hook for ClientConnection subclasses to perform processing whenever a connection is terminated.

---
 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 b915876..2f13a5a 100644
--- a/opends/src/server/org/opends/server/util/ServerConstants.java
+++ b/opends/src/server/org/opends/server/util/ServerConstants.java
@@ -338,6 +338,14 @@
 
 
   /**
+   * The name of the standard attribute that is used to hold surnames, formatted
+   * in all lowercase.
+   */
+  public static final String ATTR_SN = "sn";
+
+
+
+  /**
    * The name of the standard attribute that is used to specify the location
    * for the Directory Server schema, formatted in camel case.
    */
@@ -719,6 +727,13 @@
 
 
   /**
+   * The name of the person objectclass, formatted in all lowercase characters.
+   */
+  public static final String OC_PERSON = "person";
+
+
+
+  /**
    * The name of the standard objectclass that is used to indicate that an entry
    * is a smart referral, formatted in all lowercase.
    */

--
Gitblit v1.10.0