copy from sdk/examples/org/opends/sdk/examples/package-info.java
copy to sdk/src/org/opends/sdk/requests/UnmodifiableAnonymousSASLBindRequestImpl.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. |
| | | * Unmodifiable anonymous SASL bind request implementation. |
| | | */ |
| | | package org.opends.sdk.examples; |
| | | final class UnmodifiableAnonymousSASLBindRequestImpl extends |
| | | AbstractUnmodifiableSASLBindRequest<AnonymousSASLBindRequest> implements |
| | | AnonymousSASLBindRequest |
| | | { |
| | | UnmodifiableAnonymousSASLBindRequestImpl(AnonymousSASLBindRequest impl) { |
| | | super(impl); |
| | | } |
| | | |
| | | @Override |
| | | public String getTraceString() { |
| | | return impl.getTraceString(); |
| | | } |
| | | |
| | | |
| | | @Override |
| | | public AnonymousSASLBindRequest setTraceString(String traceString) |
| | | throws NullPointerException { |
| | | throw new UnsupportedOperationException(); |
| | | } |
| | | } |