use of com.evolveum.midpoint.studio.client.DeleteOptions in project midpoint-studio by Evolveum.
the class DeleteTask method processObjectOid.
@Override
public ProcessObjectResult processObjectOid(ObjectTypes type, String oid) throws Exception {
DeleteOptions opts = new DeleteOptions().raw(raw);
client.delete(type.getClassDefinition(), oid, opts);
return new ProcessObjectResult(null);
}
Aggregations