Lines Matching defs:acsURL

400         String acsURL = IDPSSOUtil.getACSurl(
404 if ((acsURL == null) || (acsURL.trim().length() == 0)) {
474 idpMetaAlias, realm, nameIDFormat, acsURL, affiliationID,
505 idpEntityID, idpMetaAlias, realm, relayState, acsURL, res,
530 idpMetaAlias, realm, relayState, acsURL, res, session);
549 String acsURL,
569 cacheList.add(6, acsURL);
640 String acsURL = IDPSSOUtil.getACSurl(spEntityID, realm, authnReq, request, returnedBinding);
643 acsURL, res, null);
673 String acsURL = (String) cacheList.get(6);
677 idpMetaAlias, realm, relayState, acsURL, res, session);
697 * @param acsURL the assertion consumer service <code>url</code>
711 String acsURL,
752 encodedResMsg, "RelayState", relayState, acsURL);
754 String[] data = {acsURL};
760 spEntityID, realm, acsURL, relayState, res, session, props);
767 realm, acsURL, res);
786 * @param acsURL The <code>ACS</code> service <code>url</code>.
801 String acsURL,
823 nameIDFormat, acsURL, affiliationID, matchingAuthnContext);
858 res.setDestination(XMLUtils.escapeSpecialCharacters(acsURL));
874 * @param acsURL The <code>ACS</code> service <code>url</code>.
889 String acsURL,
1009 Subject subject = getSubject(session, authnReq, acsURL,
1469 * @param acsURL the <code>ACS</code> service <code>url</code>
1482 String acsURL,
1645 inResponseTo, acsURL, effectiveTime);
1665 * @param acsURL the <code>ACS</code> service <code>url</code>
1671 String inResponseTo, String acsURL, int effectiveTime)
1682 scd.setRecipient(XMLUtils.escapeSpecialCharacters(acsURL));
1773 String acsURL = null;
1777 acsURL = authnReq.getAssertionConsumerServiceURL();
1783 return getACSurl(spEntityID, realm, acsURL, acsBinding, acsIndex, request, rBinding);
1791 * @param acsURL AssertionConsumerServiceURL in AuthnRequest.
1799 public static String getACSurl(String spEntityID, String realm, String acsURL, String binding, Integer index,
1806 if (acsURL == null || acsURL.length() == 0) {
1809 acsURL = IDPSSOUtil.getACSurlFromMetaByBinding(spEntityID, realm, binding, returnedBinding);
1813 acsURL = getDefaultACSurl(spEntityID, realm, returnedBinding);
1819 acsURL = IDPSSOUtil.getACSurlFromMetaByIndex(spEntityID, realm, acsIndex, returnedBinding);
1824 if (isACSurlValidInMetadataSP(acsURL, spEntityID, realm)) {
1826 binding = getBindingForAcsUrl(spEntityID, realm, acsURL);
1829 String[] args = {acsURL, spEntityID};
1834 return acsURL;
1855 String acsURL = null;
1862 acsURL = acs.getLocation();
1871 if (acsURL == null) {
1872 acsURL = firstAcsURL;
1879 return acsURL;
1894 String acsURL) throws SAML2Exception {
1904 if (location != null && location.equals(acsURL)) {
1934 String acsURL = null;
1946 acsURL = acs.getLocation();
1958 if (acsURL == null || acsURL.length() == 0) {
1959 acsURL = defaultAcsURL;
1960 if (acsURL == null || acsURL.length() == 0) {
1961 acsURL = firstAcsURL;
1962 if (acsURL == null || acsURL.length() == 0) {
1963 acsURL = null;
1976 return acsURL;
2005 String acsURL = null;
2018 acsURL = acs.getLocation();
2031 if (acsURL == null || acsURL.length() == 0) {
2032 acsURL = defaultAcsURL;
2033 if (acsURL == null || acsURL.length() == 0) {
2034 acsURL = firstAcsURL;
2035 if (acsURL == null || acsURL.length() == 0) {
2036 acsURL = null;
2049 return acsURL;
2060 * @param acsURL the assertion consumer service <code>URL</code>
2069 String idpEntityID, String spEntityID, String realm, String acsURL,
2161 String[] logdata = {idpEntityID, realm, acsURL};
2166 artStr, "RelayState", relayState, acsURL);
2168 String redirectURL = acsURL +
2169 (acsURL.contains("?") ? "&" : "?") + "SAMLart=" +
2199 * @param acsURL the assertion consumer service <code>URL</code>
2206 String idpEntityID, String realm, String acsURL,
2213 ecpResponse.setAssertionConsumerServiceURL(acsURL);
2222 String[] logdata = {idpEntityID, realm, acsURL, ""};
2247 String[] data = {idpEntityID, realm, acsURL};
2962 * Validates if the Assertion Consumer Service URL acsURL exists in the
2965 * @param acsURL the assertion consumer service <code>URL</code>
2971 private static boolean isACSurlValidInMetadataSP(String acsURL,
2986 if (acsInMeta.equalsIgnoreCase(acsURL)) {
2988 SAML2Utils.debug.message(classMethod + " acsURL=" + acsURL +