| | |
| | | * CDDL HEADER END |
| | | * |
| | | * |
| | | * Copyright 2009 Sun Microsystems, Inc. |
| | | * Copyright 2010 Sun Microsystems, Inc. |
| | | */ |
| | | |
| | | package org.opends.sdk.requests; |
| | |
| | | |
| | | |
| | | /** |
| | | * Creates a new extended request that is an exact copy of the provided |
| | | * request. |
| | | * |
| | | * @param extendedRequest |
| | | * The extended request to be copied. |
| | | * @throws NullPointerException |
| | | * If {@code extendedRequest} was {@code null} . |
| | | */ |
| | | protected AbstractExtendedRequest(ExtendedRequest extendedRequest) |
| | | throws NullPointerException |
| | | { |
| | | super(extendedRequest); |
| | | } |
| | | |
| | | |
| | | |
| | | /** |
| | | * {@inheritDoc} |
| | | */ |
| | | public abstract String getOID(); |