1 23 24 package com.sun.ejb.spi.io; 25 26 import java.io.*; 27 import java.security.*; 28 import java.rmi.*; 29 import javax.ejb.*; 30 import javax.naming.*; 31 32 import java.util.logging.*; 33 import com.sun.logging.*; 34 35 43 public interface J2EEObjectStreamFactory { 44 45 55 public ObjectOutputStream createObjectOutputStream(OutputStream os, 56 boolean replaceObject, NonSerializableObjectHandler handler) 57 throws IOException; 58 59 67 public ObjectInputStream createObjectInputStream(InputStream is, 68 boolean resolveObject, ClassLoader loader) 69 throws Exception ; 70 71 } 72 | Popular Tags |