copy from sdk/examples/org/opends/sdk/examples/package-info.java
copy to sdk/src/org/opends/sdk/requests/UnmodifiableAbandonRequestImpl.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 abandon request implementation. |
| | | */ |
| | | package org.opends.sdk.examples; |
| | | final class UnmodifiableAbandonRequestImpl |
| | | extends AbstractUnmodifiableRequest<AbandonRequest> |
| | | implements AbandonRequest |
| | | { |
| | | UnmodifiableAbandonRequestImpl(AbandonRequest request) { |
| | | super(request); |
| | | } |
| | | |
| | | /** |
| | | * {@inheritDoc} |
| | | */ |
| | | public int getRequestID() { |
| | | return impl.getRequestID(); |
| | | } |
| | | |
| | | |
| | | /** |
| | | * {@inheritDoc} |
| | | */ |
| | | public AbandonRequest setRequestID(int id) |
| | | throws UnsupportedOperationException { |
| | | throw new UnsupportedOperationException(); |
| | | } |
| | | } |