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 java.lang.Object implements CamundaFormRef
-
-
Constructor Summary
Constructors Constructor Description CamundaFormRefImpl(java.lang.String key, java.lang.String binding)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetBinding()The binding ofCamundaFormRefspecifies which version of the form to reference.java.lang.StringgetKey()The key of aCamundaFormRefcorresponds to theidattribute in the Camunda Forms JSON.java.lang.IntegergetVersion()voidsetBinding(java.lang.String binding)voidsetKey(java.lang.String key)voidsetVersion(java.lang.Integer version)java.lang.StringtoString()
-
-
-
Method Detail
-
getKey
public java.lang.String getKey()
Description copied from interface:CamundaFormRefThe key of aCamundaFormRefcorresponds to theidattribute in the Camunda Forms JSON.- Specified by:
getKeyin interfaceCamundaFormRef
-
setKey
public void setKey(java.lang.String key)
-
getBinding
public java.lang.String getBinding()
Description copied from interface:CamundaFormRefThe binding ofCamundaFormRefspecifies which version of the form to reference. Possible values are:latest,deploymentandversion(specific version value can be retrieved withCamundaFormRef.getVersion()).- Specified by:
getBindingin interfaceCamundaFormRef
-
setBinding
public void setBinding(java.lang.String binding)
-
getVersion
public java.lang.Integer getVersion()
Description copied from interface:CamundaFormRef- Specified by:
getVersionin interfaceCamundaFormRef
-
setVersion
public void setVersion(java.lang.Integer version)
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-