ValidatingObjectInputStream |
ValidatingObjectInputStream.accept(java.lang.Class<?>... classes) |
Accepts the specified classes for deserialization, unless they are otherwise rejected.
|
ValidatingObjectInputStream |
ValidatingObjectInputStream.accept(java.lang.String... patterns) |
Accepts the wildcard specified classes for deserialization, unless they are otherwise rejected.
|
ValidatingObjectInputStream |
ValidatingObjectInputStream.accept(java.util.regex.Pattern pattern) |
Accepts class names that match the supplied pattern 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.Builder.get() |
|
ValidatingObjectInputStream |
ValidatingObjectInputStream.reject(java.lang.Class<?>... classes) |
Rejects the specified classes for deserialization, even if they are otherwise accepted.
|
ValidatingObjectInputStream |
ValidatingObjectInputStream.reject(java.lang.String... patterns) |
Rejects the wildcard specified classes for deserialization, even if they are otherwise accepted.
|
ValidatingObjectInputStream |
ValidatingObjectInputStream.reject(java.util.regex.Pattern pattern) |
Rejects class names that match the supplied pattern 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.
|