From 7b0cd002326fc52e5e8886a7074c449eaadc2212 Mon Sep 17 00:00:00 2001
From: matthew_swift <matthew_swift@localhost>
Date: Wed, 16 Dec 2009 22:18:23 +0000
Subject: [PATCH] Move authenticated connection factory to tools package since its rebind functionality is only useful in the perf tools.
---
opendj-sdk/sdk/src/com/sun/opends/sdk/tools/AuthenticatedConnectionFactory.java | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/opendj-sdk/sdk/src/org/opends/sdk/AuthenticatedConnectionFactory.java b/opendj-sdk/sdk/src/com/sun/opends/sdk/tools/AuthenticatedConnectionFactory.java
similarity index 99%
rename from opendj-sdk/sdk/src/org/opends/sdk/AuthenticatedConnectionFactory.java
rename to opendj-sdk/sdk/src/com/sun/opends/sdk/tools/AuthenticatedConnectionFactory.java
index c20ae3c..2971d6b 100644
--- a/opendj-sdk/sdk/src/org/opends/sdk/AuthenticatedConnectionFactory.java
+++ b/opendj-sdk/sdk/src/com/sun/opends/sdk/tools/AuthenticatedConnectionFactory.java
@@ -25,12 +25,13 @@
* Copyright 2009 Sun Microsystems, Inc.
*/
-package org.opends.sdk;
+package com.sun.opends.sdk.tools;
import java.util.Collection;
+import org.opends.sdk.*;
import org.opends.sdk.requests.*;
import org.opends.sdk.responses.BindResult;
import org.opends.sdk.responses.CompareResult;
@@ -66,7 +67,7 @@
* then the connection attempt will fail and an {@code
* ErrorResultException} will be thrown.
*/
-public final class AuthenticatedConnectionFactory
+final class AuthenticatedConnectionFactory
implements
ConnectionFactory<AuthenticatedConnectionFactory.AuthenticatedAsynchronousConnection>
{
--
Gitblit v1.10.0