- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 66 for logout (0.03 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/java/org/codelibs/fess/app/web/sso/SsoAction.java
} /** * SSO logout endpoint. * * This method handles SSO logout requests, coordinating with the SSO provider * to properly terminate the user's SSO session. It may involve redirecting * to the SSO provider's logout endpoint or performing local logout operations. * * @return ActionResponse directing to the logout page or SSO provider logout endpoint */ @ExecuteCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 9.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/sso/SsoResponseType.java
* such as metadata requests and logout actions. */ public enum SsoResponseType { /** * Indicates a request for SSO metadata, which is typically used for * configuration and discovery in protocols like SAML. */ METADATA, /** * Indicates a request to perform a logout operation, terminating the * user's SSO session. */ LOGOUT;Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 1.1K bytes - Click Count (0) -
src/main/webapp/WEB-INF/orig/view/error/redirect.jsp
redirectPage.append("/error/systemerror/"); response.sendRedirect(redirectPage.toString()); } else { response.sendError(statusCode); } } else if("logOut".equals(type)) { redirectPage.append("/login/?type=logout&code=" + statusCode); response.sendRedirect(redirectPage.toString()); } else if("badRequest".equals(type)) { redirectPage.append("/error/badrequest/");
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Feb 23 08:03:44 GMT 2026 - 1.3K bytes - Click Count (0) -
src/main/webapp/WEB-INF/view/error/redirect.jsp
redirectPage.append("/error/systemerror/"); response.sendRedirect(redirectPage.toString()); } else { response.sendError(statusCode); } } else if("logOut".equals(type)) { redirectPage.append("/login/?type=logout&code=" + statusCode); response.sendRedirect(redirectPage.toString()); } else if("badRequest".equals(type)) { redirectPage.append("/error/badrequest/");
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Tue Feb 10 04:24:02 GMT 2026 - 1.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/sso/saml/SamlAuthenticatorTest.java
assertEquals("https://fess.example.com/sso/", acsUrl); // Test SLO endpoint String sloUrl = (String) buildDefaultUrlMethod.invoke(authenticator, "/sso/logout"); assertEquals("https://fess.example.com/sso/logout", sloUrl); } finally { // Clean up systemProperties.remove("saml.sp.base.url"); } } @Test
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 18.4K bytes - Click Count (0) -
src/main/webapp/WEB-INF/web.xml
<error-code>403</error-code> <location>/WEB-INF/view/error/redirect.jsp?type=logOut</location> </error-page> <error-page> <error-code>404</error-code> <location>/WEB-INF/view/error/redirect.jsp?type=notFound</location> </error-page> <error-page> <error-code>408</error-code> <location>/WEB-INF/view/error/redirect.jsp?type=logOut</location> </error-page> <error-page> <error-code>429</error-code>
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 21 09:08:35 GMT 2026 - 8.5K bytes - Click Count (0) -
src/main/webapp/WEB-INF/view/header.jsp
<la:link href="/admin" styleClass="dropdown-item"> <la:message key="labels.administration" /> </la:link> </c:if> <la:link href="/logout/" styleClass="dropdown-item"> <la:message key="labels.logout" /> </la:link> </div> </div> </li> </c:when> <c:when test="${ pageLoginLink }"> <li class="nav-item"><la:link href="/login"
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Feb 23 08:03:44 GMT 2026 - 5.1K bytes - Click Count (0) -
src/main/webapp/WEB-INF/orig/view/header.jsp
<la:link href="/admin" styleClass="dropdown-item"> <la:message key="labels.administration" /> </la:link> </c:if> <la:link href="/logout/" styleClass="dropdown-item"> <la:message key="labels.logout" /> </la:link> </div> </div> </li> </c:when> <c:when test="${ pageLoginLink }"> <li class="nav-item"><la:link href="/login"
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Feb 23 08:03:44 GMT 2026 - 5.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticatorTest.java
} @Test public void test_nullSafeLogout() { SpnegoAuthenticator authenticator = new SpnegoAuthenticator(); // SPNEGO logout should return null (relies on Kerberos infrastructure) String logoutUrl = authenticator.logout(null); assertNull(logoutUrl); } @Test public void test_nullSafeGetResponse() {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 4.8K bytes - Click Count (0) -
src/main/resources/fess_label_en.properties
labels.login.title=Login labels.index_label=Label labels.index_lang=Preferred Language labels.index_sort=Sort labels.index_num=Display Count labels.logout_title=Logout labels.logout=Logout labels.do_you_want_to_logout=Do you want to logout? labels.logout_button=Logout labels.profile=Change Password labels.administration=Administration labels.profile_button=Settings labels.profile.title=Settings labels.profile.update=Update
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 11:54:13 GMT 2026 - 48.9K bytes - Click Count (0)