| Package | Description |
|---|---|
| org.apache.commons.io.serialization |
Provides a framework for controlling the deserialization of classes.
|
| Modifier and Type | Method and Description |
|---|---|
ValidatingObjectInputStream |
ValidatingObjectInputStream.accept(Class<?>... classes)
Accepts the specified classes for deserialization, unless they are otherwise rejected.
|
ValidatingObjectInputStream |
ValidatingObjectInputStream.accept(ClassNameMatcher matcher)
Accepts class names where the supplied ClassNameMatcher matches for deserialization, unless they are otherwise rejected.
|
ValidatingObjectInputStream |
ValidatingObjectInputStream.accept(Pattern pattern)
Accepts class names that match the supplied pattern for deserialization, unless they are otherwise rejected.
|
ValidatingObjectInputStream |
ValidatingObjectInputStream.accept(String... patterns)
Accepts the wildcard specified classes for deserialization, unless they are otherwise rejected.
|
ValidatingObjectInputStream |
ValidatingObjectInputStream.Builder.get()
Builds a new
ValidatingObjectInputStream. |
ValidatingObjectInputStream |
ValidatingObjectInputStream.reject(Class<?>... classes)
Rejects the specified classes for deserialization, even if they are otherwise accepted.
|
ValidatingObjectInputStream |
ValidatingObjectInputStream.reject(ClassNameMatcher matcher)
Rejects class names where the supplied ClassNameMatcher matches for deserialization, even if they are otherwise accepted.
|
ValidatingObjectInputStream |
ValidatingObjectInputStream.reject(Pattern pattern)
Rejects class names that match the supplied pattern for deserialization, even if they are otherwise accepted.
|
ValidatingObjectInputStream |
ValidatingObjectInputStream.reject(String... patterns)
Rejects the wildcard specified classes for deserialization, even if they are otherwise accepted.
|