1 6 package org.jboss.test.webservice.jbws663; 7 8 9 public class CountryCode { 10 protected java.lang.String country; 11 protected java.lang.String code; 12 13 public CountryCode() { 14 } 15 16 public CountryCode(java.lang.String country, java.lang.String code) { 17 this.country = country; 18 this.code = code; 19 } 20 21 public java.lang.String getCountry() { 22 return country; 23 } 24 25 public void setCountry(java.lang.String country) { 26 this.country = country; 27 } 28 29 public java.lang.String getCode() { 30 return code; 31 } 32 33 public void setCode(java.lang.String code) { 34 this.code = code; 35 } 36 } 37 | Popular Tags |