1 23 package fr.dyade.aaa.agent; 24 25 import java.io.Serializable ; 26 import org.jgroups.Address; 27 28 31 public class HAStateRequest implements Serializable { 32 37 private Address addr = null; 38 39 public HAStateRequest(Address addr) { 40 this.addr = addr; 41 } 42 43 public Address getAddress() { 44 return addr; 45 } 46 47 public String toString() { 48 StringBuffer buf = new StringBuffer (); 49 50 buf.append("(HAStateRequest(").append(super.toString()); 51 buf.append(",addr=").append(addr).append("))"); 52 53 return buf.toString(); 54 } 55 } 56 | Popular Tags |