Uses of Class
org.activiti.engine.impl.interceptor.CommandConfig
-
Packages that use CommandConfig 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.cfg org.activiti.engine.impl.db org.activiti.engine.impl.interceptor org.activiti.engine.test.profiler -
-
Uses of CommandConfig in org.activiti.engine
Methods in org.activiti.engine with parameters of type CommandConfig Modifier and Type Method Description <T> TManagementService. executeCommand(CommandConfig config, Command<T> command)Executes a given command with the specifiedCommandConfig. -
Uses of CommandConfig in org.activiti.engine.impl
Methods in org.activiti.engine.impl with parameters of type CommandConfig Modifier and Type Method Description <T> TManagementServiceImpl. executeCommand(CommandConfig config, Command<T> command) -
Uses of CommandConfig in org.activiti.engine.impl.cfg
Fields in org.activiti.engine.impl.cfg declared as CommandConfig Modifier and Type Field Description protected CommandConfigProcessEngineConfigurationImpl. defaultCommandConfigprotected CommandConfigCommandExecutorImpl. defaultConfigprotected CommandConfigProcessEngineConfigurationImpl. schemaCommandConfigMethods in org.activiti.engine.impl.cfg that return CommandConfig Modifier and Type Method Description CommandConfigProcessEngineConfigurationImpl. getDefaultCommandConfig()CommandConfigCommandExecutorImpl. getDefaultConfig()CommandConfigProcessEngineConfigurationImpl. getSchemaCommandConfig()Methods in org.activiti.engine.impl.cfg with parameters of type CommandConfig Modifier and Type Method Description <T> TCommandExecutorImpl. execute(CommandConfig config, Command<T> command)voidProcessEngineConfigurationImpl. setDefaultCommandConfig(CommandConfig defaultCommandConfig)voidProcessEngineConfigurationImpl. setSchemaCommandConfig(CommandConfig schemaCommandConfig)Constructors in org.activiti.engine.impl.cfg with parameters of type CommandConfig Constructor Description CommandExecutorImpl(CommandConfig defaultConfig, CommandInterceptor first) -
Uses of CommandConfig in org.activiti.engine.impl.db
Fields in org.activiti.engine.impl.db declared as CommandConfig Modifier and Type Field Description protected CommandConfigDbIdGenerator. commandConfigMethods in org.activiti.engine.impl.db that return CommandConfig Modifier and Type Method Description CommandConfigDbIdGenerator. getCommandConfig()Methods in org.activiti.engine.impl.db with parameters of type CommandConfig Modifier and Type Method Description voidDbIdGenerator. setCommandConfig(CommandConfig commandConfig) -
Uses of CommandConfig in org.activiti.engine.impl.interceptor
Methods in org.activiti.engine.impl.interceptor that return CommandConfig Modifier and Type Method Description CommandConfigCommandExecutor. getDefaultConfig()CommandConfigCommandConfig. setContextReusePossible(boolean contextReusePossible)CommandConfigCommandConfig. transactionNotSupported()CommandConfigCommandConfig. transactionRequired()CommandConfigCommandConfig. transactionRequiresNew()Methods in org.activiti.engine.impl.interceptor with parameters of type CommandConfig Modifier and Type Method Description <T> TCommandContextInterceptor. execute(CommandConfig config, Command<T> command)<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 CommandConfig Constructor Description CommandConfig(CommandConfig commandConfig) -
Uses of CommandConfig in org.activiti.engine.test.profiler
Methods in org.activiti.engine.test.profiler with parameters of type CommandConfig Modifier and Type Method Description <T> TTotalExecutionTimeCommandInterceptor. execute(CommandConfig config, Command<T> command)
-