Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 71 for LABEL (0.15 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/labeltype/AdminLabeltypeAction.java

    import jakarta.annotation.Resource;
    
    /**
     * Admin action for Label Type management.
     *
     */
    public class AdminLabeltypeAction extends FessAdminAction {
    
        /**
         * Default constructor.
         */
        public AdminLabeltypeAction() {
            super();
        }
    
        /** The role name for label type administration. */
        public static final String ROLE = "admin-labeltype";
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 18.5K bytes
    - Viewed (0)
  2. src/main/webapp/WEB-INF/view/admin/general/admin_general.jsp

                                                <label for="webApiJson" class="form-check-label">
                                                     <la:message key="labels.enabled"/>
                                                </label>
                                            </div>
                                        </div>
                                    </div>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jun 14 00:36:40 UTC 2025
    - 39.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/labeltype/CreateForm.java

        /**
         * The value of the label type (alphanumeric and underscore only).
         */
        @Required
        @Size(max = 100)
        @Pattern(regexp = "^[a-zA-Z0-9_]+$")
        public String value;
    
        /**
         * The paths to include for this label type.
         */
        @CustomSize(maxKey = "form.admin.max.input.size")
        public String includedPaths;
    
        /**
         * The paths to exclude for this label type.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/pager/LabelTypePager.java

        private int currentPageNumber;
    
        /** The ID of the label type. */
        public String id;
    
        /** The name of the label type. */
        public String name;
    
        /** The value of the label type. */
        public String value;
    
        /** The sort order of the label type. */
        public String sortOrder;
    
        /** The creator of the label type. */
        public String createdBy;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/base/FessSearchAction.java

        /**
         * Default constructor.
         */
        public FessSearchAction() {
            super();
        }
    
        /** The field name used for label-based search filtering. */
        protected static final String LABEL_FIELD = "label";
    
        /** Helper for performing search operations and managing search requests. */
        @Resource
        protected SearchHelper searchHelper;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 13.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/labeltype/EditForm.java

    import jakarta.validation.constraints.Size;
    
    /**
     * Form class for editing label types in the admin interface.
     * This form extends CreateForm to include fields necessary for updating existing label type entries,
     * including tracking information for optimistic locking and audit trails.
     * Label types are used to categorize and filter documents in search results.
     *
     */
    public class EditForm extends CreateForm {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/systeminfo/AdminSysteminfoAction.java

         *
         * @param label the item label
         * @param value the item value
         * @return map containing the formatted key-value pair
         */
        protected static Map<String, String> createItem(final Object label, final Object value) {
            final Map<String, String> map = new HashMap<>(2);
            map.put(Constants.ITEM_LABEL, label != null ? label.toString() : StringUtil.EMPTY);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.7K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImplTest.java

            indexUpdateCallback.store(paramMap, dataMap);
    
            // Verify labels are merged
            String[] labels = (String[]) dataMap.get("label");
            assertEquals(3, labels.length);
            Set<String> labelSet = new HashSet<>();
            for (String label : labels) {
                labelSet.add(label);
            }
            assertTrue(labelSet.contains("existing"));
            assertTrue(labelSet.contains("label1"));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 24.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessMailDeliveryDepartmentCreator.java

        //                                                                       Resolve Label
        //                                                                       =============
        protected String resolveLabelIfNeeds(final MessageManager messageManager, final Locale locale, final String label) {
            return label.startsWith("labels.") ? messageManager.getMessage(locale, label) : label;
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/api/admin/labeltype/EditBody.java

    package org.codelibs.fess.app.web.api.admin.labeltype;
    
    import org.codelibs.fess.app.web.admin.labeltype.EditForm;
    
    /**
     * Request body class for label type edit operations in the admin REST API.
     * This class extends EditForm to inherit the necessary form validation and binding capabilities
     * for label type management operations.
     */
    public class EditBody extends EditForm {
    
        /**
         * Default constructor.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.1K bytes
    - Viewed (0)
Back to top