Uses of Class
org.apache.commons.io.serialization.ValidatingObjectInputStream
-
Packages that use ValidatingObjectInputStream Package Description org.apache.commons.io.serialization This package provides a framework for controlling the deserialization of classes. -
Uses of ValidatingObjectInputStream in org.apache.commons.io.serialization
Methods in org.apache.commons.io.serialization that return ValidatingObjectInputStream 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–2021 The Apache Software Foundation. All rights reserved.