Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 334 for associated (0.07 sec)

  1. src/main/java/org/codelibs/fess/app/service/FileConfigService.java

         */
        @Resource
        protected FileConfigBhv fileConfigBhv;
    
        /**
         * Behavior class for file authentication database operations.
         * Manages authentication configurations associated with file configurations.
         */
        @Resource
        protected FileAuthenticationBhv fileAuthenticationBhv;
    
        /**
         * Fess configuration object providing access to application settings.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/exception/UserRoleLoginException.java

         */
        public UserRoleLoginException(final Class<RootAction> actionClass) {
            this.actionClass = actionClass;
        }
    
        /**
         * Gets the action class associated with this exception.
         *
         * @return the action class that requires specific user roles
         */
        public Class<?> getActionClass() {
            return actionClass;
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/go/GoForm.java

        /**
         * Hash value for security or validation purposes.
         * This field is optional and used for request verification.
         */
        public String hash;
    
        /**
         * Query identifier associated with the search that led to this document access.
         * This is required for tracking and analytics purposes.
         */
        @Required
        public String queryId;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/reqheader/CreateForm.java

        public String name;
    
        /**
         * The value of the request header.
         */
        @Required
        @Size(max = 1000)
        public String value;
    
        /**
         * The web configuration ID associated with this request header.
         */
        @Required
        @Size(max = 1000)
        public String webConfigId;
    
        /**
         * The username of who created this request header.
         */
        @Size(max = 1000)
    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/jcifs/util/transport/Response.java

         */
        void setExpiration(Long exp);
    
        /**
         * Resets this response to its initial state.
         */
        void reset();
    
        /**
         * Gets the exception associated with this response.
         *
         * @return an exception linked to an error
         */
        Exception getException();
    
        /**
         * Sets an exception for this response.
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 3.2K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/CrawlerStatsHelper.java

                return id;
            }
    
            /**
             * Sets the URL associated with this statistics key object.
             *
             * @param url the URL to associate with this object
             */
            public void setUrl(final String url) {
                this.url = url;
            }
    
            /**
             * Gets the URL associated with this statistics key object.
             *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 17.4K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactResolverResult.java

    import org.apache.maven.api.annotations.Nonnull;
    import org.apache.maven.api.annotations.Nullable;
    
    /**
     * Represents the result of resolving an artifact.
     * <p>
     * This interface provides access to resolved artifacts, their associated paths, and any related exceptions that
     * occurred during the resolution process.
     * </p>
     *
     * @since 4.0.0
     */
    @Experimental
    public interface ArtifactResolverResult extends Result<ArtifactResolverRequest> {
    
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Feb 07 00:45:02 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/thumbnail/ThumbnailForm.java

     */
    public class ThumbnailForm {
    
        /**
         * The document ID for which to retrieve the thumbnail.
         */
        @Required
        @Size(max = 100)
        public String docId;
    
        /**
         * The query ID associated with the search request.
         */
        @Required
        public String queryId;
    
        /**
         * The search query string for error page display.
         */
        public String q;
    
        /**
    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/jcifs/smb/DfsReferral.java

         *
         * @param data the DFS referral data
         */
        public DfsReferral(final DfsReferralData data) {
            this.data = data;
        }
    
        /**
         * Get the DFS referral data associated with this referral
         *
         * @return the DFS referral data
         */
        public DfsReferralData getData() {
            return this.data;
        }
    
        @Override
        public String toString() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/service/CrawlingInfoService.java

        }
    
        /**
         * Retrieves all parameters associated with a specific crawling information record.
         * Results are ordered by creation time in ascending order and limited by configuration.
         *
         * @param id the unique identifier of the crawling information record
         * @return a list of CrawlingInfoParam entities associated with the specified crawling info
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.9K bytes
    - Viewed (0)
Back to top