Interface DeleteOp
-
- All Superinterfaces:
SPIOperation
public interface DeleteOp extends SPIOperation
Operation interface to delete objects from the target resource. TheUid
must be provided.- Since:
- 1.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
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 Detail
-
delete
void 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.- 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.
-
-