From 139c40de1bc595ccd4b8ca952da9e2a37bc8a18e Mon Sep 17 00:00:00 2001
From: dugan <dugan@localhost>
Date: Wed, 05 Nov 2008 13:22:43 +0000
Subject: [PATCH] These fixes add confidentiality/integrity to the SASL GSSAPI and DIGEST-MD5 mechanisms. The issue links:
---
opends/src/server/org/opends/server/authorization/dseecompat/AciLDAPOperationContainer.java | 20 ++++++++++++++++++--
1 files changed, 18 insertions(+), 2 deletions(-)
diff --git a/opends/src/server/org/opends/server/authorization/dseecompat/AciLDAPOperationContainer.java b/opends/src/server/org/opends/server/authorization/dseecompat/AciLDAPOperationContainer.java
index 149ded5..8354477 100644
--- a/opends/src/server/org/opends/server/authorization/dseecompat/AciLDAPOperationContainer.java
+++ b/opends/src/server/org/opends/server/authorization/dseecompat/AciLDAPOperationContainer.java
@@ -28,7 +28,6 @@
package org.opends.server.authorization.dseecompat;
import java.util.List;
-
import org.opends.server.core.*;
import org.opends.server.types.*;
import org.opends.server.workflowelement.localbackend.*;
@@ -62,6 +61,23 @@
super(operation, rights, operation.getEntryToCompare());
}
+
+ /**
+ * Constructor interface for evaluation general purpose Operation, entry and
+ * rights..
+ *
+ * @param operation The operation to use in the evaluation.
+ * @param e The entry for evaluation.
+ * @param authInfo The authentication information to use in the evaluation.
+ * @param rights The rights of the operation.
+ */
+ public AciLDAPOperationContainer(Operation operation, Entry e,
+ AuthenticationInfo authInfo,
+ int rights) {
+ super(operation, e, authInfo, rights);
+ }
+
+
/**
* Constructor interface for evaluation of a control.
*
@@ -126,7 +142,7 @@
* Constructor interface for the modify DN operation.
* @param operation The modify DN operation.
* @param rights The rights of the modify DN operation.
- * @param entry The entry to evalauted for this modify DN.
+ * @param entry The entry to evaluated for this modify DN.
*/
public AciLDAPOperationContainer(LocalBackendModifyDNOperation operation,
int rights,
--
Gitblit v1.10.0