
nl.vpro.domain.constraint.NotPredicateTestResult 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 jakarta.xml.bind.annotation.XmlElement;
import com.fasterxml.jackson.annotation.JsonTypeName;
/**
* @author Michiel Meeuwissen
* @since 4.8
*/
@JsonTypeName("not")
public class NotPredicateTestResult extends PredicateTestResult {
private PredicateTestResult clause;
NotPredicateTestResult(DisplayablePredicate> predicate, Object value, boolean applies, PredicateTestResult predicateTestResult) {
super(predicate, value, applies, predicate.getDefaultBundleKey());
this.clause = predicateTestResult;
}
@XmlElement
public PredicateTestResult getClause() {
return clause;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy