- Sort Score
- Result 10 results
- Languages All
Results 71 - 80 of 354 for Cole (0.02 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/relatedquery/AdminRelatedqueryAction.java
/** * Default constructor. */ public AdminRelatedqueryAction() { super(); } /** Role name for admin related query operations */ public static final String ROLE = "admin-relatedquery"; private static final Logger logger = LogManager.getLogger(AdminRelatedqueryAction.class);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 16.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/user/exbhv/RoleBhv.java
import java.util.regex.Pattern; import java.util.stream.Collectors; import org.codelibs.core.misc.Pair; import org.codelibs.fess.opensearch.user.bsbhv.BsRoleBhv; import org.codelibs.fess.opensearch.user.exentity.Role; import org.codelibs.fess.util.ComponentUtil; import org.dbflute.exception.IllegalBehaviorStateException; import org.dbflute.util.DfTypeUtil; /** * @author FreeGen */ public class RoleBhv extends BsRoleBhv {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 2.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/webconfig/AdminWebconfigAction.java
public class AdminWebconfigAction extends FessAdminAction { /** * Default constructor. */ public AdminWebconfigAction() { super(); } /** Role name for admin web config operations */ public static final String ROLE = "admin-webconfig"; private static final Logger logger = LogManager.getLogger(AdminWebconfigAction.class);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 21K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/annotation/SecuredTest.java
assertNotNull(valueMethod); assertEquals(String[].class, valueMethod.getReturnType()); assertEquals(0, valueMethod.getParameterCount()); } // Test class with single role @Secured({ "ROLE_USER" }) static class SingleRoleClass { public void testMethod() { } } // Test class with multiple roles @Secured({ "ROLE_USER", "ROLE_ADMIN" })
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 15.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/storage/AdminStorageAction.java
} @Override protected String getActionRole() { return ROLE; } /** * Displays the storage management index page. * * @return HTML response for the storage list page */ @Execute @Secured({ ROLE, ROLE + VIEW }) public HtmlResponse index() { saveToken(); return asListHtml(StringUtil.EMPTY); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 25.1K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/plugin/admin_plugin_installplugin.jsp
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Fri Feb 14 12:15:45 UTC 2020 - 5.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/role/CreateForm.java
public Integer crudMode; /** * The name of the role. */ @Required @Size(max = 100) public String name; /** * The attributes map for the role. */ public Map<String, String> attributes = new HashMap<>(); /** * Initializes the form with default values for creating a new role. */ public void initialize() { crudMode = CrudMode.CREATE;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/maintenance/AdminMaintenanceAction.java
/** * Default constructor for AdminMaintenanceAction. */ public AdminMaintenanceAction() { super(); } /** * Role identifier for admin maintenance operations. */ public static final String ROLE = "admin-maintenance"; // ===================================================================================
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 18K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/systeminfo/AdminSysteminfoAction.java
public class AdminSysteminfoAction extends FessAdminAction { /** * Default constructor. */ public AdminSysteminfoAction() { super(); } /** Role name for admin system info operations */ public static final String ROLE = "admin-systeminfo"; private static final String MASKED_VALUE = "XXXXXXXX"; // ===================================================================================
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/role/SearchForm.java
* either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.app.web.admin.role; /** * The search form for Role. */ public class SearchForm { /** * Default constructor for SearchForm. */ public SearchForm() { } /** * The ID field for searching roles.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 905 bytes - Viewed (0)