Package org.flowable.engine.impl
Class ProcessDefinitionQueryImpl
- java.lang.Object
-
- org.flowable.common.engine.impl.db.ListQueryParameterObject
-
- org.flowable.common.engine.impl.query.AbstractQuery<ProcessDefinitionQuery,ProcessDefinition>
-
- org.flowable.engine.impl.ProcessDefinitionQueryImpl
-
- All Implemented Interfaces:
Serializable,Query<ProcessDefinitionQuery,ProcessDefinition>,Command<Object>,ProcessDefinitionQuery
public class ProcessDefinitionQueryImpl extends AbstractQuery<ProcessDefinitionQuery,ProcessDefinition> implements ProcessDefinitionQuery
- Author:
- Tom Baeyens, Joram Barrez, Daniel Meyer, Saeid Mirzaei
- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.flowable.common.engine.impl.db.ListQueryParameterObject
ListQueryParameterObject.OrderBy, ListQueryParameterObject.ResultType
-
Nested classes/interfaces inherited from interface org.flowable.common.engine.api.query.Query
Query.NullHandlingOnOrder
-
-
Field Summary
-
Fields inherited from class org.flowable.common.engine.impl.query.AbstractQuery
commandContext, commandExecutor
-
Fields inherited from class org.flowable.common.engine.impl.db.ListQueryParameterObject
databaseType, DEFAULT_ORDER_BY, defaultOrderBy, firstResult, maxResults, nullHandlingColumn, nullHandlingOnOrder, orderByCollection, orderProperty, parameter, resultType, SORTORDER_ASC, SORTORDER_DESC
-
-
Constructor Summary
Constructors Constructor Description ProcessDefinitionQueryImpl()ProcessDefinitionQueryImpl(CommandContext commandContext)ProcessDefinitionQueryImpl(CommandExecutor commandExecutor)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ProcessDefinitionQueryactive()Only selects process definitions which are activeprotected voidcheckVersion(Integer version)ProcessDefinitionQueryImpldeploymentId(String deploymentId)Only select process definitions that are deployed in a deployment with the given deployment idProcessDefinitionQueryImpldeploymentIds(Set<String> deploymentIds)Select process definitions that are deployed in deployments with the given set of idsProcessDefinitionQueryeventSubscription(String eventType, String eventName)longexecuteCount(CommandContext commandContext)List<ProcessDefinition>executeList(CommandContext commandContext)Collection<String>getAuthorizationGroups()StringgetAuthorizationUserId()StringgetCategory()StringgetCategoryLike()StringgetCategoryNotEquals()StringgetDeploymentId()Set<String>getDeploymentIds()StringgetEngineVersion()StringgetEventSubscriptionName()StringgetEventSubscriptionType()StringgetId()Set<String>getIds()StringgetKey()StringgetKeyLike()StringgetName()StringgetNameLike()StringgetNameLikeIgnoreCase()StringgetParentDeploymentId()StringgetProcDefId()StringgetResourceName()StringgetResourceNameLike()List<List<String>>getSafeAuthorizationGroups()SuspensionStategetSuspensionState()StringgetTenantId()StringgetTenantIdLike()IntegergetVersion()IntegergetVersionGt()IntegergetVersionGte()IntegergetVersionLt()IntegergetVersionLte()booleanisIncludeAuthorization()booleanisLatest()booleanisWithoutTenantId()ProcessDefinitionQueryImpllatestVersion()Only select the process definitions which are the latest deployed (ie.ProcessDefinitionQuerylocale(String locale)Localize process definition name and description to specified locale.ProcessDefinitionQuerymessageEventSubscription(String messageName)ProcessDefinitionQuerymessageEventSubscriptionName(String messageName)Selects the single process definition which has a start message event with the messageName.ProcessDefinitionQueryorderByDeploymentId()Order by deployment id (needs to be followed byQuery.asc()orQuery.desc()).ProcessDefinitionQueryorderByProcessDefinitionCategory()Order by the category of the process definitions (needs to be followed byQuery.asc()orQuery.desc()).ProcessDefinitionQueryorderByProcessDefinitionId()Order by the id of the process definitions (needs to be followed byQuery.asc()orQuery.desc()).ProcessDefinitionQueryorderByProcessDefinitionKey()Order by process definition key (needs to be followed byQuery.asc()orQuery.desc()).ProcessDefinitionQueryorderByProcessDefinitionName()Order by the name of the process definitions (needs to be followed byQuery.asc()orQuery.desc()).ProcessDefinitionQueryorderByProcessDefinitionVersion()Order by the version of the process definitions (needs to be followed byQuery.asc()orQuery.desc()).ProcessDefinitionQueryorderByTenantId()Order by tenant id (needs to be followed byQuery.asc()orQuery.desc()).ProcessDefinitionQueryImplparentDeploymentId(String parentDeploymentId)Only select process definitions that are deployed in a deployment with the given parent deployment idProcessDefinitionQueryImplprocessDefinitionCategory(String category)Only select process definitions with the given category.ProcessDefinitionQueryImplprocessDefinitionCategoryLike(String categoryLike)Only select process definitions where the category matches the given parameter.ProcessDefinitionQueryImplprocessDefinitionCategoryNotEquals(String categoryNotEquals)Only select deployments that have a different category then the given one.ProcessDefinitionQueryprocessDefinitionEngineVersion(String engineVersion)Only select process definitions that have the given engine version.ProcessDefinitionQueryImplprocessDefinitionId(String processDefinitionId)Only select process definition with the given id.ProcessDefinitionQueryprocessDefinitionIds(Set<String> processDefinitionIds)Only select process definitions with the given ids.ProcessDefinitionQueryImplprocessDefinitionKey(String key)Only select process definition with the given key.ProcessDefinitionQueryImplprocessDefinitionKeyLike(String keyLike)Only select process definitions where the key matches the given parameter.ProcessDefinitionQueryImplprocessDefinitionName(String name)Only select process definitions with the given name.ProcessDefinitionQueryImplprocessDefinitionNameLike(String nameLike)Only select process definitions where the name matches the given parameter.ProcessDefinitionQueryImplprocessDefinitionNameLikeIgnoreCase(String nameLikeIgnoreCase)Only select process definitions where the name matches the given parameter, ignoring upper/lower case.ProcessDefinitionQueryImplprocessDefinitionResourceName(String resourceName)Only select process definition with the given resource name.ProcessDefinitionQueryImplprocessDefinitionResourceNameLike(String resourceNameLike)Only select process definition with a resource name like the given .ProcessDefinitionQueryprocessDefinitionStarter(String procDefId)ProcessDefinitionQueryprocessDefinitionTenantId(String tenantId)Only select process definitions that have the given tenant id.ProcessDefinitionQueryprocessDefinitionTenantIdLike(String tenantIdLike)Only select process definitions with a tenant id like the given one.ProcessDefinitionQueryImplprocessDefinitionVersion(Integer version)Only select process definition with a certain version.ProcessDefinitionQueryprocessDefinitionVersionGreaterThan(Integer processDefinitionVersion)Only select process definitions which version are greater than a certain version.ProcessDefinitionQueryprocessDefinitionVersionGreaterThanOrEquals(Integer processDefinitionVersion)Only select process definitions which version are greater than or equals a certain version.ProcessDefinitionQueryprocessDefinitionVersionLowerThan(Integer processDefinitionVersion)Only select process definitions which version are lower than a certain version.ProcessDefinitionQueryprocessDefinitionVersionLowerThanOrEquals(Integer processDefinitionVersion)Only select process definitions which version are lower than or equals a certain version.ProcessDefinitionQueryprocessDefinitionWithoutTenantId()Only select process definitions that do not have a tenant id.voidsetSafeAuthorizationGroups(List<List<String>> safeAuthorizationGroups)voidsetSuspensionState(SuspensionState suspensionState)ProcessDefinitionQueryImplstartableByUser(String userId)Only selects process definitions which given userId is authorized to startProcessDefinitionQuerystartableByUserOrGroups(String userId, Collection<String> groups)Only selects process definition which the given userId or groups are authorized to start.ProcessDefinitionQuerysuspended()Only selects process definitions which are suspendedProcessDefinitionQuerywithLocalizationFallback()Instruct localization to fallback to more general locales including the default locale of the JVM if the specified locale is not found.-
Methods inherited from class org.flowable.common.engine.impl.query.AbstractQuery
asc, checkQueryOk, count, desc, direction, execute, executeSingleResult, list, listPage, orderBy, orderBy, setCommandExecutor, singleResult
-
Methods inherited from class org.flowable.common.engine.impl.db.ListQueryParameterObject
addOrder, buildOrderBy, getDatabaseType, getFirstResult, getFirstRow, getLastRow, getMaxResults, getNullHandlingColumn, getOrderBy, getOrderByCollectionSafe, getOrderByForWindow, getOuterJoinOrderBy, getParameter, hasOrderBy, hasOrderByForColumn, isNeedsPaging, mapOrderByToSql, setDatabaseType, setFirstResult, setMaxResults, setNullHandlingColumn, setParameter
-
-
-
-
Field Detail
-
id
protected String id
-
category
protected String category
-
categoryLike
protected String categoryLike
-
categoryNotEquals
protected String categoryNotEquals
-
name
protected String name
-
nameLike
protected String nameLike
-
nameLikeIgnoreCase
protected String nameLikeIgnoreCase
-
deploymentId
protected String deploymentId
-
parentDeploymentId
protected String parentDeploymentId
-
key
protected String key
-
keyLike
protected String keyLike
-
resourceName
protected String resourceName
-
resourceNameLike
protected String resourceNameLike
-
version
protected Integer version
-
versionGt
protected Integer versionGt
-
versionGte
protected Integer versionGte
-
versionLt
protected Integer versionLt
-
versionLte
protected Integer versionLte
-
latest
protected boolean latest
-
suspensionState
protected SuspensionState suspensionState
-
authorizationUserId
protected String authorizationUserId
-
authorizationGroups
protected Collection<String> authorizationGroups
-
authorizationGroupsSet
protected boolean authorizationGroupsSet
-
procDefId
protected String procDefId
-
tenantId
protected String tenantId
-
tenantIdLike
protected String tenantIdLike
-
withoutTenantId
protected boolean withoutTenantId
-
engineVersion
protected String engineVersion
-
locale
protected String locale
-
withLocalizationFallback
protected boolean withLocalizationFallback
-
eventSubscriptionName
protected String eventSubscriptionName
-
eventSubscriptionType
protected String eventSubscriptionType
-
-
Constructor Detail
-
ProcessDefinitionQueryImpl
public ProcessDefinitionQueryImpl()
-
ProcessDefinitionQueryImpl
public ProcessDefinitionQueryImpl(CommandContext commandContext)
-
ProcessDefinitionQueryImpl
public ProcessDefinitionQueryImpl(CommandExecutor commandExecutor)
-
-
Method Detail
-
processDefinitionId
public ProcessDefinitionQueryImpl processDefinitionId(String processDefinitionId)
Description copied from interface:ProcessDefinitionQueryOnly select process definition with the given id.- Specified by:
processDefinitionIdin interfaceProcessDefinitionQuery
-
processDefinitionIds
public ProcessDefinitionQuery processDefinitionIds(Set<String> processDefinitionIds)
Description copied from interface:ProcessDefinitionQueryOnly select process definitions with the given ids.- Specified by:
processDefinitionIdsin interfaceProcessDefinitionQuery
-
processDefinitionCategory
public ProcessDefinitionQueryImpl processDefinitionCategory(String category)
Description copied from interface:ProcessDefinitionQueryOnly select process definitions with the given category.- Specified by:
processDefinitionCategoryin interfaceProcessDefinitionQuery
-
processDefinitionCategoryLike
public ProcessDefinitionQueryImpl processDefinitionCategoryLike(String categoryLike)
Description copied from interface:ProcessDefinitionQueryOnly select process definitions where the category matches the given parameter. The syntax that should be used is the same as in SQL, eg. %test%- Specified by:
processDefinitionCategoryLikein interfaceProcessDefinitionQuery
-
processDefinitionCategoryNotEquals
public ProcessDefinitionQueryImpl processDefinitionCategoryNotEquals(String categoryNotEquals)
Description copied from interface:ProcessDefinitionQueryOnly select deployments that have a different category then the given one.- Specified by:
processDefinitionCategoryNotEqualsin interfaceProcessDefinitionQuery- See Also:
DeploymentBuilder.category(String)
-
processDefinitionName
public ProcessDefinitionQueryImpl processDefinitionName(String name)
Description copied from interface:ProcessDefinitionQueryOnly select process definitions with the given name.- Specified by:
processDefinitionNamein interfaceProcessDefinitionQuery
-
processDefinitionNameLike
public ProcessDefinitionQueryImpl processDefinitionNameLike(String nameLike)
Description copied from interface:ProcessDefinitionQueryOnly select process definitions where the name matches the given parameter. The syntax that should be used is the same as in SQL, eg. %test%- Specified by:
processDefinitionNameLikein interfaceProcessDefinitionQuery
-
processDefinitionNameLikeIgnoreCase
public ProcessDefinitionQueryImpl processDefinitionNameLikeIgnoreCase(String nameLikeIgnoreCase)
Description copied from interface:ProcessDefinitionQueryOnly select process definitions where the name matches the given parameter, ignoring upper/lower case. The syntax that should be used is the same as in SQL, eg. %test%- Specified by:
processDefinitionNameLikeIgnoreCasein interfaceProcessDefinitionQuery
-
deploymentId
public ProcessDefinitionQueryImpl deploymentId(String deploymentId)
Description copied from interface:ProcessDefinitionQueryOnly select process definitions that are deployed in a deployment with the given deployment id- Specified by:
deploymentIdin interfaceProcessDefinitionQuery
-
deploymentIds
public ProcessDefinitionQueryImpl deploymentIds(Set<String> deploymentIds)
Description copied from interface:ProcessDefinitionQuerySelect process definitions that are deployed in deployments with the given set of ids- Specified by:
deploymentIdsin interfaceProcessDefinitionQuery
-
parentDeploymentId
public ProcessDefinitionQueryImpl parentDeploymentId(String parentDeploymentId)
Description copied from interface:ProcessDefinitionQueryOnly select process definitions that are deployed in a deployment with the given parent deployment id- Specified by:
parentDeploymentIdin interfaceProcessDefinitionQuery
-
processDefinitionKey
public ProcessDefinitionQueryImpl processDefinitionKey(String key)
Description copied from interface:ProcessDefinitionQueryOnly select process definition with the given key.- Specified by:
processDefinitionKeyin interfaceProcessDefinitionQuery
-
processDefinitionKeyLike
public ProcessDefinitionQueryImpl processDefinitionKeyLike(String keyLike)
Description copied from interface:ProcessDefinitionQueryOnly select process definitions where the key matches the given parameter. The syntax that should be used is the same as in SQL, eg. %test%- Specified by:
processDefinitionKeyLikein interfaceProcessDefinitionQuery
-
processDefinitionResourceName
public ProcessDefinitionQueryImpl processDefinitionResourceName(String resourceName)
Description copied from interface:ProcessDefinitionQueryOnly select process definition with the given resource name.- Specified by:
processDefinitionResourceNamein interfaceProcessDefinitionQuery
-
processDefinitionResourceNameLike
public ProcessDefinitionQueryImpl processDefinitionResourceNameLike(String resourceNameLike)
Description copied from interface:ProcessDefinitionQueryOnly select process definition with a resource name like the given .- Specified by:
processDefinitionResourceNameLikein interfaceProcessDefinitionQuery
-
processDefinitionVersion
public ProcessDefinitionQueryImpl processDefinitionVersion(Integer version)
Description copied from interface:ProcessDefinitionQueryOnly select process definition with a certain version. Particularly useful when used in combination withProcessDefinitionQuery.processDefinitionKey(String)- Specified by:
processDefinitionVersionin interfaceProcessDefinitionQuery
-
processDefinitionVersionGreaterThan
public ProcessDefinitionQuery processDefinitionVersionGreaterThan(Integer processDefinitionVersion)
Description copied from interface:ProcessDefinitionQueryOnly select process definitions which version are greater than a certain version.- Specified by:
processDefinitionVersionGreaterThanin interfaceProcessDefinitionQuery
-
processDefinitionVersionGreaterThanOrEquals
public ProcessDefinitionQuery processDefinitionVersionGreaterThanOrEquals(Integer processDefinitionVersion)
Description copied from interface:ProcessDefinitionQueryOnly select process definitions which version are greater than or equals a certain version.- Specified by:
processDefinitionVersionGreaterThanOrEqualsin interfaceProcessDefinitionQuery
-
processDefinitionVersionLowerThan
public ProcessDefinitionQuery processDefinitionVersionLowerThan(Integer processDefinitionVersion)
Description copied from interface:ProcessDefinitionQueryOnly select process definitions which version are lower than a certain version.- Specified by:
processDefinitionVersionLowerThanin interfaceProcessDefinitionQuery
-
processDefinitionVersionLowerThanOrEquals
public ProcessDefinitionQuery processDefinitionVersionLowerThanOrEquals(Integer processDefinitionVersion)
Description copied from interface:ProcessDefinitionQueryOnly select process definitions which version are lower than or equals a certain version.- Specified by:
processDefinitionVersionLowerThanOrEqualsin interfaceProcessDefinitionQuery
-
checkVersion
protected void checkVersion(Integer version)
-
latestVersion
public ProcessDefinitionQueryImpl latestVersion()
Description copied from interface:ProcessDefinitionQueryOnly select the process definitions which are the latest deployed (ie. which have the highest version number for the given key). Can also be used without any other criteria (ie. query.latest().list()), which will then give all the latest versions of all the deployed process definitions.- Specified by:
latestVersionin interfaceProcessDefinitionQuery
-
active
public ProcessDefinitionQuery active()
Description copied from interface:ProcessDefinitionQueryOnly selects process definitions which are active- Specified by:
activein interfaceProcessDefinitionQuery
-
suspended
public ProcessDefinitionQuery suspended()
Description copied from interface:ProcessDefinitionQueryOnly selects process definitions which are suspended- Specified by:
suspendedin interfaceProcessDefinitionQuery
-
processDefinitionTenantId
public ProcessDefinitionQuery processDefinitionTenantId(String tenantId)
Description copied from interface:ProcessDefinitionQueryOnly select process definitions that have the given tenant id.- Specified by:
processDefinitionTenantIdin interfaceProcessDefinitionQuery
-
processDefinitionTenantIdLike
public ProcessDefinitionQuery processDefinitionTenantIdLike(String tenantIdLike)
Description copied from interface:ProcessDefinitionQueryOnly select process definitions with a tenant id like the given one.- Specified by:
processDefinitionTenantIdLikein interfaceProcessDefinitionQuery
-
processDefinitionWithoutTenantId
public ProcessDefinitionQuery processDefinitionWithoutTenantId()
Description copied from interface:ProcessDefinitionQueryOnly select process definitions that do not have a tenant id.- Specified by:
processDefinitionWithoutTenantIdin interfaceProcessDefinitionQuery
-
processDefinitionEngineVersion
public ProcessDefinitionQuery processDefinitionEngineVersion(String engineVersion)
Description copied from interface:ProcessDefinitionQueryOnly select process definitions that have the given engine version.- Specified by:
processDefinitionEngineVersionin interfaceProcessDefinitionQuery
-
messageEventSubscription
public ProcessDefinitionQuery messageEventSubscription(String messageName)
-
messageEventSubscriptionName
public ProcessDefinitionQuery messageEventSubscriptionName(String messageName)
Description copied from interface:ProcessDefinitionQuerySelects the single process definition which has a start message event with the messageName.- Specified by:
messageEventSubscriptionNamein interfaceProcessDefinitionQuery
-
locale
public ProcessDefinitionQuery locale(String locale)
Description copied from interface:ProcessDefinitionQueryLocalize process definition name and description to specified locale.- Specified by:
localein interfaceProcessDefinitionQuery
-
withLocalizationFallback
public ProcessDefinitionQuery withLocalizationFallback()
Description copied from interface:ProcessDefinitionQueryInstruct localization to fallback to more general locales including the default locale of the JVM if the specified locale is not found.- Specified by:
withLocalizationFallbackin interfaceProcessDefinitionQuery
-
processDefinitionStarter
public ProcessDefinitionQuery processDefinitionStarter(String procDefId)
-
eventSubscription
public ProcessDefinitionQuery eventSubscription(String eventType, String eventName)
-
getAuthorizationGroups
public Collection<String> getAuthorizationGroups()
-
startableByUser
public ProcessDefinitionQueryImpl startableByUser(String userId)
Description copied from interface:ProcessDefinitionQueryOnly selects process definitions which given userId is authorized to start- Specified by:
startableByUserin interfaceProcessDefinitionQuery
-
startableByUserOrGroups
public ProcessDefinitionQuery startableByUserOrGroups(String userId, Collection<String> groups)
Description copied from interface:ProcessDefinitionQueryOnly selects process definition which the given userId or groups are authorized to start.- Specified by:
startableByUserOrGroupsin interfaceProcessDefinitionQuery
-
orderByDeploymentId
public ProcessDefinitionQuery orderByDeploymentId()
Description copied from interface:ProcessDefinitionQueryOrder by deployment id (needs to be followed byQuery.asc()orQuery.desc()).- Specified by:
orderByDeploymentIdin interfaceProcessDefinitionQuery
-
orderByProcessDefinitionKey
public ProcessDefinitionQuery orderByProcessDefinitionKey()
Description copied from interface:ProcessDefinitionQueryOrder by process definition key (needs to be followed byQuery.asc()orQuery.desc()).- Specified by:
orderByProcessDefinitionKeyin interfaceProcessDefinitionQuery
-
orderByProcessDefinitionCategory
public ProcessDefinitionQuery orderByProcessDefinitionCategory()
Description copied from interface:ProcessDefinitionQueryOrder by the category of the process definitions (needs to be followed byQuery.asc()orQuery.desc()).- Specified by:
orderByProcessDefinitionCategoryin interfaceProcessDefinitionQuery
-
orderByProcessDefinitionId
public ProcessDefinitionQuery orderByProcessDefinitionId()
Description copied from interface:ProcessDefinitionQueryOrder by the id of the process definitions (needs to be followed byQuery.asc()orQuery.desc()).- Specified by:
orderByProcessDefinitionIdin interfaceProcessDefinitionQuery
-
orderByProcessDefinitionVersion
public ProcessDefinitionQuery orderByProcessDefinitionVersion()
Description copied from interface:ProcessDefinitionQueryOrder by the version of the process definitions (needs to be followed byQuery.asc()orQuery.desc()).- Specified by:
orderByProcessDefinitionVersionin interfaceProcessDefinitionQuery
-
orderByProcessDefinitionName
public ProcessDefinitionQuery orderByProcessDefinitionName()
Description copied from interface:ProcessDefinitionQueryOrder by the name of the process definitions (needs to be followed byQuery.asc()orQuery.desc()).- Specified by:
orderByProcessDefinitionNamein interfaceProcessDefinitionQuery
-
orderByTenantId
public ProcessDefinitionQuery orderByTenantId()
Description copied from interface:ProcessDefinitionQueryOrder by tenant id (needs to be followed byQuery.asc()orQuery.desc()).- Specified by:
orderByTenantIdin interfaceProcessDefinitionQuery
-
executeCount
public long executeCount(CommandContext commandContext)
- Specified by:
executeCountin classAbstractQuery<ProcessDefinitionQuery,ProcessDefinition>
-
executeList
public List<ProcessDefinition> executeList(CommandContext commandContext)
- Specified by:
executeListin classAbstractQuery<ProcessDefinitionQuery,ProcessDefinition>
-
getDeploymentId
public String getDeploymentId()
-
getParentDeploymentId
public String getParentDeploymentId()
-
getId
public String getId()
-
getName
public String getName()
-
getNameLike
public String getNameLike()
-
getNameLikeIgnoreCase
public String getNameLikeIgnoreCase()
-
getKey
public String getKey()
-
getKeyLike
public String getKeyLike()
-
getVersion
public Integer getVersion()
-
getVersionGt
public Integer getVersionGt()
-
getVersionGte
public Integer getVersionGte()
-
getVersionLt
public Integer getVersionLt()
-
getVersionLte
public Integer getVersionLte()
-
isLatest
public boolean isLatest()
-
getCategory
public String getCategory()
-
getCategoryLike
public String getCategoryLike()
-
getResourceName
public String getResourceName()
-
getResourceNameLike
public String getResourceNameLike()
-
getSuspensionState
public SuspensionState getSuspensionState()
-
setSuspensionState
public void setSuspensionState(SuspensionState suspensionState)
-
getCategoryNotEquals
public String getCategoryNotEquals()
-
getTenantId
public String getTenantId()
-
getTenantIdLike
public String getTenantIdLike()
-
isWithoutTenantId
public boolean isWithoutTenantId()
-
getEngineVersion
public String getEngineVersion()
-
getAuthorizationUserId
public String getAuthorizationUserId()
-
getProcDefId
public String getProcDefId()
-
getEventSubscriptionName
public String getEventSubscriptionName()
-
getEventSubscriptionType
public String getEventSubscriptionType()
-
isIncludeAuthorization
public boolean isIncludeAuthorization()
-
-