- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 701 for user2 (0.04 sec)
-
src/main/resources/fess_indices/fess_user.user.json
Shinsuke Sugaya <******@****.***> 1638450896 +0900
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Dec 02 13:14:56 UTC 2021 - 173 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) { if (StringUtil.isBlank(user.getSurname())) { user.setSurname(user.getName()); } ComponentUtil.getAuthenticationManager().insert(user);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.7K 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
*/ package org.codelibs.fess.app.web.admin.user; import org.lastaflute.web.validation.Required; import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure; import jakarta.validation.constraints.Size; /** * Form class for editing users in the admin interface. * This form extends CreateForm to include fields necessary for updating existing user entries, * including tracking information for optimistic locking.
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/main/java/org/codelibs/fess/app/web/base/FessLoginAction.java
} /** * Redirects an authenticated user to the appropriate admin interface based on their roles. * Users with admin roles are redirected to the dashboard, while other users are redirected * to their designated admin action class or to the root if no specific action is available. * * @param user the authenticated user bean containing role information
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/GroupService.java
import org.codelibs.fess.app.pager.GroupPager; import org.codelibs.fess.mylasta.direction.FessConfig; import org.codelibs.fess.opensearch.user.cbean.GroupCB; import org.codelibs.fess.opensearch.user.exbhv.GroupBhv; import org.codelibs.fess.opensearch.user.exbhv.UserBhv; import org.codelibs.fess.opensearch.user.exentity.Group; import org.codelibs.fess.util.ComponentUtil; import org.dbflute.cbean.result.PagingResultBean;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/user/SearchForm.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.app.web.admin.user; /** * The search form for User. */ public class SearchForm { /** * Default constructor for SearchForm. */ public SearchForm() { } /** * The ID field for searching users. */ public String id;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 905 bytes - Viewed (0) -
android/guava/src/com/google/common/reflect/TypeParameter.java
* } * } * * @author Ben Yu * @since 12.0 */ /* * A nullable bound would let users create a TypeParameter instance for a parameter with a nullable * bound. However, it would also let them create `new TypeParameter<@Nullable T>() {}`, which * wouldn't behave as users might expect. Additionally, it's not clear how the TypeToken API could
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 2.4K bytes - Viewed (0) -
guava/src/com/google/common/reflect/TypeParameter.java
* } * } * * @author Ben Yu * @since 12.0 */ /* * A nullable bound would let users create a TypeParameter instance for a parameter with a nullable * bound. However, it would also let them create `new TypeParameter<@Nullable T>() {}`, which * wouldn't behave as users might expect. Additionally, it's not clear how the TypeToken API could
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 2.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/RoleService.java
import org.codelibs.fess.app.pager.RolePager; import org.codelibs.fess.mylasta.direction.FessConfig; import org.codelibs.fess.opensearch.user.cbean.RoleCB; import org.codelibs.fess.opensearch.user.exbhv.RoleBhv; import org.codelibs.fess.opensearch.user.exbhv.UserBhv; import org.codelibs.fess.opensearch.user.exentity.Role; import org.codelibs.fess.util.ComponentUtil; import org.dbflute.cbean.result.PagingResultBean;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.4K bytes - Viewed (0)