1 package org.jgroups.tests.adaptudp;2 3 import java.io.Serializable ;4 5 /**6 * @author Bela Ban Jan 117 * @author 20048 * @version $Id: Request.java,v 1.3 2004/02/20 22:50:25 belaban Exp $9 */10 public class Request implements Serializable {11 final static int DISCOVERY_REQ=1;12 final static int NEW_MEMBER=2;13 final static int DATA=3;14 15 int type=0;16 Object arg=null;17 18 Request(int type, Object arg) {19 this.type=type;20 this.arg=arg;21 }22 23 }24