Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 134 for toidentifier (0.23 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/pathmap/EditForm.java

     *
     */
    public class EditForm extends CreateForm {
    
        /**
         * Creates a new EditForm instance.
         */
        public EditForm() {
            super();
        }
    
        /**
         * The unique identifier of the path mapping configuration being edited.
         * This is a required field for identifying which path map to update.
         */
        @Required
        @Size(max = 1000)
        public String id;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/relatedcontent/EditForm.java

     *
     */
    public class EditForm extends CreateForm {
    
        /**
         * Creates a new EditForm instance.
         */
        public EditForm() {
            super();
        }
    
        /**
         * The unique identifier of the related content configuration being edited.
         * This is a required field for identifying which related content entry to update.
         */
        @Required
        @Size(max = 1000)
        public String id;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/webauth/EditForm.java

     */
    public class EditForm extends CreateForm {
    
        /**
         * Creates a new EditForm instance.
         */
        public EditForm() {
            super();
        }
    
        /**
         * The unique identifier of the web authentication configuration being edited.
         * This is a required field for identifying which web authentication entry to update.
         */
        @Required
        @Size(max = 1000)
        public String id;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideItem.java

        private String newInput;
    
        /** The new output stem, if updated. */
        private String newOutput;
    
        /**
         * Constructs a new stemmer override item.
         *
         * @param id     The unique identifier of the item.
         * @param input  The input word.
         * @param output The output stem.
         */
        public StemmerOverrideItem(final long id, final String input, final String output) {
            this.id = id;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/service/CrawlingInfoService.java

            return crawlingInfoList;
        }
    
        /**
         * Retrieves a single crawling information record by its unique identifier.
         *
         * @param id the unique identifier of the crawling information record
         * @return an OptionalEntity containing the CrawlingInfo if found, empty otherwise
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/relatedquery/EditForm.java

    /**
     * The edit form for Related Query.
     * This form extends CreateForm and adds fields necessary for editing existing related query entries.
     */
    public class EditForm extends CreateForm {
    
        /** Unique identifier for the related query entry */
        @Required
        @Size(max = 1000)
        public String id;
    
        /** Username of the user who last updated this entry */
        @Size(max = 1000)
        public String updatedBy;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/service/FileConfigService.java

                cb.query().setFileConfigId_Equal(fileConfigId);
            });
        }
    
        /**
         * Retrieves a file configuration by its unique identifier.
         *
         * @param id the unique identifier of the file configuration
         * @return an OptionalEntity containing the file configuration if found, empty otherwise
         */
        public OptionalEntity<FileConfig> getFileConfig(final String id) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.4K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/entity/SearchLogEvent.java

     * written to log files or stored in the search index. Implementations include
     * search logs, click logs, favorite logs, and user information logs.
     */
    public interface SearchLogEvent {
        /**
         * Gets the unique identifier for this search log event.
         *
         * @return The event ID
         */
        String getId();
    
        /**
         * Gets the version number for this search log event.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/dict/protwords/CreateForm.java

     *
     */
    public class CreateForm {
    
        /**
         * Creates a new CreateForm instance.
         */
        public CreateForm() {
            // Default constructor
        }
    
        /** Dictionary identifier */
        @Required
        public String dictId;
    
        /** CRUD operation mode (CREATE, EDIT, etc.) */
        @ValidateTypeFailure
        public Integer crudMode;
    
        /** Word or phrase to be protected from analysis */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/scheduler/EditForm.java

     *
     */
    public class EditForm extends CreateForm {
    
        /**
         * Creates a new EditForm instance.
         */
        public EditForm() {
            super();
        }
    
        /**
         * The unique identifier of the scheduler being edited.
         * This is a required field for identifying which scheduler to update.
         */
        @Required
        @Size(max = 1000)
        public String id;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.8K bytes
    - Viewed (0)
Back to top