eu.xenit.apix.properties.PropertyConstraintDefinition Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of apix-interface Show documentation
Show all versions of apix-interface Show documentation
Xenit API-X Java interface
package eu.xenit.apix.properties;
import java.util.Map;
/**
* Datastructure that represents a constraint of a property. constraintType: The type of constraint. parameters: String
* to Object map which contains more information related to the constraint.
*/
public class PropertyConstraintDefinition {
private String constraintType;
private Map parameters;
public Map getParameters() {
return parameters;
}
public void setParameters(Map parameters) {
this.parameters = parameters;
}
public String getConstraintType() {
return constraintType;
}
public void setConstraintType(String constraintType) {
this.constraintType = constraintType;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy