Uses of Class
org.apache.commons.io.serialization.ObjectStreamClassPredicate
Package
Description
Provides a framework for controlling the deserialization of classes.
-
Uses of ObjectStreamClassPredicate 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.ObjectStreamClassPredicate.accept
(ClassNameMatcher matcher) Accepts class names where the supplied ClassNameMatcher matches for deserialization, unless they are otherwise rejected.ValidatingObjectInputStream.Builder.getPredicate()
Gets the predicate.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.ObjectStreamClassPredicate.reject
(ClassNameMatcher m) Rejects class names where the supplied ClassNameMatcher matches for deserialization, even if they are otherwise accepted.Modifier and TypeMethodDescriptionValidatingObjectInputStream.Builder.setPredicate
(ObjectStreamClassPredicate predicate) Sets the predicate, null resets to an empty new ObjectStreamClassPredicate.