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