org.identityconnectors.framework.spi.operations
Interface DeleteOp
- All Superinterfaces:
- SPIOperation
public interface DeleteOp
- extends SPIOperation
Operation interface to delete objects from the target resource. The
Uid
must be provided.
- Since:
- 1.0
- Author:
- Will Droste
delete
void delete(ObjectClass objClass,
Uid uid,
OperationOptions options)
- The
Connector
developer is responsible for calling the native
delete methods to remove the object specified by its unique id.
- Parameters:
objClass
- 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
- iff the Uid
does not exist on the resource.
Copyright © 2012. All Rights Reserved.