1 45 package org.openejb.client; 46 47 import java.io.Externalizable ; 48 import java.io.IOException ; 49 import java.io.ObjectInput ; 50 import java.io.ObjectOutput ; 51 52 57 public interface Response extends Externalizable , ResponseCodes { 58 59 71 public void readExternal(ObjectInput in) throws IOException ,ClassNotFoundException ; 72 73 88 public void writeExternal(ObjectOutput out) throws IOException ; 89 } 90 91 92 | Popular Tags |