Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 31 for LOGOUT (0.06 sec)

  1. src/test/java/org/codelibs/fess/sso/SsoAuthenticatorTest.java

            assertNull(result);
        }
    
        // Test logout method
        public void test_logout_withValidUser() {
            // Setup
            FessUserBean user = FessUserBean.empty();
            String expectedUrl = "https://example.com/logout?user=testuser123";
            authenticator.setLogoutUrl(expectedUrl);
    
            // Execute
            String result = authenticator.logout(user);
    
            // Verify
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/sso/SsoManagerTest.java

            assertNotNull(response);
            assertEquals(expectedResponse, response);
        }
    
        // Test logout() method
        public void test_logout_whenNotAvailable() {
            currentSsoType = Constants.NONE;
            FessUserBean user = FessUserBean.empty();
            assertNull(ssoManager.logout(user));
        }
    
        public void test_logout_whenAvailableButNoAuthenticator() {
            currentSsoType = "invalid";
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 13.9K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/helper/ActivityHelperTest.java

            activityHelper.useEcsFormat = false;
            activityHelper.logout(OptionalThing.empty());
            assertEquals("action:LOGOUT\tuser:-\tpermissions:-", localLogMsg.get());
    
            activityHelper.logout(createUser("testuser", new String[0]));
            assertEquals("action:LOGOUT\tuser:testuser\tpermissions:-", localLogMsg.get());
    
            activityHelper.logout(createUser("testuser", new String[] { "111", "222" }));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 05:35:01 UTC 2025
    - 18.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/sso/saml/SamlAuthenticator.java

                                samlUser.getNameIdFormat(), samlUser.getNameidNameQualifier(), samlUser.getNameidSPNameQualifier());
                        return auth.logout(null, logoutRequestParams, true);
                    } catch (final Exception e) {
                        logger.warn("Failed to logout from IdP: {}", samlUser, e);
                    }
                    return null;
                }).orElse(null);
            }
            return 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)
  5. src/main/java/org/codelibs/fess/helper/ActivityHelper.java

                }
            });
            log(valueMap);
        }
    
        /**
         * Log the logout activity.
         * @param user The user.
         */
        public void logout(final OptionalThing<FessUserBean> user) {
            final Map<String, String> valueMap = new LinkedHashMap<>();
            valueMap.put("action", Action.LOGOUT.name());
            valueMap.put("user", user.map(FessUserBean::getUserId).orElse("-"));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 10.8K bytes
    - Viewed (0)
  6. 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
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 40.7K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/mylasta/action/FessLabelsTest.java

            assertEquals("{labels.paths}", FessLabels.LABELS_PATHS);
            assertEquals("{labels.port}", FessLabels.LABELS_PORT);
            assertEquals("{labels.regex}", FessLabels.LABELS_REGEX);
    
            // Test login/logout related labels
            assertEquals("{labels.login}", FessLabels.LABELS_LOGIN);
            assertEquals("{labels.login.title}", FessLabels.LABELS_LOGIN_TITLE);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 13.8K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java

         * for session management, so no specific logout URL is provided.
         *
         * @param user The user to logout
         * @return Always returns null as SPNEGO doesn't provide a logout URL
         */
        @Override
        public String logout(final FessUserBean user) {
            return null;
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 17.2K bytes
    - Viewed (0)
  9. src/main/webapp/WEB-INF/view/advance.jsp

    														<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 }">
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jan 18 12:09:07 UTC 2025
    - 14.1K bytes
    - Viewed (0)
  10. src/main/resources/fess_label.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
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jun 28 08:40:50 UTC 2025
    - 40.7K bytes
    - Viewed (0)
Back to top