1 22 package org.jboss.test.webservice.jbws71; 23 24 25 27 public class UserType implements java.io.Serializable 28 { 29 static final long serialVersionUID = -3592211478556226752L; 30 private String msg; 31 32 public UserType() 33 { 34 this(null); 35 } 36 37 public UserType(String msg) 38 { 39 this.msg = msg; 40 } 41 42 public String getMsg() 43 { 44 return this.msg; 45 } 46 47 public void setMsg(String msg) 48 { 49 this.msg = msg; 50 } 51 52 public boolean equals(Object o) 53 { 54 if (this == o) return true; 55 if (!(o instanceof UserType)) return false; 56 57 final UserType userType = (UserType)o; 58 59 if (msg != null ? !msg.equals(userType.msg) : userType.msg != null) return false; 60 61 return true; 62 } 63 64 public int hashCode() 65 { 66 return (msg != null ? msg.hashCode() : 0); 67 } 68 69 public String toString() 70 { 71 return "[msg=" + msg + "]"; 72 } 73 } 74 | Popular Tags |