Interface RenderingSettings
-
- All Superinterfaces:
Serializable
- All Known Implementing Classes:
ProcessRenderingSettings,TaskRenderingSettings
public interface RenderingSettings extends Serializable
Defines basic settings to render a form
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetFormContent()Retrieves the actual content of the form to be renderedorg.kie.internal.task.api.ContentMarshallerContextgetMarshallerContext()Retrieves the ContentMarshallerContextMap<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 ContentMarshallerContext
-
-
-
Method Detail
-
getServerTemplateId
String getServerTemplateId()
Retrieves the Servler Template Id for the current settings
-
getFormContent
String getFormContent()
Retrieves the actual content of the form to be rendered
-
setFormContent
void setFormContent(String formContent)
Sets the content of the form to be rendered
-
getMarshallerContext
org.kie.internal.task.api.ContentMarshallerContext getMarshallerContext()
Retrieves the ContentMarshallerContext
-
setMarshallerContext
void setMarshallerContext(org.kie.internal.task.api.ContentMarshallerContext marshallerContext)
Sets the ContentMarshallerContext
-
-