summaryrefslogtreecommitdiffstats
path: root/src/main/java/edu/kit/scc/dei/ecplean/ECPAuthenticationInfo.java
blob: 0fc8b9022425f5bec4812aec1b6039df42384640 (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
38
39
40
41
42
43
44
45
46
47
package edu.kit.scc.dei.ecplean;

import java.net.URI;

public class ECPAuthenticationInfo {

	private String username;
	private String password;
	private URI idpEcpEndpoint;
	private URI spUrl;
	private ECPAuthState authState;
	
	public ECPAuthenticationInfo(String username, String password,
			URI idpEcpEndpoint, URI spUrl) {
		super();
		this.username = username;
		this.password = password;
		this.idpEcpEndpoint = idpEcpEndpoint;
		this.spUrl = spUrl;
	}

	public String getUsername() {
		return username;
	}
	
	public String getPassword() {
		return password;
	}
	
	public URI getIdpEcpEndpoint() {
		return idpEcpEndpoint;
	}
	
	public URI getSpUrl() {
		return spUrl;
	}

	public ECPAuthState getAuthState() {
		return authState;
	}

	public void setAuthState(ECPAuthState authState) {
		this.authState = authState;
	}

	
}