Searched defs:respondWith (Results 1 - 8 of 8) sorted by relevance

/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml/protocol/
H A DAbstractRequest.java106 * @param respondWith A String that needs to be added to the Request.
109 public boolean addRespondWith(String respondWith) { argument
113 if ((respondWith == null) || (respondWith.length() == 0)) {
120 respondWiths.add(respondWith);
H A DRequest.java228 private String checkAndGetRespondWith(String respondWith) argument
231 if ((respondWith == null) || (respondWith.length() == 0)) {
237 if (respondWith.indexOf(":") == -1) {
238 return (SAMLConstants.ASSERTION_PREFIX + respondWith);
240 StringTokenizer st = new StringTokenizer(respondWith, ":");
545 String respondWith;
550 respondWith = XMLUtils.getElementValue((Element) child);
551 if (respondWith.length() == 0) {
562 respondWiths.add(respondWith);
[all...]
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/message/
H A DFSRequest.java279 String respondWith;
284 respondWith = XMLUtils.getElementValue((Element) child);
285 if (respondWith.length() == 0) {
296 respondWiths.add(respondWith);
396 private String checkAndGetRespondWith(String respondWith) argument
398 if ((respondWith == null) || (respondWith.length() == 0)) {
404 if (respondWith.indexOf(":") == -1) {
405 return (SAMLConstants.ASSERTION_PREFIX + respondWith);
407 StringTokenizer st = new StringTokenizer(respondWith, "
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/message/
H A DFSRequest.java279 String respondWith;
284 respondWith = XMLUtils.getElementValue((Element) child);
285 if (respondWith.length() == 0) {
296 respondWiths.add(respondWith);
396 private String checkAndGetRespondWith(String respondWith) argument
398 if ((respondWith == null) || (respondWith.length() == 0)) {
404 if (respondWith.indexOf(":") == -1) {
405 return (SAMLConstants.ASSERTION_PREFIX + respondWith);
407 StringTokenizer st = new StringTokenizer(respondWith, "
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml/protocol/
H A DAbstractRequest.java106 * @param respondWith A String that needs to be added to the Request.
109 public boolean addRespondWith(String respondWith) { argument
113 if ((respondWith == null) || (respondWith.length() == 0)) {
120 respondWiths.add(respondWith);
H A DRequest.java231 private String checkAndGetRespondWith(String respondWith) argument
234 if ((respondWith == null) || (respondWith.length() == 0)) {
240 if (respondWith.indexOf(":") == -1) {
241 return (SAMLConstants.ASSERTION_PREFIX + respondWith);
243 StringTokenizer st = new StringTokenizer(respondWith, ":");
548 String respondWith;
553 respondWith = XMLUtils.getElementValue((Element) child);
554 if (respondWith.length() == 0) {
565 respondWiths.add(respondWith);
[all...]
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml/servlet/
H A DSAMLSOAPReceiver.java586 List respondWith = req.getRespondWith();
587 if (!parseRespondWith(respondWith)) {
833 respondWith, contents, i, respID, inResponseTo,
842 } // else there was no mismatch with respondWith element
1007 private Response validateStatements(Assertion assertion, List respondWith, argument
1037 if (respondWith.size() == 0 ) {
1040 mismatchError = !checkAgainstRespondWith(respondWith,
1045 } // end of else respondWith size > 0
1048 + " meet respondWith criteria in the received Request");
1071 * This method takes in the List of respondWith an
1075 parseRespondWith(List respondWith) argument
1099 checkAgainstRespondWith(List respondWith, Set statements) argument
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml/servlet/
H A DSAMLSOAPReceiver.java586 List respondWith = req.getRespondWith();
587 if (!parseRespondWith(respondWith)) {
833 respondWith, contents, i, respID, inResponseTo,
842 } // else there was no mismatch with respondWith element
1007 private Response validateStatements(Assertion assertion, List respondWith, argument
1037 if (respondWith.size() == 0 ) {
1040 mismatchError = !checkAgainstRespondWith(respondWith,
1045 } // end of else respondWith size > 0
1048 + " meet respondWith criteria in the received Request");
1071 * This method takes in the List of respondWith an
1075 parseRespondWith(List respondWith) argument
1099 checkAgainstRespondWith(List respondWith, Set statements) argument
[all...]

Completed in 41 milliseconds