aboutsummaryrefslogtreecommitdiff
path: root/src/github/daneren2005/dsub/domain/User.java
blob: 052985b369df51239778be294f6f40d1b42ae2e7 (plain)
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
/*
  This file is part of Subsonic.
	Subsonic is free software: you can redistribute it and/or modify
	it under the terms of the GNU General Public License as published by
	the Free Software Foundation, either version 3 of the License, or
	(at your option) any later version.
	Subsonic is distributed in the hope that it will be useful,
	but WITHOUT ANY WARRANTY; without even the implied warranty of
	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
	GNU General Public License for more details.
	You should have received a copy of the GNU General Public License
	along with Subsonic. If not, see <http://www.gnu.org/licenses/>.
	Copyright 2014 (C) Scott Jackson
*/

package github.daneren2005.dsub.domain;

import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;

public class User implements Serializable {
	public static final String SCROBBLING = "scrobblingEnabled";
	public static final String ADMIN = "adminRole";
	public static final String SETTINGS = "settingsRole";
	public static final String DOWNLOAD = "downloadRole";
	public static final String UPLOAD = "uploadRole";
	public static final String COVERART = "coverArtRole";
	public static final String COMMENT = "commentRole";
	public static final String PODCAST = "podcastRole";
	public static final String STREAM = "streamRole";
	public static final String JUKEBOX = "jukeboxRole";
	public static final String SHARE = "shareRole";
	public static final List<String> ROLES = new ArrayList<String>();
	
	static {
		ROLES.add(scrobbling);
		ROLES.add(ADMIN);
		ROLES.add(SETTINGS);
		ROLES.add(DOWNLOAD);
		ROLES.add(UPLOAD);
		ROLES.add(COVERART);
		ROLES.add(COMMENT);
		ROLES.add(PODCAST);
		ROLES.add(STREAM);
		ROLES.add(JUKEBOX);
		ROLES.add(SHARE);
	}
	
	private String username;
	private String password;
	private String email;

	private List<Setting> settings = new ArrayList<Setting>();

	public User() {

	}

	public String getUsername() {
		return username;
	}

	public void setUsername(String username) {
		this.username = username;
	}

	public String getPassword() {
		return password;
	}

	public void setPassword(String password) {
		this.password = password;
	}

	public String getEmail() {
		return email;
	}

	public void setEmail(String email) {
		this.email = email;
	}

	public List<Setting> getSettings() {
		return settings;
	}
	public void addSetting(String name, Boolean value) {
		settings.add(new Setting(name, value));
	}

	public static class Setting implements Serializable {
		String name;
		Boolean value;

		public Setting() {
			
		}
		public Setting(String name, Boolean value) {
			this.name = name;
			this.value = value;
		}

		public String getName() {
			return name;
		}
		public Boolean getValue() {
			return value;
		}
		public void setValue(Boolean value) {
			this.value = value;
		}
	}
}