Package org.camunda.bpm.engine.form
Interface FormProperty
-
- All Known Implementing Classes:
FormPropertyImpl
@Deprecated public interface FormPropertyDeprecated.Represents a single property on a form.- Author:
- Tom Baeyens
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description java.lang.StringgetId()Deprecated.The key used to submit the property inFormService.submitStartFormData(String, java.util.Map)orFormService.submitTaskFormData(String, java.util.Map)java.lang.StringgetName()Deprecated.The display labelFormTypegetType()Deprecated.Type of the property.java.lang.StringgetValue()Deprecated.Optional value that should be used to display in this propertybooleanisReadable()Deprecated.Is this property read to be displayed in the form and made accessible with the methodsFormService.getStartFormData(String)andFormService.getTaskFormData(String).booleanisRequired()Deprecated.Is this property a required input fieldbooleanisWritable()Deprecated.Is this property expected when a user submits the form?
-
-
-
Method Detail
-
getId
java.lang.String getId()
Deprecated.The key used to submit the property inFormService.submitStartFormData(String, java.util.Map)orFormService.submitTaskFormData(String, java.util.Map)
-
getName
java.lang.String getName()
Deprecated.The display label
-
getType
FormType getType()
Deprecated.Type of the property.
-
getValue
java.lang.String getValue()
Deprecated.Optional value that should be used to display in this property
-
isReadable
boolean isReadable()
Deprecated.Is this property read to be displayed in the form and made accessible with the methodsFormService.getStartFormData(String)andFormService.getTaskFormData(String).
-
isWritable
boolean isWritable()
Deprecated.Is this property expected when a user submits the form?
-
isRequired
boolean isRequired()
Deprecated.Is this property a required input field
-
-