Interface GetApiOp
-
- All Superinterfaces:
APIOperation
- All Known Subinterfaces:
ConnectorFacade
- All Known Implementing Classes:
AbstractConnectorFacade
,GetImpl
,LocalConnectorFacadeImpl
,RemoteConnectorFacadeImpl
public interface GetApiOp extends APIOperation
Get a particularConnectorObject
based on theUid
.
-
-
Field Summary
-
Fields inherited from interface org.identityconnectors.framework.api.operations.APIOperation
NO_TIMEOUT
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ConnectorObject
getObject(ObjectClass objectClass, Uid uid, OperationOptions options)
Get a particularConnectorObject
based on theUid
.
-
-
-
Method Detail
-
getObject
ConnectorObject getObject(ObjectClass objectClass, Uid uid, OperationOptions options)
Get a particularConnectorObject
based on theUid
.- Parameters:
objectClass
- type of object to get.uid
- the unique id of the object that to get.options
- additional options that impact the way this operation is run. May be null.- Returns:
ConnectorObject
based on theUid
provided ornull
if no such object could be found.
-
-