Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 160 for Identifier (0.06 sec)

  1. src/main/java/org/codelibs/fess/helper/ProcessHelper.java

                }
            }
        }
    
        /**
         * Starts a new process with the given session ID and command list.
         * Uses default buffer size and no output callback.
         *
         * @param sessionId unique identifier for the process session
         * @param cmdList list of command and arguments to execute
         * @param pbCall callback to configure the ProcessBuilder
         * @return JobProcess representing the started process
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/job/ExecJob.java

        private static final Logger logger = LogManager.getLogger(ExecJob.class);
    
        /** The job executor responsible for running this job */
        protected JobExecutor jobExecutor;
    
        /** Unique session identifier for this job execution */
        protected String sessionId;
    
        /** Flag indicating whether to use local Fesen instance */
        protected boolean useLocalFesen = true;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 14.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/service/RelatedQueryService.java

            return relatedQueryList;
        }
    
        /**
         * Retrieves a specific related query by its unique identifier.
         *
         * @param id the unique identifier of the related query to retrieve
         * @return an OptionalEntity containing the RelatedQuery if found, or empty if not found
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/dict/DictionaryFile.java

     */
    public abstract class DictionaryFile<T extends DictionaryItem> {
        /** The dictionary manager responsible for this file. */
        protected DictionaryManager dictionaryManager;
    
        /** The unique identifier for this dictionary file. */
        protected String id;
    
        /** The file path of this dictionary. */
        protected String path;
    
        /** The timestamp when this dictionary file was created or last modified. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/dict/DictionaryItem.java

     *
     */
    public abstract class DictionaryItem {
        /** The unique identifier for this dictionary item */
        protected long id;
    
        /**
         * Default constructor for DictionaryItem.
         * Creates a new dictionary item with default values.
         */
        public DictionaryItem() {
            // Default constructor
        }
    
        /**
         * Gets the unique identifier for this dictionary item.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/service/DuplicateHostService.java

            }).createPageNumberList());
    
            return duplicateHostList;
        }
    
        /**
         * Retrieves a duplicate host configuration by its unique identifier.
         *
         * @param id the unique identifier of the duplicate host configuration
         * @return an OptionalEntity containing the DuplicateHost if found, empty otherwise
         * @throws IllegalArgumentException if id is null or empty
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.4K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/service/RequestHeaderService.java

            }).createPageNumberList());
    
            return requestHeaderList;
        }
    
        /**
         * Retrieves a specific request header by its ID.
         *
         * @param id the unique identifier of the request header
         * @return an OptionalEntity containing the request header if found, empty otherwise
         */
        public OptionalEntity<RequestHeader> getRequestHeader(final String id) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/base/login/SpnegoCredential.java

         *
         * @param username The username obtained from SPNEGO authentication
         */
        public SpnegoCredential(final String username) {
            this.username = username;
        }
    
        /**
         * Gets the user identifier from this credential.
         *
         * @return The username from SPNEGO authentication
         */
        @Override
        public String getUserId() {
            return username;
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/user/EditForm.java

     *
     */
    public class EditForm extends CreateForm {
    
        /**
         * Creates a new EditForm instance.
         */
        public EditForm() {
            super();
        }
    
        /**
         * The unique identifier of the user being edited.
         * This is a required field for identifying which user 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.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/dict/kuromoji/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;
    
        /** Token (word) to be added to the dictionary */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2K bytes
    - Viewed (0)
Back to top