Interface ExtendedRequest
- 
- All Superinterfaces:
- Request
 - All Known Subinterfaces:
- UpdatableExtendedRequest
 
 @NotExtensible @ThreadSafety(level=INTERFACE_NOT_THREADSAFE) public interface ExtendedRequest extends Request This interface defines a set of methods which may be used to interact with an extended request.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetRequestOID()Retrieves the OID for the extended request.ASN1OctetStringgetRequestValue()Retrieves the value for the extended request, if any.ExtendedRequesttoLDAPSDKRequest()Retrieves an LDAP SDK representation of this extended request.- 
Methods inherited from interface com.unboundid.directory.sdk.common.operation.RequestgetOperationType, getRequestControls
 
- 
 
- 
- 
- 
Method Detail- 
getRequestOIDjava.lang.String getRequestOID() Retrieves the OID for the extended request.- Returns:
- The OID for the extended request.
 
 - 
getRequestValueASN1OctetString getRequestValue() Retrieves the value for the extended request, if any.- Returns:
- The value for the extended request, or nullif there is none.
 
 - 
toLDAPSDKRequestExtendedRequest toLDAPSDKRequest() Retrieves an LDAP SDK representation of this extended request.- Returns:
- An LDAP SDK representation of this extended request.
 
 
- 
 
-