1 package org.springframework.samples.countries; 2 3 6 public class Country { 7 8 private String code; 9 private String name; 10 11 public Country() { 12 } 13 14 public Country(String code, String name) { 15 super(); 16 this.code = code; 17 this.name = name; 18 } 19 20 public void setCode(String code) { 21 this.code = code; 22 } 23 24 public String getCode() { 25 return code; 26 } 27 28 public void setName(String name) { 29 this.name = name; 30 } 31 32 public String getName() { 33 return name; 34 } 35 36 } 37 | Popular Tags |