- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 270 for Role (0.01 sec)
-
src/main/resources/fess_indices/fess_user.role/role.bulk
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Dec 02 13:14:56 UTC 2021 - 144 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/user/exentity/Role.java
package org.codelibs.fess.opensearch.user.exentity; import java.util.HashMap; import java.util.Map; import org.codelibs.fess.opensearch.user.bsentity.BsRole; /** * @author FreeGen */ public class Role extends BsRole { private static final long serialVersionUID = 1L; private Map<String, String> attributes; public Long getVersionNo() { return asDocMeta().version(); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 1.8K bytes - Viewed (0) -
src/main/resources/fess_indices/fess_user.role/role.json
Shinsuke Sugaya <******@****.***> 1638450896 +0900
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Dec 02 13:14:56 UTC 2021 - 80 bytes - Viewed (0) -
src/main/resources/fess_indices/fess_user.role.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/web/admin/AdminAction.java
AdminMaintenanceAction.ROLE + VIEW, // AdminSereqAction.ROLE, // AdminSereqAction.ROLE + VIEW, // AdminDashboardAction.ROLE, // AdminDashboardAction.ROLE + VIEW, // AdminWizardAction.ROLE, // AdminWizardAction.ROLE + VIEW, // AdminGeneralAction.ROLE, // AdminGeneralAction.ROLE + VIEW, //
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 19K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/user/bsbhv/BsRoleBhv.java
@Override protected Class<? extends Role> typeOfSelectedEntity() { return Role.class; } @Override protected Class<Role> typeOfHandlingEntity() { return Role.class; } @Override protected Class<RoleCB> typeOfHandlingConditionBean() { return RoleCB.class; } public ListResultBean<Role> selectList(CBCall<RoleCB> cbLambda) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 8.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/RoleService.java
} /** * Gets a role by its ID. * @param id The ID of the role. * @return An optional entity of the role. */ public OptionalEntity<Role> getRole(final String id) { return roleBhv.selectByPK(id); } /** * Stores a role. * @param role The role to store. */ public void store(final Role role) { ComponentUtil.getLdapManager().insert(role);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.4K bytes - Viewed (0) -
android/guava/src/com/google/common/math/MathPreconditions.java
final class MathPreconditions { @CanIgnoreReturnValue static int checkPositive(String role, int x) { if (x <= 0) { throw new IllegalArgumentException(role + " (" + x + ") must be > 0"); } return x; } @CanIgnoreReturnValue static long checkPositive(String role, long x) { if (x <= 0) { throw new IllegalArgumentException(role + " (" + x + ") must be > 0"); } return x; }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 03:10:51 UTC 2024 - 3.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/crawlinginfo/AdminCrawlinginfoAction.java
*/ @Execute @Secured({ ROLE, ROLE + VIEW }) public HtmlResponse index() { saveToken(); return asListHtml(); } /** * Show the list page. * @param pageNumber The page number. * @param form The search form. * @return The HTML response. */ @Execute @Secured({ ROLE, ROLE + VIEW })
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 11.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/joblog/AdminJoblogAction.java
runtime.registerData("helpLink", systemHelper.getHelpLink(fessConfig.getOnlineHelpNameJoblog())); } /** * Returns the action role for this admin action. * * @return the role name */ @Override protected String getActionRole() { return ROLE; } // ===================================================================================
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 10.6K bytes - Viewed (0)