Interface UpdatableExtendedRequest
-
- All Superinterfaces:
ExtendedRequest,Request,UpdatableRequest
@NotExtensible @ThreadSafety(level=INTERFACE_NOT_THREADSAFE) public interface UpdatableExtendedRequest extends ExtendedRequest, UpdatableRequest
This interface defines a set of methods which may be used to update an extended request.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidsetRequestOID(java.lang.String oid)Specifies the OID for the extended request.voidsetRequestValue(ASN1OctetString value)Specifies the value for the extended request, if any.-
Methods inherited from interface com.unboundid.directory.sdk.common.operation.ExtendedRequest
getRequestOID, getRequestValue, toLDAPSDKRequest
-
Methods inherited from interface com.unboundid.directory.sdk.common.operation.Request
getOperationType, getRequestControls
-
Methods inherited from interface com.unboundid.directory.sdk.common.operation.UpdatableRequest
addRequestControl, setRequestControls
-
-
-
-
Method Detail
-
setRequestOID
void setRequestOID(java.lang.String oid)
Specifies the OID for the extended request.- Parameters:
oid- The OID for the extended request. It must not benull.
-
setRequestValue
void setRequestValue(ASN1OctetString value)
Specifies the value for the extended request, if any.- Parameters:
value- The value for the extended request. It may benullif there should not be a value.
-
-