Searched refs:inResponseTo (Results 1 - 25 of 66) sorted by relevance

123

/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml/protocol/
H A DAbstractResponse.java51 protected String inResponseTo = null; field in class:AbstractResponse
123 return inResponseTo;
128 * @param inResponseTo The <code>InResponseTo</code> attribute of the
132 public boolean setInResponseTo(String inResponseTo) { argument
136 if ((inResponseTo == null) || (inResponseTo.length() == 0)) {
139 this.inResponseTo = inResponseTo;
H A DResponse.java150 String inResponseTo,
166 this.inResponseTo = inResponseTo;
205 * @param inResponseTo the <code>RequestID</code> that this response is
213 String inResponseTo,
217 buildResponse(responseID, inResponseTo, status, null, contents);
228 * @param inResponseTo the <code>RequestID</code> that this response is
238 String inResponseTo,
243 buildResponse(responseID, inResponseTo, status, recipient, contents);
377 inResponseTo
149 buildResponse(String responseID, String inResponseTo, Status status, String recipient, List contents) argument
212 Response(String responseID, String inResponseTo, Status status, List contents) argument
237 Response(String responseID, String inResponseTo, Status status, String recipient, List contents) argument
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml/protocol/
H A DAbstractResponse.java51 protected String inResponseTo = null; field in class:AbstractResponse
123 return inResponseTo;
128 * @param inResponseTo The <code>InResponseTo</code> attribute of the
132 public boolean setInResponseTo(String inResponseTo) { argument
136 if ((inResponseTo == null) || (inResponseTo.length() == 0)) {
139 this.inResponseTo = inResponseTo;
H A DResponse.java149 String inResponseTo,
165 this.inResponseTo = inResponseTo;
204 * @param inResponseTo the <code>RequestID</code> that this response is
212 String inResponseTo,
216 buildResponse(responseID, inResponseTo, status, null, contents);
227 * @param inResponseTo the <code>RequestID</code> that this response is
237 String inResponseTo,
242 buildResponse(responseID, inResponseTo, status, recipient, contents);
376 inResponseTo
148 buildResponse(String responseID, String inResponseTo, Status status, String recipient, List contents) argument
211 Response(String responseID, String inResponseTo, Status status, List contents) argument
236 Response(String responseID, String inResponseTo, Status status, String recipient, List contents) argument
[all...]
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/services/fednsso/
H A DFSProxyHandler.java97 * @param inResponseTo <code>InResponseTo</code> attribute of the request.
104 String inResponseTo,
125 ssoToken, inResponseTo, spNameIdentifier, idpNameIdentifier);
139 ssoToken, inResponseTo, spNameIdentifier, idpNameIdentifier);
102 doSingleSignOn( Object ssoToken, String inResponseTo, NameIdentifier spNameIdentifier, NameIdentifier idpNameIdentifier) argument
H A DFSSSOBrowserArtifactProfileHandler.java282 String inResponseTo= samlRequest.getRequestID();
304 respID, inResponseTo, status, contents);
318 FSUtils.bundle.getString("inResponseTo") + "=" +
338 respID,inResponseTo, status, contents);
352 FSUtils.bundle.getString("inResponseTo") + "=" +
392 inResponseTo,
413 FSUtils.bundle.getString("inResponseTo") + "=" +
463 respID,inResponseTo, status, contents);
490 respID, inResponseTo, status, contents);
512 respID,inResponseTo, statu
797 doSingleSignOn( Object ssoToken, String inResponseTo, NameIdentifier opaqueHandle, NameIdentifier idpOpaqueHandle ) argument
818 createSAMLAssertionArtifact( Object ssoToken, String inResponseTo, NameIdentifier userHandle, NameIdentifier idpHandle ) argument
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/services/fednsso/
H A DFSProxyHandler.java97 * @param inResponseTo <code>InResponseTo</code> attribute of the request.
104 String inResponseTo,
125 ssoToken, inResponseTo, spNameIdentifier, idpNameIdentifier);
139 ssoToken, inResponseTo, spNameIdentifier, idpNameIdentifier);
102 doSingleSignOn( Object ssoToken, String inResponseTo, NameIdentifier spNameIdentifier, NameIdentifier idpNameIdentifier) argument
H A DFSSSOBrowserArtifactProfileHandler.java282 String inResponseTo= samlRequest.getRequestID();
304 respID, inResponseTo, status, contents);
318 FSUtils.bundle.getString("inResponseTo") + "=" +
338 respID,inResponseTo, status, contents);
352 FSUtils.bundle.getString("inResponseTo") + "=" +
392 inResponseTo,
413 FSUtils.bundle.getString("inResponseTo") + "=" +
463 respID,inResponseTo, status, contents);
490 respID, inResponseTo, status, contents);
512 respID,inResponseTo, statu
797 doSingleSignOn( Object ssoToken, String inResponseTo, NameIdentifier opaqueHandle, NameIdentifier idpOpaqueHandle ) argument
818 createSAMLAssertionArtifact( Object ssoToken, String inResponseTo, NameIdentifier userHandle, NameIdentifier idpHandle ) argument
[all...]
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/message/
H A DFSAssertion.java100 protected String inResponseTo ; field in class:FSAssertion
212 inResponseTo = read;
305 * @param inResponseTo value of <code>InResponseTo</code> attribute in the
313 Set statements,String inResponseTo)
316 this.inResponseTo = inResponseTo;
328 * @param inResponseTo value of <code>InResponseTo</code> attribute in
336 Conditions conditions,Set statements,String inResponseTo)
339 this.inResponseTo = inResponseTo;
312 FSAssertion(String assertionID,String issuer,Date issueInstant, Set statements,String inResponseTo) argument
335 FSAssertion(String assertionID,String issuer,Date issueInstant, Conditions conditions,Set statements,String inResponseTo) argument
359 FSAssertion(String assertionID,String issuer,Date issueInstant, Conditions conditions,Advice advice,Set statements, String inResponseTo) argument
432 setInResponseTo(String inResponseTo) argument
[all...]
H A DFSResponse.java124 * @param inResponseTo value of <code>inResponseTo</code> attribute.
131 String inResponseTo,
134 super( responseID, inResponseTo, status, contents);
186 inResponseTo = root.getAttribute("InResponseTo");
187 if (inResponseTo == null) {
413 if((responseID != null) && (inResponseTo != null)){
420 if ((inResponseTo != null) && (inResponseTo.length() != 0)) {
421 xml.append(" InResponseTo=\"").append(inResponseTo)
130 FSResponse(String responseID, String inResponseTo, Status status, List contents) argument
[all...]
H A DFSLogoutResponse.java80 private String inResponseTo; field in class:FSLogoutResponse
102 * @param inResponseTo the value of <code>inResponseTo</code> attribute.
109 String inResponseTo,
123 if (inResponseTo == null) {
124 FSUtils.debug.message("Response: inResponseTo is null.");
127 this.inResponseTo = inResponseTo;
173 inResponseTo = root.getAttribute(IFSConstants.IN_RESPONSE_TO);
174 if (inResponseTo
108 FSLogoutResponse(String responseID, String inResponseTo, Status status, String providerId, String relayState) argument
309 setResponseTo(String inResponseTo) argument
[all...]
H A DFSNameRegistrationResponse.java172 * @param inResponseTo the value of <code>InResponseTo</code> attribute.
178 public FSNameRegistrationResponse(String responseID, String inResponseTo, argument
189 if (inResponseTo == null) {
190 FSUtils.debug.message("Response: inResponseTo is null.");
193 this.inResponseTo = inResponseTo;
242 inResponseTo = root.getAttribute("InResponseTo");
243 if (inResponseTo == null) {
532 if ((responseID != null) && (inResponseTo != null)){
540 append(" InResponseTo=\"").append(inResponseTo)
[all...]
H A DFSNameIdentifierMappingResponse.java80 * @param inResponseTo the value of <code>InResponseTo</code> attribute.
87 String inResponseTo, Status status,
90 this.inResponseTo = inResponseTo;
147 inResponseTo = root.getAttribute(IFSConstants.IN_RESPONSE_TO);
148 if (inResponseTo == null) {
471 .append(inResponseTo)
86 FSNameIdentifierMappingResponse(String providerID, String inResponseTo, Status status, NameIdentifier nameIdentifier) argument
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/message/
H A DFSAssertion.java103 protected String inResponseTo ; field in class:FSAssertion
215 inResponseTo = read;
308 * @param inResponseTo value of <code>InResponseTo</code> attribute in the
316 Set statements,String inResponseTo)
319 this.inResponseTo = inResponseTo;
331 * @param inResponseTo value of <code>InResponseTo</code> attribute in
339 Conditions conditions,Set statements,String inResponseTo)
342 this.inResponseTo = inResponseTo;
315 FSAssertion(String assertionID,String issuer,Date issueInstant, Set statements,String inResponseTo) argument
338 FSAssertion(String assertionID,String issuer,Date issueInstant, Conditions conditions,Set statements,String inResponseTo) argument
362 FSAssertion(String assertionID,String issuer,Date issueInstant, Conditions conditions,Advice advice,Set statements, String inResponseTo) argument
435 setInResponseTo(String inResponseTo) argument
[all...]
H A DFSResponse.java124 * @param inResponseTo value of <code>inResponseTo</code> attribute.
131 String inResponseTo,
134 super( responseID, inResponseTo, status, contents);
186 inResponseTo = root.getAttribute("InResponseTo");
187 if (inResponseTo == null) {
413 if((responseID != null) && (inResponseTo != null)){
420 if ((inResponseTo != null) && (inResponseTo.length() != 0)) {
421 xml.append(" InResponseTo=\"").append(inResponseTo)
130 FSResponse(String responseID, String inResponseTo, Status status, List contents) argument
[all...]
H A DFSLogoutResponse.java83 private String inResponseTo; field in class:FSLogoutResponse
105 * @param inResponseTo the value of <code>inResponseTo</code> attribute.
112 String inResponseTo,
126 if (inResponseTo == null) {
127 FSUtils.debug.message("Response: inResponseTo is null.");
130 this.inResponseTo = inResponseTo;
176 inResponseTo = root.getAttribute(IFSConstants.IN_RESPONSE_TO);
177 if (inResponseTo
111 FSLogoutResponse(String responseID, String inResponseTo, Status status, String providerId, String relayState) argument
312 setResponseTo(String inResponseTo) argument
[all...]
H A DFSNameRegistrationResponse.java175 * @param inResponseTo the value of <code>InResponseTo</code> attribute.
181 public FSNameRegistrationResponse(String responseID, String inResponseTo, argument
192 if (inResponseTo == null) {
193 FSUtils.debug.message("Response: inResponseTo is null.");
196 this.inResponseTo = inResponseTo;
245 inResponseTo = root.getAttribute("InResponseTo");
246 if (inResponseTo == null) {
535 if ((responseID != null) && (inResponseTo != null)){
543 append(" InResponseTo=\"").append(inResponseTo)
[all...]
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/assertion/impl/
H A DSubjectConfirmationDataImpl.java66 private String inResponseTo = null; field in class:SubjectConfirmationDataImpl
168 inResponseTo = attrValue;
232 return inResponseTo;
250 inResponseTo = value;
469 if (inResponseTo != null) {
471 xml.append(inResponseTo);
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/protocol/impl/
H A DStatusResponseImpl.java68 protected String inResponseTo = null; field in class:StatusResponseImpl
245 * Returns the value of the inResponseTo property.
247 * @return the value of the inResponseTo property
251 return inResponseTo;
255 * Sets the value of the inResponseTo property.
257 * @param value the value of the inResponseTo property to be set
263 this.inResponseTo = value;
435 if ((inResponseTo != null) && (inResponseTo.length() > 0)) {
440 .append(inResponseTo)
[all...]
H A DNameIDMappingResponseImpl.java136 inResponseTo = element.getAttribute("InResponseTo");
214 if (inResponseTo != null && inResponseTo.trim().length() != 0) {
215 result.append(" InResponseTo=\"").append(inResponseTo).append("\"");
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/assertion/impl/
H A DSubjectConfirmationDataImpl.java66 private String inResponseTo = null; field in class:SubjectConfirmationDataImpl
168 inResponseTo = attrValue;
232 return inResponseTo;
250 inResponseTo = value;
469 if (inResponseTo != null) {
471 xml.append(inResponseTo);
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/protocol/impl/
H A DStatusResponseImpl.java66 protected String inResponseTo = null; field in class:StatusResponseImpl
243 * Returns the value of the inResponseTo property.
245 * @return the value of the inResponseTo property
249 return inResponseTo;
253 * Sets the value of the inResponseTo property.
255 * @param value the value of the inResponseTo property to be set
261 this.inResponseTo = value;
433 if ((inResponseTo != null) && (inResponseTo.length() > 0)) {
438 .append(inResponseTo)
[all...]
H A DNameIDMappingResponseImpl.java136 inResponseTo = element.getAttribute("InResponseTo");
214 if (inResponseTo != null && inResponseTo.trim().length() != 0) {
215 result.append(" InResponseTo=\"").append(inResponseTo).append("\"");
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml/servlet/
H A DSAMLSOAPReceiver.java369 String inResponseTo=null;
389 new Response(respID, inResponseTo, status, recipient,
419 inResponseTo = req.getRequestID();
432 new Response(respID, inResponseTo, status,
446 inResponseTo = tok1.nextToken();
456 new Response(respID,inResponseTo, status, recipient,
470 inResponseTo = tok1.nextToken();
480 new Response(respID,inResponseTo, status, recipient,
500 retResponse = new Response(respID,inResponseTo,
520 retResponse = new Response(respID, inResponseTo, statu
1007 validateStatements(Assertion assertion, List respondWith, List contents,int index, String respID, String inResponseTo, String recipient) argument
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml/servlet/
H A DSAMLSOAPReceiver.java369 String inResponseTo=null;
389 new Response(respID, inResponseTo, status, recipient,
419 inResponseTo = req.getRequestID();
432 new Response(respID, inResponseTo, status,
446 inResponseTo = tok1.nextToken();
456 new Response(respID,inResponseTo, status, recipient,
470 inResponseTo = tok1.nextToken();
480 new Response(respID,inResponseTo, status, recipient,
500 retResponse = new Response(respID,inResponseTo,
520 retResponse = new Response(respID, inResponseTo, statu
1007 validateStatements(Assertion assertion, List respondWith, List contents,int index, String respID, String inResponseTo, String recipient) argument
[all...]

Completed in 63 milliseconds

123