Uses of Class
org.apache.syncope.common.lib.to.ExecTO
-
-
Uses of ExecTO in org.apache.syncope.client.console.reports
Method parameters in org.apache.syncope.client.console.reports with type arguments of type ExecTO Modifier and Type Method Description protected void
ReportExecutionDetails.ReportExecutionDirectoryPanel. addFurtherActions(ActionsPanel<ExecTO> panel, IModel<ExecTO> model)
protected void
ReportExecutionDetails.ReportExecutionDirectoryPanel. addFurtherActions(ActionsPanel<ExecTO> panel, IModel<ExecTO> model)
-
Uses of ExecTO in org.apache.syncope.client.console.rest
Methods in org.apache.syncope.client.console.rest that return types with arguments of type ExecTO Modifier and Type Method Description List<ExecTO>
ExecutionRestClient. listExecutions(String taskKey, int page, int size, SortParam<String> sort)
List<ExecTO>
ReportRestClient. listExecutions(String taskKey, int page, int size, SortParam<String> sort)
List<ExecTO>
TaskRestClient. listExecutions(String taskKey, int page, int size, SortParam<String> sort)
List<ExecTO>
ExecutionRestClient. listRecentExecutions(int max)
List<ExecTO>
ReportRestClient. listRecentExecutions(int max)
List<ExecTO>
TaskRestClient. listRecentExecutions(int max)
-
Uses of ExecTO in org.apache.syncope.client.console.tasks
Methods in org.apache.syncope.client.console.tasks that return types with arguments of type ExecTO Modifier and Type Method Description ActionsPanel<ExecTO>
ExecutionsDirectoryPanel. getActions(IModel<ExecTO> model)
protected List<IColumn<ExecTO,String>>
ExecutionsDirectoryPanel. getColumns()
Iterator<ExecTO>
ExecutionsDirectoryPanel.ExecProvider. iterator(long first, long count)
IModel<ExecTO>
ExecutionsDirectoryPanel.ExecProvider. model(ExecTO taskExecution)
Methods in org.apache.syncope.client.console.tasks with parameters of type ExecTO Modifier and Type Method Description IModel<ExecTO>
ExecutionsDirectoryPanel.ExecProvider. model(ExecTO taskExecution)
Method parameters in org.apache.syncope.client.console.tasks with type arguments of type ExecTO Modifier and Type Method Description protected void
ExecutionsDirectoryPanel. addFurtherActions(ActionsPanel<ExecTO> panel, IModel<ExecTO> model)
protected void
ExecutionsDirectoryPanel. addFurtherActions(ActionsPanel<ExecTO> panel, IModel<ExecTO> model)
ActionsPanel<ExecTO>
ExecutionsDirectoryPanel. getActions(IModel<ExecTO> model)
protected void
ExecutionsDirectoryPanel. resultTableCustomChanges(AjaxDataTablePanel.Builder<ExecTO,String> resultTableBuilder)
-
Uses of ExecTO in org.apache.syncope.client.console.widgets
Fields in org.apache.syncope.client.console.widgets with type parameters of type ExecTO Modifier and Type Field Description protected List<ExecTO>
JobWidget. recent
Methods in org.apache.syncope.client.console.widgets that return types with arguments of type ExecTO Modifier and Type Method Description protected List<ExecTO>
JobWidget. getUpdatedRecent()
-
Uses of ExecTO in org.apache.syncope.common.lib.to
Methods in org.apache.syncope.common.lib.to that return types with arguments of type ExecTO Modifier and Type Method Description List<ExecTO>
ReportTO. getExecutions()
List<ExecTO>
TaskTO. getExecutions()
-
Uses of ExecTO in org.apache.syncope.common.rest.api.service
Methods in org.apache.syncope.common.rest.api.service that return ExecTO Modifier and Type Method Description ExecTO
ExecutableService. execute(ExecSpecs specs)
Executes the executable matching the given specs.ExecTO
TaskService. execute(ExecSpecs specs, SyncopeForm macroTaskForm)
Executes the macro task matching the given specs, with the provided form as input.ExecTO
GroupService. provisionMembers(@NotNull String key, @NotNull ProvisionAction action)
(De)provision all members of the given group from / onto all the resources associated to it.Methods in org.apache.syncope.common.rest.api.service that return types with arguments of type ExecTO Modifier and Type Method Description PagedResult<ExecTO>
ExecutableService. listExecutions(ExecQuery query)
Returns a paged list of executions matching the given query.List<ExecTO>
ExecutableService. listRecentExecutions(@javax.validation.constraints.Min(1L) int max)
Returns the list of recently completed executions, ordered by end date descendent. -
Uses of ExecTO in org.apache.syncope.core.logic
Methods in org.apache.syncope.core.logic that return ExecTO Modifier and Type Method Description abstract ExecTO
AbstractExecutableLogic. deleteExecution(String executionKey)
ExecTO
ReportLogic. deleteExecution(String executionKey)
ExecTO
TaskLogic. deleteExecution(String execKey)
protected ExecTO
TaskLogic. doExecute(Task<?> task, OffsetDateTime startAt, Map<String,Object> additionalDataMap)
abstract ExecTO
AbstractExecutableLogic. execute(ExecSpecs specs)
ExecTO
ReportLogic. execute(ExecSpecs specs)
ExecTO
TaskLogic. execute(ExecSpecs specs)
ExecTO
TaskLogic. execute(ExecSpecs specs, SyncopeForm macroTaskForm)
ExecTO
GroupLogic. provisionMembers(String key, ProvisionAction action)
Methods in org.apache.syncope.core.logic that return types with arguments of type ExecTO Modifier and Type Method Description abstract Pair<Integer,List<ExecTO>>
AbstractExecutableLogic. listExecutions(String key, OffsetDateTime before, OffsetDateTime after, int page, int size, List<OrderByClause> orderByClauses)
Pair<Integer,List<ExecTO>>
ReportLogic. listExecutions(String key, OffsetDateTime before, OffsetDateTime after, int page, int size, List<OrderByClause> orderByClauses)
Pair<Integer,List<ExecTO>>
TaskLogic. listExecutions(String key, OffsetDateTime before, OffsetDateTime after, int page, int size, List<OrderByClause> orderByClauses)
abstract List<ExecTO>
AbstractExecutableLogic. listRecentExecutions(int max)
List<ExecTO>
ReportLogic. listRecentExecutions(int max)
List<ExecTO>
TaskLogic. listRecentExecutions(int max)
-
Uses of ExecTO in org.apache.syncope.core.provisioning.api.data
Methods in org.apache.syncope.core.provisioning.api.data that return ExecTO Modifier and Type Method Description ExecTO
ReportDataBinder. getExecTO(ReportExec execution)
ExecTO
TaskDataBinder. getExecTO(TaskExec<?> execution)
-
Uses of ExecTO in org.apache.syncope.core.provisioning.java.data
Methods in org.apache.syncope.core.provisioning.java.data that return ExecTO Modifier and Type Method Description ExecTO
ReportDataBinderImpl. getExecTO(ReportExec execution)
ExecTO
TaskDataBinderImpl. getExecTO(TaskExec<?> execution)
-
Uses of ExecTO in org.apache.syncope.core.rest.cxf.service
Methods in org.apache.syncope.core.rest.cxf.service that return ExecTO Modifier and Type Method Description ExecTO
AbstractExecutableService. execute(ExecSpecs execSpecs)
ExecTO
TaskServiceImpl. execute(ExecSpecs specs, SyncopeForm macroTaskForm)
ExecTO
GroupServiceImpl. provisionMembers(String key, ProvisionAction action)
Methods in org.apache.syncope.core.rest.cxf.service that return types with arguments of type ExecTO Modifier and Type Method Description PagedResult<ExecTO>
AbstractExecutableService. listExecutions(ExecQuery query)
List<ExecTO>
AbstractExecutableService. listRecentExecutions(int max)
-