Git Repository Public Repository

RRRRHHHH_Code

URLs

Copy to Clipboard
 
fca164613c536b71c093e6104901cd35ab8522f0
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 domain;

import java.io.Serializable;

public class Client implements Serializable{

	/**
	 * 
	 */
	private static final long serialVersionUID = 1L;
	private String name;
	private String mailAccount;
	private String telephone;

	public Client(String name, String mailAccount, String telephone) {
		super();
		this.name = name;
		this.mailAccount = mailAccount;
		this.telephone = telephone;
	}

	public String getName() {
		return name;
	}

	public void setName(String name) {
		this.name = name;
	}

	public String getMailAccount() {
		return mailAccount;
	}

	public void setMailAccount(String mailAccount) {
		this.mailAccount = mailAccount;
	}

	public String getTelephone() {
		return telephone;
	}

	public void setTelephone(String telephone) {
		this.telephone = telephone;
	}

}

Commits for RRRRHHHH_CoderuralHouses/src/domain/Client.java

Diff revisions: vs.
Revision Author Commited Message
fca164 ... Diff Diff camjan Tue 19 May, 2015 14:51:35 +0000

Some improvements done, owner deletion started, some bugs remain there

7bf57b ... camjan Sun 17 May, 2015 11:59:22 +0000

Possibility of registering new owners added