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
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    delete(ObjectClass objectClass, Uid uid, OperationOptions options)
    The Connector developer is responsible for calling the native delete methods to remove the object specified by its unique id.
  • Method Details

    • delete

      void delete(ObjectClass objectClass, 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:
      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 the Uid does not exist on the resource.