01: package org.osbl.identity.model;
02:
03: public class Address {
04: Long id;
05:
06: String street;
07: String postcode;
08: String city;
09:
10: public Long getId() {
11: return id;
12: }
13:
14: public void setId(Long id) {
15: this .id = id;
16: }
17:
18: public String getStreet() {
19: return street;
20: }
21:
22: public void setStreet(String street) {
23: this .street = street;
24: }
25:
26: public String getPostcode() {
27: return postcode;
28: }
29:
30: public void setPostcode(String postcode) {
31: this .postcode = postcode;
32: }
33:
34: public String getCity() {
35: return city;
36: }
37:
38: public void setCity(String city) {
39: this.city = city;
40: }
41: }
|