1 package org.apache.ojb.otm; 2 3 17 18 import java.io.Serializable ; 19 20 public class Address implements Serializable 21 { 22 23 private int id; 24 private String country; 25 private String city; 26 private String street; 27 28 public Address() 29 { 30 } 31 32 public Address(String country, String city, String street) 33 { 34 this.country = country; 35 this.city = city; 36 this.street = street; 37 } 38 39 public int getId() 40 { 41 return id; 42 } 43 44 public void setId(int id) 45 { 46 this.id = id; 47 } 48 49 public String getCountry() 50 { 51 return country; 52 } 53 54 public void setCountry(String country) 55 { 56 this.country = country; 57 } 58 59 public String getCity() 60 { 61 return city; 62 } 63 64 public void setCity(String city) 65 { 66 this.city = city; 67 } 68 69 public String getStreet() 70 { 71 return street; 72 } 73 74 public void setStreet(String street) 75 { 76 this.street = street; 77 } 78 } 79 | Popular Tags |