Searched defs:responseID (Results 1 - 14 of 14) sorted by relevance

/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml/protocol/
H A DAbstractResponse.java50 protected String responseID = null; field in class:AbstractResponse
97 return responseID;
103 * @param responseID A String that is the <code>ResponseID</code> attribute
107 public boolean setResponseID(String responseID) { argument
111 if ((responseID == null) || (responseID.length() == 0)) {
114 this.responseID = responseID;
H A DResponse.java149 private void buildResponse(String responseID, argument
155 if ((responseID == null) || (responseID.length() == 0)) {
157 this.responseID = SAMLUtils.generateID();
158 if (this.responseID == null) {
163 this.responseID = responseID;
204 * @param responseID If it's null, the constructor will create one.
212 public Response(String responseID, argument
217 buildResponse(responseID, inResponseT
237 Response(String responseID, String inResponseTo, Status status, String recipient, List contents) argument
261 Response(String responseID, Status status, String recipient, List contents) argument
282 Response(String responseID, Status status, List contents) argument
[all...]
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/message/
H A DFSResponse.java123 * @param responseID value of <code>ResponseId</code> attribute.
130 public FSResponse(String responseID, argument
134 super( responseID, inResponseTo, status, contents);
176 responseID = root.getAttribute("ResponseID");
177 if ((responseID == null) || (responseID.length() == 0)) {
413 if((responseID != null) && (inResponseTo != null)){
419 append(responseID).append("\" ");
502 if ((responseID == null) || (responseID
[all...]
H A DFSAuthnResponse.java79 * @param responseID value of the <code>ResponseID</code> attribute.
88 public FSAuthnResponse(String responseID,String inResponseTo, argument
91 super( responseID, inResponseTo, status, contents);
149 responseID = root.getAttribute(IFSConstants.RESPONSE_ID);
150 if ((responseID == null) || (responseID.length() == 0)) {
542 if((responseID != null) && (inResponseTo != null)){
557 .append(responseID)
716 if ((responseID == null) || (responseID
[all...]
H A DFSLogoutResponse.java101 * @param responseID the value of <code>ResponseID</code> attribute.
108 public FSLogoutResponse(String responseID, argument
114 if ((responseID == null) || (responseID.length() == 0)) {
115 this.responseID = FSUtils.generateID();
116 if (this.responseID == null) {
120 this.responseID = responseID;
161 responseID = root.getAttribute(IFSConstants.RESPONSE_ID);
162 if ((responseID
[all...]
H A DFSNameRegistrationResponse.java171 * @param responseID the value of <code>ResponseID</code> attribute.
178 public FSNameRegistrationResponse(String responseID, String inResponseTo, argument
181 if ((responseID == null) || (responseID.length() == 0)) {
182 this.responseID = FSUtils.generateID();
183 if (this.responseID == null) {
187 this.responseID = responseID;
230 responseID = root.getAttribute("ResponseID");
231 if ((responseID
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/message/
H A DFSResponse.java123 * @param responseID value of <code>ResponseId</code> attribute.
130 public FSResponse(String responseID, argument
134 super( responseID, inResponseTo, status, contents);
176 responseID = root.getAttribute("ResponseID");
177 if ((responseID == null) || (responseID.length() == 0)) {
413 if((responseID != null) && (inResponseTo != null)){
419 append(responseID).append("\" ");
502 if ((responseID == null) || (responseID
[all...]
H A DFSAuthnResponse.java82 * @param responseID value of the <code>ResponseID</code> attribute.
91 public FSAuthnResponse(String responseID,String inResponseTo, argument
94 super( responseID, inResponseTo, status, contents);
152 responseID = root.getAttribute(IFSConstants.RESPONSE_ID);
153 if ((responseID == null) || (responseID.length() == 0)) {
545 if((responseID != null) && (inResponseTo != null)){
560 .append(responseID)
719 if ((responseID == null) || (responseID
[all...]
H A DFSLogoutResponse.java104 * @param responseID the value of <code>ResponseID</code> attribute.
111 public FSLogoutResponse(String responseID, argument
117 if ((responseID == null) || (responseID.length() == 0)) {
118 this.responseID = FSUtils.generateID();
119 if (this.responseID == null) {
123 this.responseID = responseID;
164 responseID = root.getAttribute(IFSConstants.RESPONSE_ID);
165 if ((responseID
[all...]
H A DFSNameRegistrationResponse.java174 * @param responseID the value of <code>ResponseID</code> attribute.
181 public FSNameRegistrationResponse(String responseID, String inResponseTo, argument
184 if ((responseID == null) || (responseID.length() == 0)) {
185 this.responseID = FSUtils.generateID();
186 if (this.responseID == null) {
190 this.responseID = responseID;
233 responseID = root.getAttribute("ResponseID");
234 if ((responseID
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml/protocol/
H A DAbstractResponse.java50 protected String responseID = null; field in class:AbstractResponse
97 return responseID;
103 * @param responseID A String that is the <code>ResponseID</code> attribute
107 public boolean setResponseID(String responseID) { argument
111 if ((responseID == null) || (responseID.length() == 0)) {
114 this.responseID = responseID;
H A DResponse.java148 private void buildResponse(String responseID, argument
154 if ((responseID == null) || (responseID.length() == 0)) {
156 this.responseID = SAMLUtils.generateID();
157 if (this.responseID == null) {
162 this.responseID = responseID;
203 * @param responseID If it's null, the constructor will create one.
211 public Response(String responseID, argument
216 buildResponse(responseID, inResponseT
236 Response(String responseID, String inResponseTo, Status status, String recipient, List contents) argument
260 Response(String responseID, Status status, String recipient, List contents) argument
281 Response(String responseID, Status status, List contents) argument
[all...]
/forgerock/openam-v13/openam-federation/OpenFM/src/main/java/com/iplanet/services/cdc/
H A DCDCServlet.java169 private String responseID; field in class:CDCServlet
395 SELF_PROVIDER_ID, responseID, inResponseTo, status,
746 String responseID,
744 createAuthnResponse( String providerID, String responseID, String inResponseTo, Status status, FSAssertion assertion, String relayState ) argument
/forgerock/openam/openam-federation/OpenFM/src/main/java/com/iplanet/services/cdc/
H A DCDCServlet.java170 private String responseID; field in class:CDCServlet
397 SELF_PROVIDER_ID, responseID, inResponseTo, status,
747 String responseID,
745 createAuthnResponse( String providerID, String responseID, String inResponseTo, Status status, FSAssertion assertion, String relayState ) argument

Completed in 38 milliseconds