- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 77 for userX (0.43 sec)
-
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: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 10.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/UserService.java
* Handles user authentication setup and database persistence. * If the surname is blank, it will be set to the user's name. * * @param user the user entity to store */ public void store(final User user) { final String username = user.getName(); final boolean isUpdate = StringUtil.isNotBlank(user.getId()); if (logger.isDebugEnabled()) {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Mon Nov 24 02:07:40 UTC 2025 - 9.2K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/helper/RobotsTxtHelperTest.java
assertFalse(robotsTxt.allows("/admin/users.php", "WildcardBot")); assertTrue(robotsTxt.allows("/admin/", "WildcardBot")); // no .php extension assertTrue(robotsTxt.allows("/admin/login.html", "WildcardBot")); // not .php // Disallow: /*/private/ - should block private directories under any parent assertFalse(robotsTxt.allows("/users/private/", "WildcardBot"));
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 20.6K 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: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 14.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/entraid/EntraIdAuthenticator.java
* to avoid login delays when users have many nested group memberships. * @param user The Entra ID user to update. */ public void updateMemberOf(final EntraIdUser user) { if (logger.isDebugEnabled()) { logger.debug("[updateMemberOf] Starting for user: {}", user.getName()); } final List<String> groupList = new ArrayList<>();Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 56.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java
} } /** * Resolves the SPNEGO credential to a user entity. * * This method handles the resolution of SPNEGO credentials by checking * if the user is an admin user or needs to be authenticated through LDAP. * * @param resolver The credential resolver to use for user lookup */ @OverrideRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 17.8K bytes - Viewed (3) -
src/test/java/org/codelibs/fess/suggest/index/SuggestIndexerTest.java
// User String[][] readings2 = new String[1][]; readings2[0] = new String[] { "user1" }; items[1] = new SuggestItem(new String[] { "ユーザー1" }, readings2, new String[] { "content" }, 1, 0, -1, new String[] { "tag1" }, new String[] { SuggestConstants.DEFAULT_ROLE }, null, SuggestItem.Kind.USER); suggester.indexer().index(items);Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 24 03:40:05 UTC 2025 - 28.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/saml/SamlAuthenticator.java
* </pre> * * <h2>Optional Configuration</h2> * <pre> * # User attribute mapping * saml.attribute.group.name=groups * saml.attribute.role.name=roles * * # Default groups/roles for authenticated users * saml.default.groups=user * saml.default.roles=user * </pre> * * <h2>Security Settings (Production)</h2>
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/app/web/api/admin/user/ApiAdminUserAction.java
/** The user service for managing user settings. */ @Resource private UserService userService; /** * Retrieves user settings with pagination. * * @param body the search parameters for filtering and pagination * @return JSON response containing user settings list */ // GET /api/admin/user/settings // PUT /api/admin/user/settings @ExecuteRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Mon Nov 24 02:07:40 UTC 2025 - 7.8K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/RobotsTxt.java
* <li>Manages crawl delay settings per user agent</li> * <li>Stores sitemap URLs listed in robots.txt</li> * </ul> * * <p>The class uses case-insensitive pattern matching for user agents and supports * wildcard characters (*) in user agent strings. When multiple directives match a user agent, * the most specific (longest) match is used.</p> * */ public class RobotsTxt {
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 18.5K bytes - Viewed (0)