Package org.flowable.engine.impl.cmd
Class GetFormDefinitionsForProcessDefinitionCmd
- java.lang.Object
-
- org.flowable.engine.impl.cmd.GetFormDefinitionsForProcessDefinitionCmd
-
- All Implemented Interfaces:
Serializable,Command<List<FormDefinition>>
public class GetFormDefinitionsForProcessDefinitionCmd extends Object implements Command<List<FormDefinition>>, Serializable
- Author:
- Yvo Swillens
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected FormRepositoryServiceformRepositoryServiceprotected StringprocessDefinitionId
-
Constructor Summary
Constructors Constructor Description GetFormDefinitionsForProcessDefinitionCmd(String processDefinitionId)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected voidaddFormDefinitionToCollection(List<FormDefinition> formDefinitions, String formKey, ProcessDefinition processDefinition)List<FormDefinition>execute(CommandContext commandContext)protected List<FormDefinition>getFormDefinitionsFromModel(org.flowable.bpmn.model.BpmnModel bpmnModel, ProcessDefinition processDefinition)
-
-
-
Field Detail
-
processDefinitionId
protected String processDefinitionId
-
formRepositoryService
protected FormRepositoryService formRepositoryService
-
-
Constructor Detail
-
GetFormDefinitionsForProcessDefinitionCmd
public GetFormDefinitionsForProcessDefinitionCmd(String processDefinitionId)
-
-
Method Detail
-
execute
public List<FormDefinition> execute(CommandContext commandContext)
- Specified by:
executein interfaceCommand<List<FormDefinition>>
-
getFormDefinitionsFromModel
protected List<FormDefinition> getFormDefinitionsFromModel(org.flowable.bpmn.model.BpmnModel bpmnModel, ProcessDefinition processDefinition)
-
addFormDefinitionToCollection
protected void addFormDefinitionToCollection(List<FormDefinition> formDefinitions, String formKey, ProcessDefinition processDefinition)
-
-