Git Repository Public Repository

RRRRHHHH_Code

URLs

Copy to Clipboard
 
7999499eee1fc932aeef9a813206d37313d7a753
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
package domain;

import java.io.Serializable;
import java.util.Arrays;



public class Account implements Serializable {

	/**
	 * 
	 */
	private static final long serialVersionUID = 1L;
	

	private byte[] username;
	private byte[] password;
	private byte[] salt;


	private Owner owner;
	private boolean admin = false;

	
	

	public byte[] getUsername() {
		return username;
	}

	public byte[] getPassword() {
		return password;
	}

	public Owner getOwner() {
		return owner;
	}

	public boolean getAdmin() {
		return admin;
	}

	public void setAdmin(boolean admin) {
		this.admin = admin;
	}

	public byte[] getSalt() {
		return salt;
	}

	public void setSalt(byte[] salt) {
		this.salt = salt;
	}
	

	@Override
	public boolean equals(Object obj) {
		if (this == obj)
			return true;
		if (obj == null)
			return false;
		if (getClass() != obj.getClass())
			return false;
		Account other = (Account) obj;
		if (!Arrays.equals(password, other.password))
			return false;
		if (!Arrays.equals(username, other.username))
			return false;
		return true;
	}

}

Commits for RRRRHHHH_CoderuralHouses client/src/domain/Account.java

Diff revisions: vs.
Revision Author Commited Message
799949 ... Diff Diff epinzolas001 Mon 18 May, 2015 11:12:36 +0000

debugging

4f8bcc ... epinzolas001 Mon 18 May, 2015 09:49:54 +0000

Merge conflicts solutioned