- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 21 for logOut (0.04 sec)
-
src/main/java/org/codelibs/fess/sso/saml/SamlAuthenticator.java
* * # Assertion Consumer Service URL * saml.sp.assertion_consumer_service.url=https://your-fess-server.example.com/sso/ * * # Single Logout Service URL * saml.sp.single_logout_service.url=https://your-fess-server.example.com/sso/logout * </pre> * * <h2>Complete Configuration Example (Okta)</h2> * <pre> * sso.type=saml * * # IdP settings from Okta SAML setup instructions
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sun Dec 14 01:18:25 UTC 2025 - 20.2K bytes - Viewed (3) -
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: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 10.8K bytes - Viewed (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
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 44K bytes - Viewed (0) -
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: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 17.8K bytes - Viewed (3) -
src/main/resources/fess_label_pt_BR.properties
labels.login.title=Login labels.index_label=Rótulo labels.index_lang=Idioma preferido labels.index_sort=Ordenar labels.index_num=Número de resultados labels.logout_title=Logout labels.logout=Logout labels.do_you_want_to_logout=Deseja fazer logout? labels.logout_button=Logout labels.profile=Alterar senha labels.administration=Administração labels.profile_button=Configurações labels.profile.title= Configurações
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 48.7K bytes - Viewed (0) -
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: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 13 05:54:52 UTC 2025 - 14.2K bytes - Viewed (0) -
ADDING_NEW_LANGUAGE.md
Edit the newly created files and translate all entries: **`fess_label_[locale].properties`** contains UI labels such as: ```properties labels.system_name=Fess labels.search=Search labels.login=Login labels.logout=Logout # ... approximately 1,056 more entries ``` **`fess_message_[locale].properties`** contains system messages such as: ```properties errors.required={0} is required. errors.minlength={0} cannot be less than {1}.Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 06 11:36:30 UTC 2025 - 10.4K bytes - Viewed (0) -
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: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 44K bytes - Viewed (0) -
src/main/resources/fess_label_id.properties
labels.login.title=Login labels.index_label=Label labels.index_lang=Bahasa Pilihan labels.index_sort=Sortir labels.index_num=Jumlah Tampilan labels.logout_title=Logout labels.logout=Logout labels.do_you_want_to_logout=Apakah Anda ingin logout? labels.logout_button=Logout labels.profile=Ubah Kata Sandi labels.administration=Administrasi labels.profile_button=Pengaturan labels.profile.title=Pengaturan labels.profile.update=Perbarui
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 45.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/RoleQueryHelper.java
} }); } catch (final RuntimeException e) { try { requestManager.findLoginManager(FessUserBean.class).ifPresent(LoginManager::logout); } catch (final Exception e1) { // ignore } throw e; } } if (defaultRoleList != null) {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 15.1K bytes - Viewed (0)