1 7 package org.jboss.cache.pojo.test; 8 9 16 @org.jboss.cache.pojo.annotation.Replicable 18 public class NetworkAdmin 19 { 20 String id_; 21 22 public String getId() 23 { 24 return id_; 25 } 26 27 public void setId(String id) 28 { 29 id_ = id; 30 } 31 32 public String toString() 33 { 34 StringBuffer sb = new StringBuffer (); 35 sb.append(" id = ").append(getId()); 36 return sb.toString(); 37 } 38 39 } 40 | Popular Tags |