Subversion Repositories Integrator Subversion

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 espaco 1
/*
2
 * Copyright 2009-2014 PrimeTek.
3
 *
4
 * Licensed under the Apache License, Version 2.0 (the "License");
5
 * you may not use this file except in compliance with the License.
6
 * You may obtain a copy of the License at
7
 *
8
 * http://www.apache.org/licenses/LICENSE-2.0
9
 *
10
 * Unless required by applicable law or agreed to in writing, software
11
 * distributed under the License is distributed on an "AS IS" BASIS,
12
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
 * See the License for the specific language governing permissions and
14
 * limitations under the License.
15
 */
16
package org.primefaces.ultima.domain;
17
 
18
import java.io.Serializable;
19
 
20
public class User implements Serializable {
21
 
22
        private String firstname;
23
 
24
        private String lastname;
25
 
26
        private Integer age;
27
 
28
        private String street;
29
 
30
        private String city;
31
 
32
        private String postalCode;
33
 
34
        private String info;
35
 
36
        private String email;
37
 
38
        private String phone;
39
 
40
        public String getFirstname() {
41
                return firstname;
42
        }
43
 
44
        public void setFirstname(String firstname) {
45
                this.firstname = firstname;
46
        }
47
 
48
        public String getLastname() {
49
                return lastname;
50
        }
51
 
52
        public void setLastname(String lastname) {
53
                this.lastname = lastname;
54
        }
55
 
56
        public Integer getAge() {
57
                return age;
58
        }
59
 
60
        public void setAge(Integer age) {
61
                this.age = age;
62
        }
63
 
64
        public String getStreet() {
65
                return street;
66
        }
67
 
68
        public void setStreet(String street) {
69
                this.street = street;
70
        }
71
 
72
        public String getCity() {
73
                return city;
74
        }
75
 
76
        public void setCity(String city) {
77
                this.city = city;
78
        }
79
 
80
        public String getPostalCode() {
81
                return postalCode;
82
        }
83
 
84
        public void setPostalCode(String postalCode) {
85
                this.postalCode = postalCode;
86
        }
87
 
88
        public String getInfo() {
89
                return info;
90
        }
91
 
92
        public void setInfo(String info) {
93
                this.info = info;
94
        }
95
 
96
        public String getEmail() {
97
                return email;
98
        }
99
 
100
        public void setEmail(String email) {
101
                this.email = email;
102
        }
103
 
104
        public String getPhone() {
105
                return phone;
106
        }
107
 
108
        public void setPhone(String phone) {
109
                this.phone = phone;
110
        }
111
}