Example usage for java.io ObjectInputStream subclass-usage

List of usage examples for java.io ObjectInputStream subclass-usage

Introduction

In this page you can find the example usage for java.io ObjectInputStream subclass-usage.

Usage

From source file Main.java

public class Main extends ObjectInputStream {

    public Main(InputStream in) throws IOException {
        super(in);
    }

From source file Main.java

public class Main extends ObjectInputStream {

    public Main(InputStream in) throws IOException {
        super(in);
    }

From source file Main.java

public class Main extends ObjectInputStream {

    public Main(InputStream in) throws IOException {
        super(in);
    }

From source file Main.java

public class Main extends ObjectInputStream {

    public Main(InputStream in) throws IOException {
        super(in);
    }

From source file com.bitranger.parknshop.common.recommend.util.io.CustomClassLoaderObjectInputStream.java

public class CustomClassLoaderObjectInputStream extends ObjectInputStream {
    private static final Logger logger = LoggerFactory.getLogger(CustomClassLoaderObjectInputStream.class);
    private final ClassLoader classLoader;

    public CustomClassLoaderObjectInputStream(InputStream in, ClassLoader loader) throws IOException {
        super(in);

From source file com.espertech.esper.util.ObjectInputStreamWithTCCL.java

public class ObjectInputStreamWithTCCL extends ObjectInputStream {

    private static Log log = LogFactory.getLog(ObjectInputStreamWithTCCL.class);

    public ObjectInputStreamWithTCCL(InputStream input) throws IOException {
        super(input);

From source file org.apache.batchee.container.util.TCCLObjectInputStream.java

public class TCCLObjectInputStream extends ObjectInputStream {
    private static final BlacklistClassResolver BLACKLIST_CLASSES = new BlacklistClassResolver(
            toArray(System.getProperty("batchee.serialization.class.blacklist",
                    "org.codehaus.groovy.runtime.,org.apache.commons.collections.functors.,org.apache.xalan")),
            toArray(System.getProperty("batchee.serialization.class.whitelist")));

From source file org.grouplens.lenskit.util.io.CustomClassLoaderObjectInputStream.java

/**
 * Object input stream that uses a custom class loader.
 *
 * @author <a href="http://www.grouplens.org">GroupLens Research</a>
 */
public class CustomClassLoaderObjectInputStream extends ObjectInputStream {

From source file org.apache.openejb.client.EjbObjectInputStream.java

/**
 * @version $Rev$ $Date$
 */
public class EjbObjectInputStream extends ObjectInputStream {
    private static final AtomicReference<BlacklistClassResolver> RESOLVER_ATOMIC_REFERENCE = new AtomicReference<>(
            new BlacklistClassResolver());

From source file org.lenskit.util.io.CustomClassLoaderObjectInputStream.java

/**
 * Object input stream that uses a custom class loader.
 *
 * @author <a href="http://www.grouplens.org">GroupLens Research</a>
 */
public class CustomClassLoaderObjectInputStream extends ObjectInputStream {