1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package org.opensaml.saml2.ecp.impl;
18
19 import java.util.List;
20
21 import org.opensaml.common.impl.AbstractSAMLObject;
22 import org.opensaml.saml2.ecp.Response;
23 import org.opensaml.xml.XMLObject;
24 import org.opensaml.xml.schema.XSBooleanValue;
25
26
27
28
29 public class ResponseImpl extends AbstractSAMLObject implements Response {
30
31
32 private String soap11Actor;
33
34
35 private XSBooleanValue soap11MustUnderstand;
36
37
38 private String acsURL;
39
40
41
42
43
44
45
46
47 protected ResponseImpl(String namespaceURI, String elementLocalName, String namespacePrefix) {
48 super(namespaceURI, elementLocalName, namespacePrefix);
49 }
50
51
52 public String getAssertionConsumerServiceURL() {
53 return acsURL;
54 }
55
56
57 public void setAssertionConsumerServiceURL(String newAssertionConsumerServiceURL) {
58 acsURL = prepareForAssignment(acsURL, newAssertionConsumerServiceURL);
59 }
60
61
62 public Boolean isSOAP11MustUnderstand() {
63 if (soap11MustUnderstand != null) {
64 return soap11MustUnderstand.getValue();
65 }
66 return Boolean.FALSE;
67 }
68
69
70 public XSBooleanValue isSOAP11MustUnderstandXSBoolean() {
71 return soap11MustUnderstand;
72 }
73
74
75 public void setSOAP11MustUnderstand(Boolean newMustUnderstand) {
76 if (newMustUnderstand != null) {
77 soap11MustUnderstand = prepareForAssignment(soap11MustUnderstand,
78 new XSBooleanValue(newMustUnderstand, true));
79 } else {
80 soap11MustUnderstand = prepareForAssignment(soap11MustUnderstand, null);
81 }
82 }
83
84
85 public void setSOAP11MustUnderstand(XSBooleanValue newMustUnderstand) {
86 soap11MustUnderstand = prepareForAssignment(soap11MustUnderstand, newMustUnderstand);
87 }
88
89
90 public String getSOAP11Actor() {
91 return soap11Actor;
92 }
93
94
95 public void setSOAP11Actor(String newActor) {
96 soap11Actor = prepareForAssignment(soap11Actor, newActor);
97 }
98
99
100 public List<XMLObject> getOrderedChildren() {
101 return null;
102 }
103
104 }