Uses of Interface
org.apache.commons.io.serialization.ClassNameMatcher
-
Packages that use ClassNameMatcher Package Description org.apache.commons.io.serialization This package provides a framework for controlling the deserialization of classes. -
-
Uses of ClassNameMatcher in org.apache.commons.io.serialization
Classes in org.apache.commons.io.serialization that implement ClassNameMatcher Modifier and Type Class Description (package private) class
FullClassNameMatcher
AClassNameMatcher
that matches on full class names.(package private) class
RegexpClassNameMatcher
AClassNameMatcher
that uses regular expressions.(package private) class
WildcardClassNameMatcher
AClassNameMatcher
that uses simplified regular expressions provided byFilenameUtils.wildcardMatch
Fields in org.apache.commons.io.serialization with type parameters of type ClassNameMatcher Modifier and Type Field Description private java.util.List<ClassNameMatcher>
ValidatingObjectInputStream. acceptMatchers
private java.util.List<ClassNameMatcher>
ValidatingObjectInputStream. rejectMatchers
Methods in org.apache.commons.io.serialization with parameters of type ClassNameMatcher Modifier and Type Method Description ValidatingObjectInputStream
ValidatingObjectInputStream. accept(ClassNameMatcher m)
Accept class names where the supplied ClassNameMatcher matches for deserialization, unless they are otherwise rejected.ValidatingObjectInputStream
ValidatingObjectInputStream. reject(ClassNameMatcher m)
Reject class names where the supplied ClassNameMatcher matches for deserialization, even if they are otherwise accepted.
-