AuthnRequest.java
3.03 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
/*
* Decompiled with CFR 0_118.
*/
package com.adobe.granite.auth.saml.model;
import com.adobe.granite.auth.saml.model.AbstractRequest;
import com.adobe.granite.auth.saml.model.NameIdPolicy;
import com.adobe.granite.auth.saml.model.Subject;
public class AuthnRequest
extends AbstractRequest {
private Subject subject;
private NameIdPolicy nameIdPolicy;
private boolean forceAuthn;
private boolean isPassive;
private String assertionConsumerServiceUrl;
private String assertionConsumerServiceIndex;
private String protocolBinding;
private String attributeConsumerServiceIndex;
private String providerName;
public Subject getSubject() {
return this.subject;
}
public void setSubject(Subject subject) {
this.subject = subject;
}
public NameIdPolicy getNameIdPolicy() {
return this.nameIdPolicy;
}
public void setNameIdPolicy(NameIdPolicy nameIdPolicy) {
this.nameIdPolicy = nameIdPolicy;
}
public boolean isForceAuthn() {
return this.forceAuthn;
}
public void setForceAuthn(boolean forceAuthn) {
this.forceAuthn = forceAuthn;
}
public boolean isPassive() {
return this.isPassive;
}
public void setPassive(boolean isPassive) {
this.isPassive = isPassive;
}
public String getAssertionConsumerServiceUrl() {
return this.assertionConsumerServiceUrl;
}
public void setAssertionConsumerServiceUrl(String assertionConsumerUrl) {
this.assertionConsumerServiceUrl = assertionConsumerUrl;
}
public String getAssertionConsumerServiceIndex() {
return this.assertionConsumerServiceIndex;
}
public void setAssertionConsumerServiceIndex(String assertionConsumerServiceIndex) {
this.assertionConsumerServiceIndex = assertionConsumerServiceIndex;
}
public String getProtocolBinding() {
return this.protocolBinding;
}
public void setProtocolBinding(String protocolBinding) {
this.protocolBinding = protocolBinding;
}
public String getAttributeConsumerServiceIndex() {
return this.attributeConsumerServiceIndex;
}
public void setAttributeConsumerServiceIndex(String attributeConsumerServiceIndex) {
this.attributeConsumerServiceIndex = attributeConsumerServiceIndex;
}
public String getProviderName() {
return this.providerName;
}
public void setProviderName(String providerName) {
this.providerName = providerName;
}
public boolean hasProtocolBinding() {
return null != this.protocolBinding && this.protocolBinding.length() > 0;
}
public boolean hasNameIdPolicy() {
return null != this.nameIdPolicy;
}
public boolean hasAssertionConsumerServiceURL() {
return null != this.assertionConsumerServiceUrl && this.assertionConsumerServiceUrl.length() > 0;
}
public boolean hasAssertionConsumerServiceIndex() {
return null != this.assertionConsumerServiceIndex && this.assertionConsumerServiceIndex.length() > 0;
}
}