summaryrefslogtreecommitdiffstats
path: root/src/main/java/edu/kit/scc/dei/ecplean/ECPAuthenticationInfo.java
diff options
context:
space:
mode:
authorJonathan Bauer2014-11-28 17:03:40 +0100
committerJonathan Bauer2014-11-28 17:03:40 +0100
commit5b39bdf68a5a0e31313ecd2be4d1a66a65b8c6ec (patch)
treebc60303765e2d982e92a48af6322c0f4c1d810b4 /src/main/java/edu/kit/scc/dei/ecplean/ECPAuthenticationInfo.java
downloadecp-client-lean-5b39bdf68a5a0e31313ecd2be4d1a66a65b8c6ec.tar.gz
ecp-client-lean-5b39bdf68a5a0e31313ecd2be4d1a66a65b8c6ec.tar.xz
ecp-client-lean-5b39bdf68a5a0e31313ecd2be4d1a66a65b8c6ec.zip
initial commit of 'ecp-client-lean' from KIT
Diffstat (limited to 'src/main/java/edu/kit/scc/dei/ecplean/ECPAuthenticationInfo.java')
-rw-r--r--src/main/java/edu/kit/scc/dei/ecplean/ECPAuthenticationInfo.java47
1 files changed, 47 insertions, 0 deletions
diff --git a/src/main/java/edu/kit/scc/dei/ecplean/ECPAuthenticationInfo.java b/src/main/java/edu/kit/scc/dei/ecplean/ECPAuthenticationInfo.java
new file mode 100644
index 0000000..0fc8b90
--- /dev/null
+++ b/src/main/java/edu/kit/scc/dei/ecplean/ECPAuthenticationInfo.java
@@ -0,0 +1,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;
+ }
+
+
+}