Class DiscoverConnectorsExecutor
java.lang.Object
com.evolveum.midpoint.model.impl.scripting.actions.BaseActionExecutor
com.evolveum.midpoint.model.impl.scripting.actions.DiscoverConnectorsExecutor
- All Implemented Interfaces:
ActionExecutor
Executes "discover-connectors" action.
There is no static (typed) definition of this action yet.
Also, this code is not refactored yet.
-
Nested Class Summary
Nested classes/interfaces inherited from class com.evolveum.midpoint.model.impl.scripting.actions.BaseActionExecutor
BaseActionExecutor.ConsoleFailureMessageWriter, BaseActionExecutor.ItemProcessor
-
Field Summary
Fields inherited from class com.evolveum.midpoint.model.impl.scripting.actions.BaseActionExecutor
actionExecutorRegistry, bulkActionsExecutor, cacheRepositoryService, expressionFactory, expressionHelper, matchingRuleRegistry, midpointFunctions, modelService, operationsHelper, prismContext, provisioningService, relationRegistry, schemaService, securityContextManager, securityEnforcer, taskService
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionexecute
(ActionExpressionType action, PipelineData input, ExecutionContext context, OperationResult globalResult) Executes given action command.@NotNull BulkAction
Returns the type of action supported by this executor.void
init()
Methods inherited from class com.evolveum.midpoint.model.impl.scripting.actions.BaseActionExecutor
checkExecutionAllowed, exceptionSuffix
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface com.evolveum.midpoint.model.impl.scripting.ActionExecutor
execute
-
Constructor Details
-
DiscoverConnectorsExecutor
public DiscoverConnectorsExecutor()
-
-
Method Details
-
init
@PostConstruct public void init() -
getActionType
Description copied from interface:ActionExecutor
Returns the type of action supported by this executor. -
execute
public PipelineData execute(ActionExpressionType action, PipelineData input, ExecutionContext context, OperationResult globalResult) throws SchemaException, ObjectNotFoundException, ObjectAlreadyExistsException, SecurityViolationException, PolicyViolationException, CommunicationException, ConfigurationException, ExpressionEvaluationException Description copied from interface:ActionExecutor
Executes given action command.- Parameters:
action
- Command to be executed. Its parameters can be defined statically (using "new" specific subclasses in the schema) or dynamically (using "old fashioned" dynamic name-value parameters) or in a mixed style, where dynamic definitions take precedence.input
- Input data (pipeline) that the action has to be executed on.context
- Overall execution context.globalResult
- Global operation result. This is the parent result that receives subresults related to actions executions. (But individual results are stored also into the pipeline, to indicate success/failure of individual pipeline items processing.)- Throws:
SchemaException
ObjectNotFoundException
ObjectAlreadyExistsException
SecurityViolationException
PolicyViolationException
CommunicationException
ConfigurationException
ExpressionEvaluationException
-