| | |
| | | import org.opends.server.types.Entry; |
| | | import org.opends.server.types.Operation; |
| | | import org.opends.server.types.SearchResultReference; |
| | | import org.opends.server.types.CanceledOperationException; |
| | | |
| | | |
| | | /** |
| | |
| | | * Executes the workflow element for an operation. |
| | | * |
| | | * @param operation the operation to execute |
| | | * |
| | | * @throws CanceledOperationException if this operation should be |
| | | * cancelled |
| | | */ |
| | | public abstract void execute(Operation operation); |
| | | public abstract void execute(Operation operation) |
| | | throws CanceledOperationException; |
| | | |
| | | |
| | | /** |