Package | Description |
---|---|
org.apache.commons.io.serialization |
This package provides a framework for controlling the deserialization of classes.
|
Modifier and Type | Method and Description |
---|---|
ValidatingObjectInputStream |
ValidatingObjectInputStream.accept(Class<?>... classes)
Accept the specified classes 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.accept(Pattern pattern)
Accept class names that match the supplied pattern for
deserialization, unless they are otherwise rejected.
|
ValidatingObjectInputStream |
ValidatingObjectInputStream.accept(String... patterns)
Accept the wildcard specified classes for deserialization,
unless they are otherwise rejected.
|
ValidatingObjectInputStream |
ValidatingObjectInputStream.reject(Class<?>... classes)
Reject the specified classes 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.
|
ValidatingObjectInputStream |
ValidatingObjectInputStream.reject(Pattern pattern)
Reject class names that match the supplied pattern for
deserialization, even if they are otherwise accepted.
|
ValidatingObjectInputStream |
ValidatingObjectInputStream.reject(String... patterns)
Reject the wildcard specified classes for deserialization,
even if they are otherwise accepted.
|
Copyright © 2002–2017 The Apache Software Foundation. All rights reserved.