Package org.camunda.bpm.engine.form
Interface CamundaFormRef
-
- All Known Implementing Classes:
CamundaFormRefImpl
public interface CamundaFormRef
ACamundaFormRef
represents a reference to a deployed Camunda Form.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getBinding()
The binding ofCamundaFormRef
specifies which version of the form to reference.String
getKey()
The key of aCamundaFormRef
corresponds to theid
attribute in the Camunda Forms JSON.Integer
getVersion()
-
-
-
Method Detail
-
getKey
String getKey()
The key of aCamundaFormRef
corresponds to theid
attribute in the Camunda Forms JSON.
-
getBinding
String getBinding()
The binding ofCamundaFormRef
specifies which version of the form to reference. Possible values are:latest
,deployment
andversion
(specific version value can be retrieved withgetVersion()
).
-
getVersion
Integer getVersion()
-
-