Uses of Class
org.apache.commons.io.serialization.ValidatingObjectInputStream.Builder
Package
Description
Provides a framework for controlling the deserialization of classes.
-
Uses of ValidatingObjectInputStream.Builder in org.apache.commons.io.serialization
Modifier and TypeMethodDescriptionAccepts the specified classes for deserialization, unless they are otherwise rejected.Accepts the wildcard specified classes for deserialization, unless they are otherwise rejected.Accepts class names that match the supplied pattern for deserialization, unless they are otherwise rejected.ValidatingObjectInputStream.Builder.accept
(ClassNameMatcher matcher) Accepts class names where the supplied ClassNameMatcher matches for deserialization, unless they are otherwise rejected.ValidatingObjectInputStream.builder()
Constructs a newValidatingObjectInputStream.Builder
.Rejects the specified classes for deserialization, even if they are otherwise accepted.Rejects the wildcard specified classes for deserialization, even if they are otherwise accepted.Rejects class names that match the supplied pattern for deserialization, even if they are otherwise accepted.ValidatingObjectInputStream.Builder.reject
(ClassNameMatcher matcher) Rejects class names where the supplied ClassNameMatcher matches for deserialization, even if they are otherwise accepted.ValidatingObjectInputStream.Builder.setPredicate
(ObjectStreamClassPredicate predicate) Sets the predicate, null resets to an empty new ObjectStreamClassPredicate.