Home
last modified time | relevance | path

Searched refs:BasicPolymorphicTypeValidator (Results 1 – 4 of 4) sorted by relevance

/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/jsontype/vld/
DBasicPTVTest.java9 import com.fasterxml.jackson.databind.jsontype.BasicPolymorphicTypeValidator;
83 final PolymorphicTypeValidator ptv = BasicPolymorphicTypeValidator.builder() in testAllowByBaseClass()
107 .activateDefaultTyping(BasicPolymorphicTypeValidator.builder() in testAllowByBaseClass()
118 final PolymorphicTypeValidator ptv = BasicPolymorphicTypeValidator.builder() in testAllowByBaseClassPrefix()
143 final PolymorphicTypeValidator ptv = BasicPolymorphicTypeValidator.builder() in testAllowByBaseClassPattern()
168 final PolymorphicTypeValidator ptv = BasicPolymorphicTypeValidator.builder() in testDenyByBaseClass()
195 final PolymorphicTypeValidator ptv = BasicPolymorphicTypeValidator.builder() in testAllowBySubClass()
219 final PolymorphicTypeValidator ptv = BasicPolymorphicTypeValidator.builder() in testAllowBySubClassPrefix()
243 final PolymorphicTypeValidator ptv = BasicPolymorphicTypeValidator.builder() in testAllowBySubClassPattern()
DCustomPTVMatchersTest.java10 import com.fasterxml.jackson.databind.jsontype.BasicPolymorphicTypeValidator;
50 PolymorphicTypeValidator ptv = BasicPolymorphicTypeValidator.builder() in testCustomBaseMatchers()
51 .allowIfBaseType(new BasicPolymorphicTypeValidator.TypeMatcher() { in testCustomBaseMatchers()
82 PolymorphicTypeValidator ptv = BasicPolymorphicTypeValidator.builder() in testCustomSubtypeMatchers()
83 .allowIfSubType(new BasicPolymorphicTypeValidator.TypeMatcher() { in testCustomSubtypeMatchers()
DBasicPTVWithArraysTest.java6 import com.fasterxml.jackson.databind.jsontype.BasicPolymorphicTypeValidator;
51 PolymorphicTypeValidator ptv = BasicPolymorphicTypeValidator.builder() in testAllowBySubClassInArray()
70 ptv = BasicPolymorphicTypeValidator.builder() in testAllowBySubClassInArray()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/jsontype/
DBasicPolymorphicTypeValidator.java24 public class BasicPolymorphicTypeValidator class
318 public BasicPolymorphicTypeValidator build() {
319 return new BasicPolymorphicTypeValidator(_invalidBaseTypes,
382 protected BasicPolymorphicTypeValidator(Set<Class<?>> invalidBaseTypes,