- Sort Score
- Result 10 results
- Languages All
Results 1 - 6 of 6 for getLdapManager (0.16 sec)
-
src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java
final String username = credential.getUserId(); if (!ComponentUtil.getFessConfig().isAdminUser(username)) { return ComponentUtil.getLdapManager().login(username); } return OptionalEntity.empty(); }); } @Override public ActionResponse getResponse(final SsoResponseType responseType) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 12 01:54:46 UTC 2024 - 11.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/user/AdminUserAction.java
form.confirmPassword = null; } public static void validateAttributes(final Map<String, String> attributes, final Consumer<VaMessenger<FessMessages>> throwError) { ComponentUtil.getLdapManager().validateUserAttributes(Long.class, attributes, s -> throwError.accept(messages -> messages.addErrorsPropertyTypeLong("attributes." + s, "attributes." + s))); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 15.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/group/AdminGroupAction.java
}, this::asListHtml); } } public static void validateAttributes(final Map<String, String> attributes, final Consumer<VaMessenger<FessMessages>> throwError) { ComponentUtil.getLdapManager().validateGroupAttributes(Long.class, attributes, s -> throwError.accept(messages -> messages.addErrorsPropertyTypeLong("attributes." + s, "attributes." + s))); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 13.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/general/AdminGeneralAction.java
fessConfig.setStorageSecretKey(form.storageSecretKey); } fessConfig.setStorageBucket(form.storageBucket); fessConfig.storeSystemProperties(); ComponentUtil.getLdapManager().updateConfig(); final SystemHelper systemHelper = ComponentUtil.getSystemHelper(); systemHelper.refreshDesignJspFiles(); systemHelper.updateSystemProperties();
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 12.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/ComponentUtil.java
return getComponent(SUGGEST_HELPER); } public static RoleQueryHelper getRoleQueryHelper() { return getComponent(ROLE_QUERY_HELPER); } public static LdapManager getLdapManager() { return getComponent(LDAP_MANAGER); } public static ActivityHelper getActivityHelper() { return getComponent(ACTIVITY_HELPER); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Mon Jun 17 13:35:51 UTC 2024 - 20.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SystemHelper.java
ComponentUtil.getRelatedContentHelper().update(); ComponentUtil.getRelatedQueryHelper().update(); ComponentUtil.getKeyMatchHelper().update(); ComponentUtil.getLdapManager().updateConfig(); if (resetJobs) { ComponentUtil.getJobManager().reboot(); } updateSystemProperties(); ComponentUtil.getRankFusionProcessor().update(); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Oct 17 12:10:08 UTC 2024 - 27.2K bytes - Viewed (0)