Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for IDTYPE (0.24 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/AccessResultImpl.java

     *
     * @param <IDTYPE> the type of the identifier for the access result
     */
    public class AccessResultImpl<IDTYPE> implements AccessResult<IDTYPE> {
    
        /**
         * Creates a new instance of AccessResultImpl.
         */
        public AccessResultImpl() {
            // NOP
        }
    
        /** The unique identifier for the access result. */
        protected IDTYPE id;
    
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 9K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/AccessResultDataImpl.java

    import org.codelibs.fess.crawler.Constants;
    
    /**
     * Implementation of the {@link AccessResultData} interface.
     *
     * @param <IDTYPE> the type of the identifier
     */
    public class AccessResultDataImpl<IDTYPE> implements AccessResultData<IDTYPE> {
        /** The unique identifier for the access result data. */
        protected IDTYPE id;
    
        /** The name of the transformer associated with this access result data. */
        protected String transformerName;
    
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 3.6K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/AccessResultData.java

    /**
     * Interface representing the data of an access result.
     *
     * @param <IDTYPE> the type of the identifier
     */
    public interface AccessResultData<IDTYPE> {
    
        /**
         * Retrieves the unique identifier of the access result data.
         *
         * @return the unique identifier of type IDTYPE.
         */
        IDTYPE getId();
    
        /**
         * Sets the ID of the access result data.
         *
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sat Mar 15 06:52:00 UTC 2025
    - 2.2K bytes
    - Viewed (0)
  4. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/UrlQueueImpl.java

     * HTTP method, URL, metadata, encoding, parent URL, depth, last modified time,
     * creation time, and weight.
     *
     * @param <IDTYPE> the type of the identifier for the URL queue entry
     */
    public class UrlQueueImpl<IDTYPE> implements UrlQueue<IDTYPE> {
        /** The unique identifier for the URL queue entry. */
        protected IDTYPE id;
    
        /** The session ID associated with this URL queue. */
        protected String sessionId;
    
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 6.1K bytes
    - Viewed (0)
  5. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/AccessResult.java

     */
    package org.codelibs.fess.crawler.entity;
    
    /**
     * Represents the result of accessing a resource.
     *
     * @param <IDTYPE> the type of the identifier for the access result
     */
    public interface AccessResult<IDTYPE> {
    
        /**
         * Initializes the access result with the given response and result data.
         *
         * @param responseData the response data
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  6. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/UrlQueue.java

     * It provides methods to get and set various properties of a URL queue entry.
     *
     * @param <IDTYPE> the type of the identifier for the URL queue entry
     */
    public interface UrlQueue<IDTYPE> {
    
        /**
         * Retrieves the unique identifier of the URL queue.
         *
         * @return the unique identifier of type IDTYPE.
         */
        IDTYPE getId();
    
        /**
         * Sets the unique identifier for the URL queue.
         *
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sat Mar 15 06:52:00 UTC 2025
    - 4.3K bytes
    - Viewed (0)
Back to top