- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 116 for userX (1.94 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) -
src/main/java/org/codelibs/fess/app/web/admin/user/AdminUserAction.java
return OptionalEntity.empty(); } /** * Returns the user entity based on the provided form data, applying any necessary transformations. * * @param form the form containing user data for retrieval and update * @return optional user entity populated from the form */ public static OptionalEntity<User> getUser(final CreateForm form) { return getEntity(form).map(entity -> {
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 20 13:56:35 UTC 2025 - 19.3K 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) -
MIGRATION.md
**Via Admin UI**: 1. Navigate to **System > Backup** 2. Select configuration items to export: - Web Crawling Config - File Crawling Config - Data Store Config - Scheduled Jobs - Users and Roles - System Settings 3. Click **Export** 4. Download JSON file **Via API**: ```bash # Export all configurations curl -X GET "http://localhost:8080/api/admin/backup/export" \
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 06 12:40:11 UTC 2025 - 23.2K 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)