Merge branch 'master' of ssh://xp-dev.com/RRRRHHHH_Code
[RRRRHHHH_Code] / ruralHouses / src / domain / Client.java
1 package domain;
2
3 import java.io.Serializable;
4
5 public class Client  implements Serializable{
6
7         /**
8          * 
9          */
10         private static final long serialVersionUID = 1L;
11         private String name;
12         private String mailAccount;
13         private String telephone;
14
15         public Client(String name, String mailAccount, String telephone) {
16                 super();
17                 this.name = name;
18                 this.mailAccount = mailAccount;
19                 this.telephone = telephone;
20         }
21
22         public String getName() {
23                 return name;
24         }
25
26         public void setName(String name) {
27                 this.name = name;
28         }
29
30         public String getMailAccount() {
31                 return mailAccount;
32         }
33
34         public void setMailAccount(String mailAccount) {
35                 this.mailAccount = mailAccount;
36         }
37
38         public String getTelephone() {
39                 return telephone;
40         }
41
42         public void setTelephone(String telephone) {
43                 this.telephone = telephone;
44         }
45
46 }