ContactAddressEntry.java
872 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
package fi.insomnia.bortal.verkkomaksutfi;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
@XmlAccessorType(XmlAccessType.FIELD)
public class ContactAddressEntry {
private String street;
private String postalCode;
private String postalOffice;
private String country = "FI";
public String getStreet() {
return street;
}
public void setStreet(String street) {
this.street = street;
}
public String getPostalCode() {
return postalCode;
}
public void setPostalCode(String postalCode) {
this.postalCode = postalCode;
}
public String getPostalOffice() {
return postalOffice;
}
public void setPostalOffice(String postalOffice) {
this.postalOffice = postalOffice;
}
public String getCountry() {
return country;
}
public void setCountry(String country) {
this.country = country;
}
}