nl.vpro.domain.constraint.OrPredicateTestResult 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("or")
public class OrPredicateTestResult extends BooleanPredicateTestResult {
OrPredicateTestResult() {
}
OrPredicateTestResult(DisplayablePredicate> predicate, Object value, boolean applies, List predicateTestResultList) {
super(predicate, value, applies, predicate.getDefaultBundleKey(), predicateTestResultList);
}
OrPredicateTestResult(DisplayablePredicate> predicate, Object value, boolean applies, List bundleKey, List predicateTestResultList) {
super(predicate, value, applies, bundleKey, predicateTestResultList);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy