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

neil_a_wilson
16.22.2006 336f28b5a93b7d3f4116502dcab2327a60f706ca
Fix numerous problems (long lines in doctarget files, unused imports, incorrect
use of {@inheritDoc}) to satisfy checkstyle and javadoc.
3 files modified
28 ■■■■ changed files
opends/src/server/org/opends/server/extensions/InternalConnectionSecurityProvider.java 19 ●●●●● patch | view | raw | blame | history
opends/src/server/org/opends/server/protocols/internal/InternalClientConnection.java 3 ●●●● patch | view | raw | blame | history
opends/src/server/org/opends/server/protocols/internal/InternalConnectionHandler.java 6 ●●●● patch | view | raw | blame | history
opends/src/server/org/opends/server/extensions/InternalConnectionSecurityProvider.java
@@ -28,22 +28,13 @@
import java.io.IOException;
import java.nio.ByteBuffer;
import java.nio.channels.SocketChannel;
import org.opends.server.api.ClientConnection;
import org.opends.server.api.ConnectionSecurityProvider;
import org.opends.server.config.ConfigEntry;
import org.opends.server.config.ConfigException;
import org.opends.server.core.DirectoryException;
import org.opends.server.core.InitializationException;
import org.opends.server.types.DisconnectReason;
import static org.opends.server.loggers.Debug.*;
import static org.opends.server.messages.ExtensionsMessages.*;
import static org.opends.server.messages.MessageHandler.*;
import static org.opends.server.util.StaticUtils.*;
@@ -67,7 +58,7 @@
  /**
   * {@inheritDoc}
   * Creates a new instance of this internal connection security provider.
   */
  public InternalConnectionSecurityProvider()
  {
@@ -79,7 +70,13 @@
  /**
   * {@inheritDoc}
   * Creates a new instance of this internal connection security provider with
   * the provided information.
   *
   * @param  clientConnection  The client connection for this security provider
   *                           instance.
   * @param  socketChannel     The socket channel for this security provider
   *                           instance.
   */
  protected InternalConnectionSecurityProvider(
                 ClientConnection clientConnection, SocketChannel socketChannel)
opends/src/server/org/opends/server/protocols/internal/InternalClientConnection.java
@@ -54,7 +54,8 @@
import org.opends.server.core.ModifyDNOperation;
import org.opends.server.core.Operation;
import org.opends.server.core.SearchOperation;
import org.opends.server.extensions.InternalConnectionSecurityProvider;
import org.opends.server.extensions.
            InternalConnectionSecurityProvider;
import org.opends.server.protocols.asn1.ASN1OctetString;
import org.opends.server.protocols.ldap.LDAPAttribute;
import org.opends.server.protocols.ldap.LDAPFilter;
opends/src/server/org/opends/server/protocols/internal/InternalConnectionHandler.java
@@ -78,9 +78,9 @@
    assert debugConstructor(CLASS_NAME);
    // Since we can't guarantee that the initializeConnectionHandler method will
    // always be called for this method, we'll do the necessary "initialization"
    // here.
    // Since we can't guarantee that the initializeConnectionHandler
    // method will always be called for this method, we'll do the
    // necessary "initialization" here.
    connectionList = new LinkedList<ClientConnection>();
  }