Package com.ovea.jetty.session.serializer.jboss.serial.io

Examples of com.ovea.jetty.session.serializer.jboss.serial.io.JBossObjectOutputStream


* @author Mathieu Carbou (mathieu.carbou@gmail.com)
*/
public final class JBossSerializer extends BinarySerializer {
    @Override
    protected void write(OutputStream out, Object o) throws Exception {
        JBossObjectOutputStream oos = new JBossObjectOutputStream(out);
        oos.writeObject(o);
    }
View Full Code Here

TOP

Related Classes of com.ovea.jetty.session.serializer.jboss.serial.io.JBossObjectOutputStream

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.