Class GenerateValueExecutor
java.lang.Object
com.evolveum.midpoint.model.impl.scripting.actions.BaseActionExecutor
com.evolveum.midpoint.model.impl.scripting.actions.GenerateValueExecutor
- All Implemented Interfaces:
- ActionExecutor
Executes "generate-value" action.
- 
Nested Class SummaryNested classes/interfaces inherited from class com.evolveum.midpoint.model.impl.scripting.actions.BaseActionExecutorBaseActionExecutor.ItemProcessor
- 
Field SummaryFields inherited from class com.evolveum.midpoint.model.impl.scripting.actions.BaseActionExecutoractionExecutorRegistry, bulkActionsExecutor, cacheRepositoryService, expressionFactory, expressionHelper, matchingRuleRegistry, midpointFunctions, modelService, operationsHelper, prismContext, provisioningService, relationRegistry, schemaService, securityContextManager, securityEnforcer, taskService
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionexecute(ActionExpressionType action, PipelineData input, ExecutionContext context, OperationResult globalResult) Executes given action command.@NotNull BulkActionReturns the type of action supported by this executor.voidinit()Methods inherited from class com.evolveum.midpoint.model.impl.scripting.actions.BaseActionExecutorcheckExecutionAllowed, exceptionSuffixMethods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface com.evolveum.midpoint.model.impl.scripting.ActionExecutorexecute
- 
Constructor Details- 
GenerateValueExecutorpublic GenerateValueExecutor()
 
- 
- 
Method Details- 
init@PostConstruct public void init()
- 
getActionTypeDescription copied from interface:ActionExecutorReturns the type of action supported by this executor.
- 
executepublic PipelineData execute(ActionExpressionType action, PipelineData input, ExecutionContext context, OperationResult globalResult) throws SchemaException, ObjectNotFoundException, ObjectAlreadyExistsException, SecurityViolationException, PolicyViolationException, CommunicationException, ConfigurationException, ExpressionEvaluationException Description copied from interface:ActionExecutorExecutes 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
 
 
-