Package afcl.functions.objects
Class PropertyConstraint
- java.lang.Object
-
- afcl.functions.objects.PropertyConstraint
-
public class PropertyConstraint extends java.lang.ObjectThis class describes a property or constraint which provide additional information to a workflow runtime.
-
-
Constructor Summary
Constructors Constructor Description PropertyConstraint()PropertyConstraint(java.lang.String name, java.lang.String value)Constructor for property or constraint
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.Map<java.lang.String,java.lang.Object>getAdditionalProperties()java.lang.StringgetName()Getter and Setterjava.lang.StringgetValue()voidsetAdditionalProperty(java.lang.String name, java.lang.Object value)voidsetName(java.lang.String name)voidsetValue(java.lang.String value)
-
-
-
Constructor Detail
-
PropertyConstraint
public PropertyConstraint()
-
PropertyConstraint
public PropertyConstraint(java.lang.String name, java.lang.String value)Constructor for property or constraint- Parameters:
name- Name of the property or constraintvalue- Value of the property or constraint regarding itsname
-
-
Method Detail
-
getName
public java.lang.String getName()
Getter and Setter
-
setName
public void setName(java.lang.String name)
-
getValue
public java.lang.String getValue()
-
setValue
public void setValue(java.lang.String value)
-
getAdditionalProperties
public java.util.Map<java.lang.String,java.lang.Object> getAdditionalProperties()
-
setAdditionalProperty
public void setAdditionalProperty(java.lang.String name, java.lang.Object value)
-
-