Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for FessAppService (0.08 sec)

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

     * This class provides common functionality and utilities for service implementations
     * throughout the Fess search application.
     */
    public abstract class FessAppService {
    
        /**
         * Default constructor.
         */
        public FessAppService() {
            // Default constructor
        }
    
        /**
         * Wraps a query string with wildcard characters to enable partial matching.
    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/service/RelatedContentService.java

     * This service provides CRUD operations for related content, including
     * retrieval, storage, deletion, and search functionality.
     */
    public class RelatedContentService extends FessAppService {
    
        /**
         * Default constructor.
         * Creates a new instance of RelatedContentService.
         */
        public RelatedContentService() {
            super();
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/service/RelatedQueryService.java

     * This service provides operations to retrieve, store, and delete related queries,
     * which are used to suggest alternative search terms to users.
     */
    public class RelatedQueryService extends FessAppService {
    
        /**
         * Default constructor for RelatedQueryService.
         * This constructor is used by the DI container to create an instance of the service.
         */
        public RelatedQueryService() {
            super();
    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/app/service/BoostDocumentRuleService.java

    import jakarta.annotation.Resource;
    
    /**
     * Service class for boost document rule management operations.
     * Provides CRUD operations for boost document rules.
     */
    public class BoostDocumentRuleService extends FessAppService {
        /**
         * Default constructor for BoostDocumentRuleService.
         */
        public BoostDocumentRuleService() {
            super();
        }
    
        /** Database behavior for boost document rule operations. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/service/PathMappingService.java

    import org.dbflute.optional.OptionalEntity;
    
    import jakarta.annotation.Resource;
    
    /**
     * Service for path mapping operations.
     */
    public class PathMappingService extends FessAppService {
    
        /**
         * Default constructor.
         */
        public PathMappingService() {
            super();
        }
    
        /** Path mapping behavior. */
        @Resource
        protected PathMappingBhv pathMappingBhv;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/service/KeyMatchService.java

    import org.dbflute.cbean.result.PagingResultBean;
    import org.dbflute.optional.OptionalEntity;
    
    import jakarta.annotation.Resource;
    
    /**
     * Service class for KeyMatch.
     */
    public class KeyMatchService extends FessAppService {
    
        /** The KeyMatch behavior. */
        @Resource
        protected KeyMatchBhv keyMatchBhv;
    
        /**
         * Default constructor.
         */
        public KeyMatchService() {
            super();
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/service/DuplicateHostService.java

     * duplicate content from the same logical site that may be accessible via different
     * hostnames (e.g., www.example.com and example.com).</p>
     */
    public class DuplicateHostService extends FessAppService {
    
        /**
         * DBFlute behavior for duplicate host operations.
         * Provides database access methods for DuplicateHost entities.
         */
        @Resource
        protected DuplicateHostBhv duplicateHostBhv;
    
    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/app/service/WebConfigService.java

     * Provides CRUD operations for web configuration settings including
     * listing, retrieving, storing, and deleting web crawling configurations.
     */
    public class WebConfigService extends FessAppService {
    
        /**
         * Default constructor.
         */
        public WebConfigService() {
            super();
        }
    
        /**
         * Behavior class for web configuration operations.
         */
        @Resource
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/service/LabelTypeService.java

    import org.dbflute.cbean.result.PagingResultBean;
    import org.dbflute.optional.OptionalEntity;
    
    import jakarta.annotation.Resource;
    
    /**
     * Service class for label types.
     */
    public class LabelTypeService extends FessAppService {
    
        /** The LabelType behavior. */
        @Resource
        protected LabelTypeBhv labelTypeBhv;
    
        /** The Fess config. */
        @Resource
        protected FessConfig fessConfig;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/service/DataConfigService.java

     *
     * <p>Data configurations define how the crawler should access and process
     * various data sources such as databases, CSV files, or other structured data.</p>
     */
    public class DataConfigService extends FessAppService {
    
        /**
         * DBFlute behavior for data configuration operations.
         * Provides database access methods for DataConfig entities.
         */
        @Resource
        protected DataConfigBhv dataConfigBhv;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8K bytes
    - Viewed (0)
Back to top