ValidatingObjectInputStream |
ValidatingObjectInputStream.accept(java.lang.Class<?>... classes) |
Accept the specified classes for deserialization, unless they
are otherwise rejected.
|
ValidatingObjectInputStream |
ValidatingObjectInputStream.accept(java.lang.String... patterns) |
Accept the wildcard specified classes for deserialization,
unless they are otherwise rejected.
|
ValidatingObjectInputStream |
ValidatingObjectInputStream.accept(java.util.regex.Pattern pattern) |
Accept class names that match the supplied pattern for
deserialization, unless they are otherwise rejected.
|
ValidatingObjectInputStream |
ValidatingObjectInputStream.accept(ClassNameMatcher m) |
Accept class names where the supplied ClassNameMatcher matches for
deserialization, unless they are otherwise rejected.
|
ValidatingObjectInputStream |
ValidatingObjectInputStream.reject(java.lang.Class<?>... classes) |
Reject the specified classes for deserialization, even if they
are otherwise accepted.
|
ValidatingObjectInputStream |
ValidatingObjectInputStream.reject(java.lang.String... patterns) |
Reject the wildcard specified classes for deserialization,
even if they are otherwise accepted.
|
ValidatingObjectInputStream |
ValidatingObjectInputStream.reject(java.util.regex.Pattern pattern) |
Reject class names that match the supplied pattern for
deserialization, even if they are otherwise accepted.
|
ValidatingObjectInputStream |
ValidatingObjectInputStream.reject(ClassNameMatcher m) |
Reject class names where the supplied ClassNameMatcher matches for
deserialization, even if they are otherwise accepted.
|