- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for fromRedirectPathAsIs (0.11 sec)
-
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) -
src/main/java/org/codelibs/fess/app/web/logout/LogoutAction.java
fessLoginAssist.logout(); userInfoHelper.deleteUserCodeFromCookie(request); if (StringUtil.isNotBlank(redirectUrl)) { return HtmlResponse.fromRedirectPathAsIs(redirectUrl); } return redirect(LoginAction.class); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticator.java
return processCallback(request, code); } } } return new ActionResponseCredential(() -> HtmlResponse.fromRedirectPathAsIs(getAuthUrl(request))); }).orElse(null); } /** * Gets the authorization URL for OpenID Connect. * * @param request the HTTP servlet request
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 15.3K bytes - Viewed (0) -
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) -
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)