- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 635 for uker (0.02 sec)
-
src/main/java/org/codelibs/fess/mylasta/action/FessUserBean.java
return user.getRoleNames(); } public String[] getGroups() { return user.getGroupNames(); } public boolean isEditable() { return user.isEditable(); } public boolean hasRole(final String role) { return stream(user.getRoleNames()).get(stream -> stream.anyMatch(s -> s.equals(role))); } public boolean hasRoles(final String[] acceptedRoles) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 5.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java
* When enabled, user search queries are logged for analysis. */ @Size(max = 10) public String searchLog; /** * Enable or disable user information tracking. * When enabled, user information is stored and tracked. */ @Size(max = 10) public String userInfo; /** * Enable or disable user favorite functionality.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/user/EditForm.java
} /** * The unique identifier of the user being edited. * This is a required field for identifying which user to update. */ @Required @Size(max = 1000) public String id; /** * The version number of the user for optimistic locking. * This field is required to prevent concurrent modification conflicts * by ensuring the user hasn't been modified by another process. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/ldap/LdapManagerTest.java
permissionList.add("2aaa"); allowEmptyPermission.set(true); assertTrue(ldapManager.allowEmptyGroupAndRole(user)); allowEmptyPermission.set(false); assertTrue(ldapManager.allowEmptyGroupAndRole(user)); permissionList.clear(); permissionList.add("Raaa"); allowEmptyPermission.set(true);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 5.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/SambaHelperTest.java
public boolean isLdapIgnoreNetbiosName() { return false; } }); sambaHelper.init(); // Test User SID (type 1) assertEquals("1Test User", sambaHelper.getAccountId(createMockSID(1, "Test User"))); // Test Domain Group SID (type 2) assertEquals("2Domain Group", sambaHelper.getAccountId(createMockSID(2, "Domain Group")));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 14.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/UserAgentHelper.java
} /** The HTTP header name for User-Agent */ protected static final String USER_AGENT = "user-agent"; /** The request attribute key for storing cached user agent type */ protected static final String USER_AGENT_TYPE = "ViewHelper.UserAgent"; /** * Determines the user agent type from the current HTTP request. * The method analyzes the User-Agent header to categorize the browser type
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/PurgeLogJob.java
resultBuf.append(e.getMessage()).append("\n"); } // purge user info try { final int days = ComponentUtil.getFessConfig().getPurgeUserInfoDay(); if (days >= 0) { userInfoService.deleteBefore(days); } else { resultBuf.append("Skipped to purge user info logs.\n"); } } catch (final Exception e) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/user/cbean/ca/bs/BsRoleCA.java
*/ package org.codelibs.fess.opensearch.user.cbean.ca.bs; import org.codelibs.fess.opensearch.user.allcommon.EsAbstractConditionAggregation; import org.codelibs.fess.opensearch.user.allcommon.EsAbstractConditionQuery; import org.codelibs.fess.opensearch.user.cbean.ca.RoleCA; import org.codelibs.fess.opensearch.user.cbean.cq.RoleCQ; import org.codelibs.fess.opensearch.user.cbean.cq.bs.BsRoleCQ;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/auth/chain/CommandChain.java
import org.codelibs.fess.exception.CommandExecutionException; import org.codelibs.fess.opensearch.user.exentity.User; /** * Authentication chain implementation that executes external commands for user operations. * Provides user management through command-line tool execution for password changes and user deletion. */ public class CommandChain implements AuthenticationChain {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 13.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/user/CreateForm.java
/** * The attributes map for the user. */ public Map<String, String> attributes = new HashMap<>(); /** * The roles assigned to the user. */ public String[] roles; /** * The groups assigned to the user. */ public String[] groups; /** * Initializes the form with default values for creating a new user. */ public void initialize() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.9K bytes - Viewed (0)