summaryrefslogtreecommitdiffstats
path: root/Dozentenmodul/src/models/SessionData.java
blob: 50d7b00b6971a81326a03d9c4dabde73cacd473a (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
30
31
32
33
34
35
36
37
package models;

public class SessionData {
	
	private String sessionID;
	private String authToken;
	private String serverAdress;
	private String role;
	public static SessionData session =new SessionData();
	
	public String getSessionID() {
		return sessionID;
	}
	public void setSessionID(String sessionID) {
		this.sessionID = sessionID;
	}
	public String getAuthToken() {
		return authToken;
	}
	public void setAuthToken(String authToken) {
		this.authToken = authToken;
	}
	public String getServerAdress() {
		return serverAdress;
	}
	public void setServerAdress(String serverAdress) {
		this.serverAdress = serverAdress;
	}
	public String getRole() {
		return role;
	}
	public void setRole(String role) {
		this.role = role;
	}
	
	
}