nl.vpro.domain.constraint.AndPredicateTestResult 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 com.fasterxml.jackson.annotation.JsonTypeName;
/**
* @author Michiel Meeuwissen
* @since 4.8
*/
@JsonTypeName("and")
public class AndPredicateTestResult extends BooleanPredicateTestResult {
public AndPredicateTestResult(DisplayablePredicate> predicate, Object value, boolean b, List predicates) {
super(predicate, value, b, predicate.getDefaultBundleKey(), predicates);
}
protected AndPredicateTestResult() {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy