Package org.camunda.bpm.engine.impl.form
Class CamundaFormRefImpl
- java.lang.Object
-
- org.camunda.bpm.engine.impl.form.CamundaFormRefImpl
-
- All Implemented Interfaces:
CamundaFormRef
public class CamundaFormRefImpl extends Object implements CamundaFormRef
-
-
Constructor Summary
Constructors Constructor Description CamundaFormRefImpl(String key, String binding)
-
Method Summary
All Methods Instance Methods Concrete 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()
void
setBinding(String binding)
void
setKey(String key)
void
setVersion(Integer version)
String
toString()
-
-
-
Method Detail
-
getKey
public String getKey()
Description copied from interface:CamundaFormRef
The key of aCamundaFormRef
corresponds to theid
attribute in the Camunda Forms JSON.- Specified by:
getKey
in interfaceCamundaFormRef
-
setKey
public void setKey(String key)
-
getBinding
public String getBinding()
Description copied from interface:CamundaFormRef
The binding ofCamundaFormRef
specifies which version of the form to reference. Possible values are:latest
,deployment
andversion
(specific version value can be retrieved withCamundaFormRef.getVersion()
).- Specified by:
getBinding
in interfaceCamundaFormRef
-
setBinding
public void setBinding(String binding)
-
getVersion
public Integer getVersion()
Description copied from interface:CamundaFormRef
- Specified by:
getVersion
in interfaceCamundaFormRef
-
setVersion
public void setVersion(Integer version)
-
-