Package afcl.functions.objects
Class PropertyConstraint
- java.lang.Object
-
- afcl.functions.objects.PropertyConstraint
-
public class PropertyConstraint extends java.lang.Object
This 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.String
getName()
Getter and Setterjava.lang.String
getValue()
void
setAdditionalProperty(java.lang.String name, java.lang.Object value)
void
setName(java.lang.String name)
void
setValue(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)
-
-