mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

matthew_swift
16.18.2009 c4016421c2c25c43463b5c9a2535c3b362ee2e87
Move authenticated connection factory to tools package since its rebind functionality is only useful in the perf tools.
1 files renamed
2 files modified
10 ■■■■■ changed files
sdk/src/com/sun/opends/sdk/tools/AuthenticatedConnectionFactory.java 5 ●●●●● patch | view | raw | blame | history
sdk/src/com/sun/opends/sdk/tools/PerformanceRunner.java 3 ●●●● patch | view | raw | blame | history
sdk/src/com/sun/opends/sdk/tools/Utils.java 2 ●●● patch | view | raw | blame | history
sdk/src/com/sun/opends/sdk/tools/AuthenticatedConnectionFactory.java
File was renamed from sdk/src/org/opends/sdk/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>
{
sdk/src/com/sun/opends/sdk/tools/PerformanceRunner.java
@@ -38,9 +38,10 @@
import java.util.concurrent.atomic.AtomicReference;
import org.opends.sdk.*;
import org.opends.sdk.AuthenticatedConnectionFactory.AuthenticatedAsynchronousConnection;
import org.opends.sdk.responses.Result;
import com.sun.opends.sdk.tools.AuthenticatedConnectionFactory.AuthenticatedAsynchronousConnection;
sdk/src/com/sun/opends/sdk/tools/Utils.java
@@ -37,10 +37,10 @@
import java.util.StringTokenizer;
import org.opends.sdk.*;
import org.opends.sdk.AuthenticatedConnectionFactory.AuthenticatedConnection;
import org.opends.sdk.controls.*;
import org.opends.sdk.responses.BindResult;
import com.sun.opends.sdk.tools.AuthenticatedConnectionFactory.AuthenticatedConnection;
import com.sun.opends.sdk.util.StaticUtils;