nl.vpro.domain.constraint.BooleanPredicateTestResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api-domain Show documentation
Show all versions of api-domain Show documentation
Contains the objects used by the Frontend API, like forms and result objects
package nl.vpro.domain.constraint;
import java.util.List;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlElementWrapper;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* @author Michiel Meeuwissen
* @since 4.8
*/
public abstract class BooleanPredicateTestResult extends PredicateTestResult {
@XmlElementWrapper
@XmlElement(name = "clause")
@JsonProperty("clauses")
private List clauses;
BooleanPredicateTestResult() {
}
BooleanPredicateTestResult(DisplayablePredicate> constraint, Object value, boolean applies, List bundleKey, List predicateTestResults) {
super(constraint, value, applies, bundleKey);
this.clauses = predicateTestResults;
}
public List getClauses() {
return clauses;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy