nl.vpro.domain.constraint.SimplePredicateTestResult 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 5.11
*/
@JsonTypeName("simple")
public class SimplePredicateTestResult extends PredicateTestResult {
SimplePredicateTestResult() {
}
SimplePredicateTestResult(DisplayablePredicate> constraint, Object value, boolean applies, List bundleKey) {
super(constraint, value, applies, bundleKey);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy