Package | Description |
---|---|
org.apache.commons.io.serialization |
This package provides a framework for controlling the deserialization of classes.
|
Modifier and Type | Class and Description |
---|---|
(package private) class |
FullClassNameMatcher
A
ClassNameMatcher that matches on full class names. |
(package private) class |
RegexpClassNameMatcher
A
ClassNameMatcher that uses regular expressions. |
(package private) class |
WildcardClassNameMatcher
A
ClassNameMatcher that uses simplified regular expressions
provided by FilenameUtils.wildcardMatch |
Modifier and Type | Field and Description |
---|---|
private java.util.List<ClassNameMatcher> |
ValidatingObjectInputStream.acceptMatchers |
private java.util.List<ClassNameMatcher> |
ValidatingObjectInputStream.rejectMatchers |
Modifier and Type | Method and 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.
|