comparison flys-client/src/main/java/de/intevation/flys/client/shared/model/ContactInformation.java @ 1409:ec6e4dad1279

Read and display all FLYS relevant information of Capabilities documents. flys-client/trunk@3296 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Ingo Weinzierl <ingo.weinzierl@intevation.de>
date Mon, 21 Nov 2011 18:15:44 +0000
parents
children
comparison
equal deleted inserted replaced
1408:5b5a20e4c4e5 1409:ec6e4dad1279
1 package de.intevation.flys.client.shared.model;
2
3 import java.io.Serializable;
4
5
6 public class ContactInformation implements Serializable {
7
8 protected String person;
9 protected String organization;
10 protected String address;
11 protected String city;
12 protected String postcode;
13 protected String phone;
14 protected String email;
15
16
17 public ContactInformation() {
18 }
19
20
21 public void setPerson(String person) {
22 this.person = person;
23 }
24
25
26 public String getPerson() {
27 return person;
28 }
29
30
31 public void setOrganization(String organization) {
32 this.organization = organization;
33 }
34
35
36 public String getOrganization() {
37 return organization;
38 }
39
40
41 public void setAddress(String address) {
42 this.address = address;
43 }
44
45
46 public String getAddress() {
47 return address;
48 }
49
50
51 public void setCity(String city) {
52 this.city = city;
53 }
54
55
56 public String getCity() {
57 return city;
58 }
59
60
61 public void setPostcode(String postcode) {
62 this.postcode = postcode;
63 }
64
65
66 public String getPostcode() {
67 return postcode;
68 }
69
70
71 public void setPhone(String phone) {
72 this.phone = phone;
73 }
74
75
76 public String getPhone() {
77 return phone;
78 }
79
80
81 public void setEmail(String email) {
82 this.email = email;
83 }
84
85
86 public String getEmail() {
87 return email;
88 }
89 }
90 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org