Package org.flowable.form.api
Class FormInstanceInfo
- java.lang.Object
-
- org.flowable.form.api.FormInfo
-
- org.flowable.form.api.FormInstanceInfo
-
- All Implemented Interfaces:
Serializable
public class FormInstanceInfo extends FormInfo
- Author:
- Tijs Rademakers
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected StringformInstanceIdprotected StringprocessDefinitionIdprotected StringprocessInstanceIdprotected StringscopeDefinitionIdprotected StringscopeIdprotected StringscopeTypeprotected StringselectedOutcomeprotected StringsubmittedByprotected DatesubmittedDateprotected StringtaskIdprotected StringtenantId
-
Constructor Summary
Constructors Constructor Description FormInstanceInfo()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetFormInstanceId()StringgetProcessDefinitionId()StringgetProcessInstanceId()StringgetScopeDefinitionId()StringgetScopeId()StringgetScopeType()StringgetSelectedOutcome()StringgetSubmittedBy()DategetSubmittedDate()StringgetTaskId()StringgetTenantId()voidsetFormInstanceId(String formInstanceId)voidsetProcessDefinitionId(String processDefinitionId)voidsetProcessInstanceId(String processInstanceId)voidsetScopeDefinitionId(String scopeDefinitionId)voidsetScopeId(String scopeId)voidsetScopeType(String scopeType)voidsetSelectedOutcome(String selectedOutcome)voidsetSubmittedBy(String submittedBy)voidsetSubmittedDate(Date submittedDate)voidsetTaskId(String taskId)voidsetTenantId(String tenantId)-
Methods inherited from class org.flowable.form.api.FormInfo
getDescription, getFormModel, getId, getKey, getName, getVersion, setDescription, setFormModel, setId, setKey, setName, setVersion
-
-
-
-
Field Detail
-
formInstanceId
protected String formInstanceId
-
submittedBy
protected String submittedBy
-
submittedDate
protected Date submittedDate
-
selectedOutcome
protected String selectedOutcome
-
taskId
protected String taskId
-
processInstanceId
protected String processInstanceId
-
processDefinitionId
protected String processDefinitionId
-
scopeId
protected String scopeId
-
scopeType
protected String scopeType
-
scopeDefinitionId
protected String scopeDefinitionId
-
tenantId
protected String tenantId
-
-
Method Detail
-
getFormInstanceId
public String getFormInstanceId()
-
setFormInstanceId
public void setFormInstanceId(String formInstanceId)
-
getSubmittedBy
public String getSubmittedBy()
-
setSubmittedBy
public void setSubmittedBy(String submittedBy)
-
getSubmittedDate
public Date getSubmittedDate()
-
setSubmittedDate
public void setSubmittedDate(Date submittedDate)
-
getSelectedOutcome
public String getSelectedOutcome()
-
setSelectedOutcome
public void setSelectedOutcome(String selectedOutcome)
-
getTaskId
public String getTaskId()
-
setTaskId
public void setTaskId(String taskId)
-
getProcessInstanceId
public String getProcessInstanceId()
-
setProcessInstanceId
public void setProcessInstanceId(String processInstanceId)
-
getProcessDefinitionId
public String getProcessDefinitionId()
-
setProcessDefinitionId
public void setProcessDefinitionId(String processDefinitionId)
-
getScopeId
public String getScopeId()
-
setScopeId
public void setScopeId(String scopeId)
-
getScopeType
public String getScopeType()
-
setScopeType
public void setScopeType(String scopeType)
-
getScopeDefinitionId
public String getScopeDefinitionId()
-
setScopeDefinitionId
public void setScopeDefinitionId(String scopeDefinitionId)
-
getTenantId
public String getTenantId()
-
setTenantId
public void setTenantId(String tenantId)
-
-