copy from sdk/examples/org/opends/sdk/examples/package-info.java
copy to sdk/src/org/opends/sdk/requests/AbstractUnmodifiableSASLBindRequest.java
| File was copied from sdk/examples/org/opends/sdk/examples/package-info.java |
| | |
| | | * Copyright 2010 Sun Microsystems, Inc. |
| | | */ |
| | | |
| | | package org.opends.sdk.requests; |
| | | |
| | | /** |
| | | * Examples which use the OpenDS LDAP SDK. |
| | | * An abstract unmodifiable SASL Bind request which can be used as the basis for |
| | | * implementing new unmodifiable SASL authentication methods. |
| | | * |
| | | * @param <R> |
| | | * The type of SASL Bind request. |
| | | */ |
| | | package org.opends.sdk.examples; |
| | | abstract class AbstractUnmodifiableSASLBindRequest |
| | | <R extends SASLBindRequest> extends |
| | | AbstractUnmodifiableBindRequest<R> implements SASLBindRequest |
| | | { |
| | | |
| | | AbstractUnmodifiableSASLBindRequest(R impl) { |
| | | super(impl); |
| | | } |
| | | |
| | | |
| | | @Override |
| | | public String getSASLMechanism() { |
| | | return impl.getSASLMechanism(); |
| | | } |
| | | } |