Uses of Interface
org.activiti.engine.impl.interceptor.Command
-
Packages that use Command Package Description org.activiti.engine Public API of the Activiti engine.
Typical usage of the API starts by the creation of aProcessEngineConfiguration(typically based on a configuration file), from which aProcessEnginecan be obtained.
Through the services obtained from such aProcessEngine, BPM and workflow operation can be executed:
RepositoryService: ManagesDeployments
RuntimeService: For starting and searchingProcessInstances
TaskService: Exposes operations to manage human (standalone)Tasks, such as claiming, completing and assigning tasks
org.activiti.engine.IdentityService: Used for managingorg.activiti.engine.identity.Users,org.activiti.engine.identity.Groups and the relations between them
ManagementService: Exposes engine admin and maintenance operations, which have no relation to the runtime exection of business processes
HistoryService: Exposes information about ongoing and past process instances.
org.activiti.engine.FormService: Access to form data and rendered forms for starting new process instances and completing tasks.org.activiti.engine.impl API implementation classes, which shouldn't directly be used by end-users.org.activiti.engine.impl.asyncexecutor org.activiti.engine.impl.cfg org.activiti.engine.impl.cfg.multitenant org.activiti.engine.impl.cmd org.activiti.engine.impl.cmd.integration org.activiti.engine.impl.interceptor org.activiti.engine.impl.jobexecutor org.activiti.engine.test.profiler -
-
Uses of Command in org.activiti.engine
Methods in org.activiti.engine with parameters of type Command Modifier and Type Method Description <T> TManagementService. executeCommand(Command<T> command)Executes a given command with the defaultCommandConfig.<T> TManagementService. executeCommand(CommandConfig config, Command<T> command)Executes a given command with the specifiedCommandConfig. -
Uses of Command in org.activiti.engine.impl
Methods in org.activiti.engine.impl with parameters of type Command Modifier and Type Method Description <T> TManagementServiceImpl. executeCommand(Command<T> command)<T> TManagementServiceImpl. executeCommand(CommandConfig config, Command<T> command) -
Uses of Command in org.activiti.engine.impl.asyncexecutor
Classes in org.activiti.engine.impl.asyncexecutor that implement Command Modifier and Type Class Description classFindExpiredJobsCmdclassResetExpiredJobsCmd -
Uses of Command in org.activiti.engine.impl.cfg
Methods in org.activiti.engine.impl.cfg with parameters of type Command Modifier and Type Method Description <T> TCommandExecutorImpl. execute(Command<T> command)<T> TCommandExecutorImpl. execute(CommandConfig config, Command<T> command) -
Uses of Command in org.activiti.engine.impl.cfg.multitenant
Classes in org.activiti.engine.impl.cfg.multitenant that implement Command Modifier and Type Class Description classExecuteSchemaOperationCommandDeprecated.multi-tenant code will be removed in future version of Activiti and Activiti Cloud -
Uses of Command in org.activiti.engine.impl.cmd
-
Uses of Command in org.activiti.engine.impl.cmd.integration
Classes in org.activiti.engine.impl.cmd.integration that implement Command Modifier and Type Class Description classDeleteIntegrationContextCmdclassRetrieveIntegrationContextsCmd -
Uses of Command in org.activiti.engine.impl.interceptor
Fields in org.activiti.engine.impl.interceptor declared as Command Modifier and Type Field Description protected Command<?>CommandContext. commandMethods in org.activiti.engine.impl.interceptor that return Command Modifier and Type Method Description Command<?>CommandContext. getCommand()Methods in org.activiti.engine.impl.interceptor with parameters of type Command Modifier and Type Method Description CommandContextCommandContextFactory. createCommandContext(Command<?> cmd)<T> TCommandContextInterceptor. execute(CommandConfig config, Command<T> command)<T> TCommandExecutor. execute(Command<T> command)Execute a command with the defaultCommandConfig.<T> TCommandExecutor. execute(CommandConfig config, Command<T> command)Execute a command with the specifiedCommandConfig.<T> TCommandInterceptor. execute(CommandConfig config, Command<T> command)<T> TCommandInvoker. execute(CommandConfig config, Command<T> command)<T> TJtaRetryInterceptor. execute(CommandConfig config, Command<T> command)<T> TJtaTransactionInterceptor. execute(CommandConfig config, Command<T> command)<T> TLogInterceptor. execute(CommandConfig config, Command<T> command)<T> TRetryInterceptor. execute(CommandConfig config, Command<T> command)<T> TTransactionContextInterceptor. execute(CommandConfig config, Command<T> command)Constructors in org.activiti.engine.impl.interceptor with parameters of type Command Constructor Description CommandContext(Command<?> command, ProcessEngineConfigurationImpl processEngineConfiguration) -
Uses of Command in org.activiti.engine.impl.jobexecutor
Methods in org.activiti.engine.impl.jobexecutor that return Command Modifier and Type Method Description Command<java.lang.Object>DefaultFailedJobCommandFactory. getCommand(java.lang.String jobId, java.lang.Throwable exception)Command<java.lang.Object>FailedJobCommandFactory. getCommand(java.lang.String jobId, java.lang.Throwable exception) -
Uses of Command in org.activiti.engine.test.profiler
Methods in org.activiti.engine.test.profiler with parameters of type Command Modifier and Type Method Description <T> TTotalExecutionTimeCommandInterceptor. execute(CommandConfig config, Command<T> command)
-