Class TaskRenderingSettings
- java.lang.Object
-
- org.jbpm.workbench.forms.service.providing.TaskRenderingSettings
-
- All Implemented Interfaces:
Serializable,RenderingSettings
public class TaskRenderingSettings extends Object implements RenderingSettings
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description TaskRenderingSettings(TaskDefinition task, Map<String,Object> inputs, Map<String,Object> outputs, 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 renderedMap<String,Object>getInputs()org.kie.internal.task.api.ContentMarshallerContextgetMarshallerContext()Retrieves the ContentMarshallerContextMap<String,Object>getOutputs()Map<String,String[]>getProcessVariableTags()Returns the ProcessVariables Tags infoStringgetServerTemplateId()Retrieves the Servler Template Id for the current settingsTaskDefinitiongetTask()voidsetFormContent(String formContent)Sets the content of the form to be renderedvoidsetInputs(Map<String,Object> inputs)voidsetMarshallerContext(org.kie.internal.task.api.ContentMarshallerContext marshallerContext)Sets the ContentMarshallerContextvoidsetOutputs(Map<String,Object> outputs)voidsetTask(TaskDefinition task)
-
-
-
Method Detail
-
getTask
public TaskDefinition getTask()
-
setTask
public void setTask(TaskDefinition task)
-
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
-
getProcessVariableTags
public Map<String,String[]> getProcessVariableTags()
Description copied from interface:RenderingSettingsReturns the ProcessVariables Tags info- Specified by:
getProcessVariableTagsin interfaceRenderingSettings
-
-