| | |
| | | import java.util.Collection; |
| | | import java.util.TreeMap; |
| | | |
| | | import org.opends.server.types.DN; |
| | | import org.opends.server.types.DirectoryException; |
| | | import org.opends.server.types.Operation; |
| | | import org.opends.server.types.ResultCode; |
| | | import org.opends.server.types.*; |
| | | import org.opends.server.workflowelement.WorkflowElement; |
| | | |
| | | |
| | |
| | | * operation. |
| | | * |
| | | * @param operation the operation to execute |
| | | * |
| | | * @throws CanceledOperationException if this operation should |
| | | * be cancelled. |
| | | */ |
| | | public void execute( |
| | | Operation operation |
| | | ) |
| | | { |
| | | public void execute(Operation operation) throws CanceledOperationException { |
| | | rootWorkflowElement.execute(operation); |
| | | } |
| | | |