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

matthew_swift
28.47.2010 f2160f4bd1c8ac67e5a86a6710d431e8932877f9
sdk/src/org/opends/sdk/requests/AbstractBindRequest.java
@@ -29,19 +29,15 @@
import org.opends.sdk.DN;
/**
 * An abstract Bind request which can be used as the basis for
 * implementing new authentication methods.
 *
 * An abstract Bind request which can be used as the basis for implementing new
 * authentication methods.
 *
 * @param <R>
 *          The type of Bind request.
 */
public abstract class AbstractBindRequest<R extends BindRequest>
    extends AbstractRequestImpl<R> implements BindRequest
abstract class AbstractBindRequest<R extends BindRequest> extends
    AbstractRequestImpl<R> implements BindRequest
{
  /**
@@ -57,13 +53,14 @@
  /**
   * {@inheritDoc}
   */
  public abstract DN getName();
  public abstract String getName();
  /**
   * {@inheritDoc}
   */
  @Override
  @SuppressWarnings("unchecked")
  final R getThis()
  {