From 1a44dbda59f95c7170bbd9e2693a3ec1ff347cb8 Mon Sep 17 00:00:00 2001
From: neil_a_wilson <neil_a_wilson@localhost>
Date: Fri, 31 Aug 2007 22:49:33 +0000
Subject: [PATCH] Create configuration definitions for "generic" objects in the server configuration. This also includes allocating object classes for each of these types. This will help make it easier for users to create new instances of these kinds of configuration objects because they will not need to know the fully-qualified name of the Java class that implements the associated logic.
---
opendj-sdk/opends/src/server/org/opends/server/extensions/GetConnectionIDExtendedOperation.java | 10 ++++++----
1 files changed, 6 insertions(+), 4 deletions(-)
diff --git a/opendj-sdk/opends/src/server/org/opends/server/extensions/GetConnectionIDExtendedOperation.java b/opendj-sdk/opends/src/server/org/opends/server/extensions/GetConnectionIDExtendedOperation.java
index b64108c..b2821b3 100644
--- a/opendj-sdk/opends/src/server/org/opends/server/extensions/GetConnectionIDExtendedOperation.java
+++ b/opendj-sdk/opends/src/server/org/opends/server/extensions/GetConnectionIDExtendedOperation.java
@@ -28,7 +28,8 @@
-import org.opends.server.admin.std.server.ExtendedOperationHandlerCfg;
+import org.opends.server.admin.std.server.
+ GetConnectionIdExtendedOperationHandlerCfg;
import org.opends.server.api.ExtendedOperationHandler;
import org.opends.server.config.ConfigException;
import org.opends.server.core.DirectoryServer;
@@ -48,7 +49,8 @@
* used to get the connection ID of the associated client connection.
*/
public class GetConnectionIDExtendedOperation
- extends ExtendedOperationHandler<ExtendedOperationHandlerCfg>
+ extends ExtendedOperationHandler<
+ GetConnectionIdExtendedOperationHandlerCfg>
{
/**
* Create an instance of this "Get Connection ID" extended operation. All
@@ -66,8 +68,8 @@
* {@inheritDoc}
*/
public void initializeExtendedOperationHandler(
- ExtendedOperationHandlerCfg config)
- throws ConfigException, InitializationException
+ GetConnectionIdExtendedOperationHandlerCfg config)
+ throws ConfigException, InitializationException
{
// No special configuration is required.
--
Gitblit v1.10.0