Class ProcessRenderingSettings
- java.lang.Object
-
- org.jbpm.workbench.forms.service.providing.ProcessRenderingSettings
-
- All Implemented Interfaces:
Serializable,RenderingSettings
public class ProcessRenderingSettings extends Object implements RenderingSettings
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ProcessRenderingSettings(ProcessDefinition process, Map<String,String> processData, String serverTemplateId, String formContent, org.kie.internal.task.api.ContentMarshallerContext marshallerContext)ProcessRenderingSettings(ProcessDefinition process, Map<String,String> processData, Map<String,String[]> processVariableTags, String serverTemplateId, String formContent, org.kie.internal.task.api.ContentMarshallerContext marshallerContext)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetFormContent()Retrieves the actual content of the form to be renderedorg.kie.internal.task.api.ContentMarshallerContextgetMarshallerContext()Retrieves the ContentMarshallerContextProcessDefinitiongetProcess()Map<String,String>getProcessData()Map<String,String[]>getProcessVariableTags()Returns the ProcessVariables Tags infoStringgetServerTemplateId()Retrieves the Servler Template Id for the current settingsvoidsetFormContent(String formContent)Sets the content of the form to be renderedvoidsetMarshallerContext(org.kie.internal.task.api.ContentMarshallerContext marshallerContext)Sets the ContentMarshallerContextvoidsetProcess(ProcessDefinition process)voidsetProcessData(Map<String,String> processData)voidsetProcessVariableTags(Map<String,String[]> processVariableTags)
-
-
-
Method Detail
-
getProcess
public ProcessDefinition getProcess()
-
setProcess
public void setProcess(ProcessDefinition process)
-
getProcessVariableTags
public Map<String,String[]> getProcessVariableTags()
Description copied from interface:RenderingSettingsReturns the ProcessVariables Tags info- Specified by:
getProcessVariableTagsin interfaceRenderingSettings
-
setProcessVariableTags
public void setProcessVariableTags(Map<String,String[]> processVariableTags)
-
getServerTemplateId
public String getServerTemplateId()
Description copied from interface:RenderingSettingsRetrieves the Servler Template Id for the current settings- Specified by:
getServerTemplateIdin interfaceRenderingSettings
-
getFormContent
public String getFormContent()
Description copied from interface:RenderingSettingsRetrieves the actual content of the form to be rendered- Specified by:
getFormContentin interfaceRenderingSettings
-
setFormContent
public void setFormContent(String formContent)
Description copied from interface:RenderingSettingsSets the content of the form to be rendered- Specified by:
setFormContentin interfaceRenderingSettings
-
getMarshallerContext
public org.kie.internal.task.api.ContentMarshallerContext getMarshallerContext()
Description copied from interface:RenderingSettingsRetrieves the ContentMarshallerContext- Specified by:
getMarshallerContextin interfaceRenderingSettings
-
setMarshallerContext
public void setMarshallerContext(org.kie.internal.task.api.ContentMarshallerContext marshallerContext)
Description copied from interface:RenderingSettingsSets the ContentMarshallerContext- Specified by:
setMarshallerContextin interfaceRenderingSettings
-
-