1 package org.jboss.cache.marshall;2 3 import java.io.IOException ;4 import java.io.ObjectInputStream ;5 import java.io.ObjectOutputStream ;6 import java.io.OutputStream ;7 8 /**9 * @author Clebert Suconic10 * @since 1.4.111 */12 public interface ObjectStreamFactory13 {14 public ObjectOutputStream createObjectOutputStream(OutputStream out) throws IOException ;15 16 public ObjectInputStream createObjectInputStream(byte[] bytes) throws IOException ;17 }18