summaryrefslogtreecommitdiffstats
path: root/Dozentenmodulserver/src/Models/User.java
blob: c533d6fa7ccab2cf51184a51a1f57bc9bf750a9b (plain) (blame)
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
package Models;

import java.io.Serializable;

@SuppressWarnings("serial")
public class User implements Serializable {

	private String username;
	private String pass;
	private String path;
	public String getPath() {
		return path;
	}
	public void setPath(String path) {
		this.path = path;
	}
	public String getUsername() {
		return username;
	}
	public void setUsername(String username) {
		this.username = username;
	}
	public String getPass() {
		return pass;
	}
	public void setPass(String pass) {
		this.pass = pass;
	}
}