From 44aad3f84d2a820094f3b5e73722778edc8c23f5 Mon Sep 17 00:00:00 2001
From: neil_a_wilson <neil_a_wilson@localhost>
Date: Tue, 24 Apr 2007 22:40:57 +0000
Subject: [PATCH] Make several significant changes to the OpenDS code base, including:
---
opends/src/server/org/opends/server/api/AccessControlProvider.java | 19 +++++++++++++------
1 files changed, 13 insertions(+), 6 deletions(-)
diff --git a/opends/src/server/org/opends/server/api/AccessControlProvider.java b/opends/src/server/org/opends/server/api/AccessControlProvider.java
index bc219dd..f3573ba 100644
--- a/opends/src/server/org/opends/server/api/AccessControlProvider.java
+++ b/opends/src/server/org/opends/server/api/AccessControlProvider.java
@@ -26,10 +26,14 @@
*/
package org.opends.server.api;
+
+
import org.opends.server.admin.std.server.AccessControlHandlerCfg;
import org.opends.server.config.ConfigException;
import org.opends.server.types.InitializationException;
+
+
/**
* This class defines an interface for managing the life-cycle of an
* access control handler. The access control handler configuration
@@ -40,8 +44,8 @@
* this connection handler implementation.
*/
public interface AccessControlProvider
- <T extends AccessControlHandlerCfg> {
-
+ <T extends AccessControlHandlerCfg>
+{
/**
* Initializes the access control handler implementation based on
* the information in the provided configuration entry.
@@ -56,8 +60,10 @@
* If a problem occurs during initialization that is not
* related to the server configuration.
*/
- void initializeAccessControlHandler(T configuration)
- throws ConfigException, InitializationException;
+ public void initializeAccessControlHandler(T configuration)
+ throws ConfigException, InitializationException;
+
+
/**
* Performs any necessary finalization for the access control
@@ -65,7 +71,9 @@
* handler has been deregistered with the server but before it has
* been unloaded.
*/
- void finalizeAccessControlHandler();
+ public void finalizeAccessControlHandler();
+
+
/**
* Get the access control handler responsible for making access
@@ -75,6 +83,5 @@
* @return Returns the access control handler.
*/
AccessControlHandler getInstance();
-
}
--
Gitblit v1.10.0