Package com.sun.ejb.spi.io

Examples of com.sun.ejb.spi.io.NonSerializableObjectHandler


   
    public ObjectOutputStream createObjectOutputStream(
        final OutputStream os,
        final boolean replaceObject) throws IOException {
        return IOUtils.createObjectOutputStream(os, replaceObject,
            new NonSerializableObjectHandler() {
                public Object handleNonSerializableObject(Object obj) {
                    return obj;
                }
            }           
        );
View Full Code Here


        ByteArrayOutputStream bos = new ByteArrayOutputStream();
        ObjectOutputStream oos = null;
        try {
            oos = _streamFactory.createObjectOutputStream(
                bos, replaceObject,
                new NonSerializableObjectHandler() {
                    public Object handleNonSerializableObject(Object obj) {
                        return obj;
                    }
                });
View Full Code Here

TOP

Related Classes of com.sun.ejb.spi.io.NonSerializableObjectHandler

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.