Lines Matching defs:acsURL

396         String acsURL = IDPSSOUtil.getACSurl(
400 if ((acsURL == null) || (acsURL.trim().length() == 0)) {
470 idpMetaAlias, realm, nameIDFormat, acsURL, affiliationID,
501 idpEntityID, idpMetaAlias, realm, relayState, acsURL, res,
526 idpMetaAlias, realm, relayState, acsURL, res, session);
545 String acsURL,
565 cacheList.add(6, acsURL);
631 String acsURL = IDPSSOUtil.getACSurl(spEntityID, realm, authnReq, request, returnedBinding);
634 acsURL, res, null);
664 String acsURL = (String) cacheList.get(6);
668 idpMetaAlias, realm, relayState, acsURL, res, session);
688 * @param acsURL the assertion consumer service <code>url</code>
702 String acsURL,
743 encodedResMsg, "RelayState", relayState, acsURL);
745 String[] data = {acsURL};
751 spEntityID, realm, acsURL, relayState, res, session, props);
758 realm, acsURL, res);
777 * @param acsURL The <code>ACS</code> service <code>url</code>.
792 String acsURL,
814 nameIDFormat, acsURL, affiliationID, matchingAuthnContext);
849 res.setDestination(XMLUtils.escapeSpecialCharacters(acsURL));
865 * @param acsURL The <code>ACS</code> service <code>url</code>.
880 String acsURL,
1000 Subject subject = getSubject(session, authnReq, acsURL,
1438 * @param acsURL the <code>ACS</code> service <code>url</code>
1451 String acsURL,
1612 inResponseTo, acsURL, effectiveTime);
1632 * @param acsURL the <code>ACS</code> service <code>url</code>
1638 String inResponseTo, String acsURL, int effectiveTime)
1649 scd.setRecipient(XMLUtils.escapeSpecialCharacters(acsURL));
1740 String acsURL = null;
1744 acsURL = authnReq.getAssertionConsumerServiceURL();
1750 return getACSurl(spEntityID, realm, acsURL, acsBinding, acsIndex, request, rBinding);
1758 * @param acsURL AssertionConsumerServiceURL in AuthnRequest.
1766 public static String getACSurl(String spEntityID, String realm, String acsURL, String binding, Integer index,
1773 if (acsURL == null || acsURL.length() == 0) {
1776 acsURL = IDPSSOUtil.getACSurlFromMetaByBinding(spEntityID, realm, binding, returnedBinding);
1780 acsURL = getDefaultACSurl(spEntityID, realm, returnedBinding);
1786 acsURL = IDPSSOUtil.getACSurlFromMetaByIndex(spEntityID, realm, acsIndex, returnedBinding);
1791 if (isACSurlValidInMetadataSP(acsURL, spEntityID, realm)) {
1793 binding = getBindingForAcsUrl(spEntityID, realm, acsURL);
1796 String[] args = {acsURL, spEntityID};
1801 return acsURL;
1822 String acsURL = null;
1829 acsURL = acs.getLocation();
1838 if (acsURL == null) {
1839 acsURL = firstAcsURL;
1846 return acsURL;
1861 String acsURL) throws SAML2Exception {
1871 if (location != null && location.equals(acsURL)) {
1901 String acsURL = null;
1913 acsURL = acs.getLocation();
1925 if (acsURL == null || acsURL.length() == 0) {
1926 acsURL = defaultAcsURL;
1927 if (acsURL == null || acsURL.length() == 0) {
1928 acsURL = firstAcsURL;
1929 if (acsURL == null || acsURL.length() == 0) {
1930 acsURL = null;
1943 return acsURL;
1972 String acsURL = null;
1985 acsURL = acs.getLocation();
1998 if (acsURL == null || acsURL.length() == 0) {
1999 acsURL = defaultAcsURL;
2000 if (acsURL == null || acsURL.length() == 0) {
2001 acsURL = firstAcsURL;
2002 if (acsURL == null || acsURL.length() == 0) {
2003 acsURL = null;
2016 return acsURL;
2027 * @param acsURL the assertion consumer service <code>URL</code>
2036 String idpEntityID, String spEntityID, String realm, String acsURL,
2128 String[] logdata = {idpEntityID, realm, acsURL};
2133 artStr, "RelayState", relayState, acsURL);
2135 String redirectURL = acsURL +
2136 (acsURL.contains("?") ? "&" : "?") + "SAMLart=" +
2166 * @param acsURL the assertion consumer service <code>URL</code>
2173 String idpEntityID, String realm, String acsURL,
2180 ecpResponse.setAssertionConsumerServiceURL(acsURL);
2189 String[] logdata = {idpEntityID, realm, acsURL, ""};
2214 String[] data = {idpEntityID, realm, acsURL};
2929 * Validates if the Assertion Consumer Service URL acsURL exists in the
2932 * @param acsURL the assertion consumer service <code>URL</code>
2938 private static boolean isACSurlValidInMetadataSP(String acsURL,
2953 if (acsInMeta.equalsIgnoreCase(acsURL)) {
2955 SAML2Utils.debug.message(classMethod + " acsURL=" + acsURL +