All Downloads are FREE. Search and download functionalities are using the official Maven repository.

eu.xenit.apix.properties.PropertyConstraintDefinition Maven / Gradle / Ivy

There is a newer version: 4.1.2
Show newest version
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