Class OperationRequest
- java.lang.Object
-
- org.identityconnectors.framework.impl.api.remote.messages.OperationRequest
-
- All Implemented Interfaces:
Message
public class OperationRequest extends Object implements Message
Sent to request an operation. Response will consist of one-or-moreOperationResponsePart
's followed by anOperationResponseEnd
.
-
-
Constructor Summary
Constructors Constructor Description OperationRequest(ConnectorKey key, String connectorFacadeKey, Class<? extends APIOperation> operation, String operationMethodName, List<Object> arguments)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<Object>
getArguments()
String
getConnectorFacadeKey()
ConnectorKey
getConnectorKey()
Class<? extends APIOperation>
getOperation()
String
getOperationMethodName()
-
-
-
Constructor Detail
-
OperationRequest
public OperationRequest(ConnectorKey key, String connectorFacadeKey, Class<? extends APIOperation> operation, String operationMethodName, List<Object> arguments)
-
-
Method Detail
-
getConnectorKey
public ConnectorKey getConnectorKey()
-
getConnectorFacadeKey
public String getConnectorFacadeKey()
-
getOperation
public Class<? extends APIOperation> getOperation()
-
getOperationMethodName
public String getOperationMethodName()
-
-