4
4
public class SamlParms {
5
5
6
6
private String id ;
7
- private String destination ;
7
+ private String endPointLocation ; //IdP Login URL
8
+ private String singleLogoutEndpoint ; //IdP Logout URL
8
9
private String acs ;
9
- private String issuer ;
10
+ private String identityProviderEntityID ; //issuer
10
11
private String certPath ;
11
12
private String certPass ;
12
13
private String certAlias ;
13
14
private String policyFormat ;
14
15
private String authnContext ;
15
- private String spName ;
16
+ private String serviceProviderEntityID ; //spName
16
17
private boolean forceAuthn ;
17
18
private String nameID ;
18
19
private String sessionIndex ;
@@ -23,15 +24,16 @@ public class SamlParms {
23
24
24
25
public SamlParms () {
25
26
id = "" ;
26
- destination = "" ;
27
+ endPointLocation = "" ;
28
+ singleLogoutEndpoint = "" ;
27
29
acs = "" ;
28
- issuer = "" ;
30
+ identityProviderEntityID = "" ;
29
31
certPath = "" ;
30
32
certPass = "" ;
31
33
certAlias = "" ;
32
34
policyFormat = "" ;
33
35
authnContext = "" ;
34
- spName = "" ;
36
+ serviceProviderEntityID = "" ;
35
37
forceAuthn = false ;
36
38
nameID = "" ;
37
39
sessionIndex = "" ;
@@ -48,12 +50,20 @@ public String getId() {
48
50
return id ;
49
51
}
50
52
51
- public void setDestination (String value ) {
52
- destination = value ;
53
+ public void setEndPointLocation (String value ) {
54
+ endPointLocation = value ;
53
55
}
54
56
55
- public String getDestination () {
56
- return destination ;
57
+ public String getEndPointLocation () {
58
+ return endPointLocation ;
59
+ }
60
+
61
+ public void setSingleLogoutEndpoint (String value ) {
62
+ singleLogoutEndpoint = value ;
63
+ }
64
+
65
+ public String getSingleLogoutEndpoint () {
66
+ return singleLogoutEndpoint ;
57
67
}
58
68
59
69
public void setAcs (String value ) {
@@ -64,12 +74,12 @@ public String getAcs() {
64
74
return acs ;
65
75
}
66
76
67
- public void setIssuer (String value ) {
68
- issuer = value ;
77
+ public void setIdentityProviderEntityID (String value ) {
78
+ identityProviderEntityID = value ;
69
79
}
70
80
71
- public String getIssuer () {
72
- return issuer ;
81
+ public String getIdentityProviderEntityID () {
82
+ return identityProviderEntityID ;
73
83
}
74
84
75
85
public void setCertPath (String value ) {
@@ -112,12 +122,12 @@ public String getAuthnContext() {
112
122
return authnContext ;
113
123
}
114
124
115
- public void setSPName (String value ) {
116
- spName = value ;
125
+ public void setServiceProviderEntityID (String value ) {
126
+ serviceProviderEntityID = value ;
117
127
}
118
128
119
- public String getSPName () {
120
- return spName ;
129
+ public String getServiceProviderEntityID () {
130
+ return serviceProviderEntityID ;
121
131
}
122
132
123
133
public void setForceAuthn (boolean value ) {
0 commit comments