Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 136 for initiatives (0.14 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/dict/stopwords/CreateForm.java

        @ValidateTypeFailure
        public Integer crudMode;
    
        /** The stopword to be added to the dictionary */
        @Required
        @Size(max = 1000)
        public String input;
    
        /**
         * Initializes the form with default values for creating a new stopword entry.
         */
        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.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/dict/stemmeroverride/CreateForm.java

        @Required
        @Size(max = 1000)
        public String input;
    
        /** The desired stem output for the input word */
        @Required
        @Size(max = 1000)
        public String output;
    
        /**
         * Initializes the form with default values for creating a new stemmer override entry.
         */
        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.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/relatedquery/CreateForm.java

        @Size(max = 1000)
        public String createdBy;
    
        /**
         * The timestamp when these related queries were created.
         */
        @ValidateTypeFailure
        public Long createdTime;
    
        /**
         * Initializes the form with default values for creating new related queries.
         */
        public void initialize() {
            crudMode = CrudMode.CREATE;
            createdBy = ComponentUtil.getSystemHelper().getUsername();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/reqheader/CreateForm.java

        @Size(max = 1000)
        public String createdBy;
    
        /**
         * The timestamp when this request header was created.
         */
        @ValidateTypeFailure
        public Long createdTime;
    
        /**
         * Initializes the form with default values for creating a new request header.
         */
        public void initialize() {
            crudMode = CrudMode.CREATE;
            createdBy = ComponentUtil.getSystemHelper().getUsername();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/dict/kuromoji/CreateForm.java

        @Required
        @Size(max = 1000)
        public String reading;
    
        /** Part of speech tag for the token */
        @Required
        @Size(max = 1000)
        public String pos;
    
        /**
         * Initializes the form with default values for creating a new Kuromoji dictionary entry.
         */
        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
    - 2K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/plugin/DeleteForm.java

     * Contains validation rules for plugin name and version information.
     */
    public class DeleteForm {
    
        /**
         * Creates a new instance of DeleteForm.
         * This constructor initializes the form for plugin deletion operations
         * in the admin interface with validation rules for plugin information.
         */
        public DeleteForm() {
            // Default constructor with explicit documentation
        }
    
    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/web/admin/role/CreateForm.java

        @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)
  8. src/main/java/org/codelibs/fess/app/web/admin/keymatch/CreateForm.java

         */
        @Size(max = 255)
        public String createdBy;
    
        /**
         * The timestamp when this key match was created.
         */
        @ValidateTypeFailure
        public Long createdTime;
    
        /**
         * Initializes the form with default values.
         */
        public void initialize() {
            crudMode = CrudMode.CREATE;
            maxSize = 10;
            boost = 100.0f;
            createdBy = ComponentUtil.getSystemHelper().getUsername();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/duplicatehost/CreateForm.java

        @Size(max = 1000)
        public String createdBy;
    
        /** The timestamp when this duplicate host entry was created */
        @ValidateTypeFailure
        public Long createdTime;
    
        /**
         * Initializes the form with default values for creating a new duplicate host entry.
         */
        public void initialize() {
            crudMode = CrudMode.CREATE;
            sortOrder = 0;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/pathmap/CreateForm.java

         */
        @ValidateTypeFailure
        public Long createdTime;
    
        /**
         * The user agent string for this path mapping.
         */
        @Size(max = 1000)
        public String userAgent;
    
        /**
         * Initializes the form with default values for creating a new path mapping.
         */
        public void initialize() {
            crudMode = CrudMode.CREATE;
            sortOrder = 0;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.5K bytes
    - Viewed (0)
Back to top