Uses of Interface
org.activiti.engine.repository.Model
-
Packages that use Model 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.cmd org.activiti.engine.impl.persistence.entity org.activiti.engine.impl.persistence.entity.data org.activiti.engine.impl.persistence.entity.data.impl -
-
Uses of Model in org.activiti.engine
Methods in org.activiti.engine that return Model Modifier and Type Method Description ModelRepositoryService. getModel(java.lang.String modelId)Returns theModelModelRepositoryService. newModel()Creates a new model.Methods in org.activiti.engine with parameters of type Model Modifier and Type Method Description voidRepositoryService. saveModel(Model model)Saves the model. -
Uses of Model in org.activiti.engine.impl
Methods in org.activiti.engine.impl that return Model Modifier and Type Method Description ModelRepositoryServiceImpl. getModel(java.lang.String modelId)ModelRepositoryServiceImpl. newModel()Methods in org.activiti.engine.impl that return types with arguments of type Model Modifier and Type Method Description java.util.List<Model>ModelQueryImpl. executeList(CommandContext commandContext, Page page)java.util.List<Model>NativeModelQueryImpl. executeList(CommandContext commandContext, java.util.Map<java.lang.String,java.lang.Object> parameterMap, int firstResult, int maxResults)Methods in org.activiti.engine.impl with parameters of type Model Modifier and Type Method Description voidRepositoryServiceImpl. saveModel(Model model) -
Uses of Model in org.activiti.engine.impl.cmd
Methods in org.activiti.engine.impl.cmd that return Model Modifier and Type Method Description ModelCreateModelCmd. execute(CommandContext commandContext) -
Uses of Model in org.activiti.engine.impl.persistence.entity
Subinterfaces of Model in org.activiti.engine.impl.persistence.entity Modifier and Type Interface Description interfaceModelEntityClasses in org.activiti.engine.impl.persistence.entity that implement Model Modifier and Type Class Description classModelEntityImplMethods in org.activiti.engine.impl.persistence.entity that return types with arguments of type Model Modifier and Type Method Description java.util.List<Model>ModelEntityManager. findModelsByNativeQuery(java.util.Map<java.lang.String,java.lang.Object> parameterMap, int firstResult, int maxResults)java.util.List<Model>ModelEntityManagerImpl. findModelsByNativeQuery(java.util.Map<java.lang.String,java.lang.Object> parameterMap, int firstResult, int maxResults)java.util.List<Model>ModelEntityManager. findModelsByQueryCriteria(ModelQueryImpl query, Page page)java.util.List<Model>ModelEntityManagerImpl. findModelsByQueryCriteria(ModelQueryImpl query, Page page) -
Uses of Model in org.activiti.engine.impl.persistence.entity.data
Methods in org.activiti.engine.impl.persistence.entity.data that return types with arguments of type Model Modifier and Type Method Description java.util.List<Model>ModelDataManager. findModelsByNativeQuery(java.util.Map<java.lang.String,java.lang.Object> parameterMap, int firstResult, int maxResults)java.util.List<Model>ModelDataManager. findModelsByQueryCriteria(ModelQueryImpl query, Page page) -
Uses of Model in org.activiti.engine.impl.persistence.entity.data.impl
Methods in org.activiti.engine.impl.persistence.entity.data.impl that return types with arguments of type Model Modifier and Type Method Description java.util.List<Model>MybatisModelDataManager. findModelsByNativeQuery(java.util.Map<java.lang.String,java.lang.Object> parameterMap, int firstResult, int maxResults)java.util.List<Model>MybatisModelDataManager. findModelsByQueryCriteria(ModelQueryImpl query, Page page)
-