1 7 package org.jboss.remoting.byvalue; 8 9 import java.io.Externalizable ; 10 import java.io.IOException ; 11 import java.io.ObjectInput ; 12 import java.io.ObjectOutput ; 13 14 17 public class ByValuePayload implements Externalizable  18 { 19 private boolean hasBeenMarshalled = false; 20 21 22 public boolean wasMarshalled() 23 { 24 return hasBeenMarshalled; 25 } 26 27 28 40 public void readExternal(ObjectInput in) throws IOException , ClassNotFoundException  41 { 42 hasBeenMarshalled = true; 43 } 44 45 59 public void writeExternal(ObjectOutput out) throws IOException  60 { 61 } 63 } 64 | Popular Tags |