Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for fromRedirectPathAsIs (0.09 sec)

  1. src/main/java/org/codelibs/fess/app/web/go/GoAction.java

                hash = StringUtil.EMPTY;
            }
    
            if (!isFileSystemPath(targetUrl)) {
                return HtmlResponse.fromRedirectPathAsIs(DocumentUtil.encodeUrl(targetUrl + hash));
            }
            if (!fessConfig.isSearchFileProxyEnabled()) {
                return HtmlResponse.fromRedirectPathAsIs(targetUrl + hash);
            }
            final ViewHelper viewHelper = ComponentUtil.getViewHelper();
            try {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 8.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/sso/saml/SamlAuthenticator.java

                    request.getSession().setAttribute(SAML_STATE, UuidUtil.create());
                    return new ActionResponseCredential(() -> HtmlResponse.fromRedirectPathAsIs(loginUrl));
                } catch (final Exception e) {
                    throw new SsoLoginException("Invalid SAML redirect URL.", e);
                }
    
            }).orElseGet(() -> null);
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 16.4K bytes
    - Viewed (1)
  3. src/main/java/org/codelibs/fess/sso/aad/AzureAdAuthenticator.java

                        }
                    }
                    return null;
                }
    
                return new ActionResponseCredential(() -> HtmlResponse.fromRedirectPathAsIs(getAuthUrl(request)));
            }).orElse(null);
        }
    
        /**
         * Generates the Azure AD authorization URL for the authentication request.
         * @param request The HTTP servlet request.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 28 09:13:08 UTC 2025
    - 37.3K bytes
    - Viewed (0)
Back to top