Package org.camunda.bpm.engine.form
Interface FormProperty
- All Known Implementing Classes:
- FormPropertyImpl
Deprecated.
Represents a single property on a form.
- Author:
- Tom Baeyens
- 
Method SummaryModifier and TypeMethodDescriptiongetId()Deprecated.The key used to submit the property inFormService.submitStartFormData(String, java.util.Map)orFormService.submitTaskFormData(String, java.util.Map)getName()Deprecated.The display labelgetType()Deprecated.Type of the property.getValue()Deprecated.Optional value that should be used to display in this propertybooleanDeprecated.Is this property read to be displayed in the form and made accessible with the methodsFormService.getStartFormData(String)andFormService.getTaskFormData(String).booleanDeprecated.Is this property a required input fieldbooleanDeprecated.Is this property expected when a user submits the form?
- 
Method Details- 
getIdString getId()Deprecated.The key used to submit the property inFormService.submitStartFormData(String, java.util.Map)orFormService.submitTaskFormData(String, java.util.Map)
- 
getNameString getName()Deprecated.The display label
- 
getTypeFormType getType()Deprecated.Type of the property.
- 
getValueString getValue()Deprecated.Optional value that should be used to display in this property
- 
isReadableboolean isReadable()Deprecated.Is this property read to be displayed in the form and made accessible with the methodsFormService.getStartFormData(String)andFormService.getTaskFormData(String).
- 
isWritableboolean isWritable()Deprecated.Is this property expected when a user submits the form?
- 
isRequiredboolean isRequired()Deprecated.Is this property a required input field
 
-