- Sort Score
- Num 10 results
- Language All
Results 21 - 30 of 282 for role3 (0.03 seconds)
-
src/main/java/org/codelibs/fess/app/web/admin/role/EditForm.java
*/ package org.codelibs.fess.app.web.admin.role; import org.lastaflute.web.validation.Required; import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure; import jakarta.validation.constraints.Size; /** * Form class for editing user roles in the admin interface. * This form extends CreateForm to include fields necessary for updating existing role entries,
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 2.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/entity/FessUser.java
* Provides access to user name, roles, groups, and permissions. */ public interface FessUser extends Serializable { /** * Gets the user's display name. * @return The user's name. */ String getName(); /** * Gets the user's assigned role names. * @return Array of role names. */ String[] getRoleNames(); /**Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 1.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/SuggestHelper.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 22.3K bytes - Click Count (0) -
src/main/resources/fess_label_en.properties
labels.oic_base_url=Base URL labels.oic_default_groups=Default Groups labels.oic_default_roles=Default Roles labels.general_menu_saml=SAML labels.saml_sp_base_url=SP Base URL labels.saml_attribute_group_name=Group Attribute Name labels.saml_attribute_role_name=Role Attribute Name labels.saml_default_groups=Default Groups labels.saml_default_roles=Default Roles labels.general_menu_spnego=SPNEGO labels.spnego_krb5_conf=Krb5 Config
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 11:54:13 GMT 2026 - 48.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/role/SearchForm.java
* 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. */ public String id;Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 905 bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/PopularWordHelper.java
* @param roles array of roles to filter results * @param fields array of fields to search in * @param excludes array of words to exclude from results * @return list of popular words matching the criteria */ public List<String> getWordList(final SearchRequestType searchRequestType, final String seed, final String[] tags, final String[] roles,Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 7.3K bytes - Click Count (0) -
CLAUDE.md
## Architecture Patterns ### Action (Controller) - Hierarchy: `TypicalAction` → `FessBaseAction` → `FessAdminAction`/`FessSearchAction` - `@Execute` marks web endpoints - `@Resource` for DI - `@Secured({ "role", "role-view" })` for authorization - Return `HtmlResponse` for JSP, `JsonResponse` for APIs ### Service - Inject behaviors (Bhv) for data access - Use `OptionalEntity<T>` for nullable returns
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 19 09:48:10 GMT 2026 - 7.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/general/AdminGeneralAction.java
@Override protected String getActionRole() { return ROLE; } // =================================================================================== // /** * Displays the general settings index page. * * @return HTML response for the general settings page */ @Execute @Secured({ ROLE, ROLE + VIEW }) public HtmlResponse index() { saveToken();Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 05:54:31 GMT 2026 - 27.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/dataconfig/AdminDataconfigAction.java
*/ @Execute @Secured({ ROLE, ROLE + VIEW }) public HtmlResponse index() { 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 })Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 11:54:13 GMT 2026 - 21K bytes - Click Count (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 * @return HTML response redirecting to the appropriate admin interface */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 2.6K bytes - Click Count (0)