1 /*2 * JBoss, the OpenSource J2EE webOS3 *4 * Distributable under LGPL license.5 * See terms of license at gnu.org.6 */7 package org.jboss.test.remoting.callback.pull.memory;8 9 import java.io.Serializable ;10 11 /**12 * @author <a HREF="mailto:tom@jboss.org">Tom Elrod</a>13 */14 public class TestCallback implements Serializable 15 {16 byte[] bytes = null;17 int counter = 0;18 19 public TestCallback(byte[] bytes, int counter)20 {21 this.bytes = bytes;22 this.counter = counter;23 }24 }