Searched refs:responseId (Results 1 - 14 of 14) sorted by relevance

/forgerock/openam-v13/openam-scripting/src/main/java/org/forgerock/openam/scripting/rest/batch/helpers/
H A DScriptResponse.java40 * @param responseId Non null responseID.
43 public void putResponse(String responseId, JsonValue json) { argument
44 Reject.ifNull(responseId);
46 responses.put(responseId, json.toString());
52 * @param responseId Non null responseID.
55 public String getResponse(String responseId) { argument
56 Reject.ifNull(responseId);
57 return responses.get(responseId);
/forgerock/openam/openam-scripting/src/main/java/org/forgerock/openam/scripting/rest/batch/helpers/
H A DScriptResponse.java40 * @param responseId Non null responseID.
43 public void putResponse(String responseId, JsonValue json) { argument
44 Reject.ifNull(responseId);
46 responses.put(responseId, json.toString());
52 * @param responseId Non null responseID.
55 public String getResponse(String responseId) { argument
56 Reject.ifNull(responseId);
57 return responses.get(responseId);
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/protocol/impl/
H A DStatusResponseImpl.java70 protected String responseId = null; field in class:StatusResponseImpl
304 return responseId;
316 this.responseId = value;
405 .append(responseId).append(SAML2Constants.QUOTE)
492 /* Validates the responseId in the SAML Response. */
493 protected void validateID(String responseId) throws SAML2Exception { argument
494 if ((responseId == null) || (responseId.length() == 0 )) {
541 validateID(responseId);
H A DLogoutResponseImpl.java172 responseId = element.getAttribute(SAML2Constants.ID);
173 validateID(responseId);
H A DManageNameIDResponseImpl.java130 responseId = element.getAttribute("ID");
131 validateID(responseId);
H A DNameIDMappingResponseImpl.java125 responseId = element.getAttribute("ID");
126 validateID(responseId);
213 .append(uri).append(" ID=\"").append(responseId).append("\"");
H A DArtifactResponseImpl.java109 responseId = attrValue;
347 append(uri).append(" ID=\"").append(responseId).append("\"");
H A DResponseImpl.java121 responseId = attrValue;
433 append(uri).append(" ID=\"").append(responseId).append("\"");
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/protocol/impl/
H A DStatusResponseImpl.java68 protected String responseId = null; field in class:StatusResponseImpl
302 return responseId;
314 this.responseId = value;
403 .append(responseId).append(SAML2Constants.QUOTE)
490 /* Validates the responseId in the SAML Response. */
491 protected void validateID(String responseId) throws SAML2Exception { argument
492 if ((responseId == null) || (responseId.length() == 0 )) {
539 validateID(responseId);
H A DLogoutResponseImpl.java172 responseId = element.getAttribute(SAML2Constants.ID);
173 validateID(responseId);
H A DManageNameIDResponseImpl.java130 responseId = element.getAttribute("ID");
131 validateID(responseId);
H A DNameIDMappingResponseImpl.java125 responseId = element.getAttribute("ID");
126 validateID(responseId);
213 .append(uri).append(" ID=\"").append(responseId).append("\"");
H A DArtifactResponseImpl.java109 responseId = attrValue;
347 append(uri).append(" ID=\"").append(responseId).append("\"");
H A DResponseImpl.java121 responseId = attrValue;
433 append(uri).append(" ID=\"").append(responseId).append("\"");

Completed in 4176 milliseconds