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