Interface Request
-
- All Known Subinterfaces:
AbandonRequest,AddRequest,BindRequest,ChangeRequest,CompareRequest,DeleteRequest,ExtendedRequest,ModifyDNRequest,ModifyRequest,SASLBindRequest,SearchRequest,SimpleBindRequest,UnbindRequest,UpdatableAbandonRequest,UpdatableAddRequest,UpdatableBindRequest,UpdatableCompareRequest,UpdatableDeleteRequest,UpdatableExtendedRequest,UpdatableModifyDNRequest,UpdatableModifyRequest,UpdatableRequest,UpdatableSASLBindRequest,UpdatableSearchRequest,UpdatableSimpleBindRequest,UpdatableUnbindRequest
@NotExtensible @ThreadSafety(level=INTERFACE_NOT_THREADSAFE) public interface Request
This interface defines a set of methods which may be used to interact with operation requests.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description OperationTypegetOperationType()Retrieves the operation type for this request.java.util.List<Control>getRequestControls()Retrieves the set of controls included in the request.
-
-
-
Method Detail
-
getRequestControls
java.util.List<Control> getRequestControls()
Retrieves the set of controls included in the request.- Returns:
- The set of controls included in the request.
-
getOperationType
OperationType getOperationType()
Retrieves the operation type for this request.- Returns:
- The operation type for this request.
-
-