- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for getRedirectResponseToLogin (0.08 seconds)
-
src/main/java/org/codelibs/fess/helper/SystemHelper.java
} /** * Gets the redirect response to the login page. * * @param response The original response. * @return The redirect response. */ public HtmlResponse getRedirectResponseToLogin(final HtmlResponse response) { return response; } /** * Gets the redirect response to the root page. * * @param response The original response.Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 43.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/base/FessSearchAction.java
* * @return HTML response that redirects to the login page */ protected HtmlResponse redirectToLogin() { searchHelper.storeSearchParameters(); return systemHelper.getRedirectResponseToLogin(redirect(SsoAction.class)); } /** * Redirects the user to the root path of the application. * * @return HTML response that redirects to the root page */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 18 04:42:56 GMT 2026 - 14K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/SystemHelperTest.java
} @Test public void test_getRedirectResponseToLogin() { final HtmlResponse response = HtmlResponse.fromForwardPath("/"); assertEquals(response, systemHelper.getRedirectResponseToLogin(response)); } @Test public void test_getRedirectResponseToRoot() { final HtmlResponse response = HtmlResponse.fromForwardPath("/");Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 44.4K bytes - Click Count (0)