Interface DeleteOp
- All Superinterfaces:
SPIOperation
Operation interface to delete objects from the target resource. The
Uid
must be provided.- Since:
- 1.0
-
Method Summary
Modifier and TypeMethodDescriptionvoid
delete
(ObjectClass objectClass, Uid uid, OperationOptions options) TheConnector
developer is responsible for calling the native delete methods to remove the object specified by its unique id.
-
Method Details
-
delete
TheConnector
developer is responsible for calling the native delete methods to remove the object specified by its unique id.- Parameters:
objectClass
- type of object to delete.uid
- The unique id that specifies the object to delete.options
- additional options that impact the way this operation is run. If the caller passes null, the framework will convert this into an empty set of options, so SPI need not worry about this ever being null.- Throws:
UnknownUidException
- if theUid
does not exist on the resource.
-