Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 410 for entities (0.32 sec)

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

         */
        @Resource
        protected FessConfig fessConfig;
    
        /**
         * Retrieves a paginated list of related content entities.
         *
         * @param relatedContentPager the pager object containing pagination and search parameters
         * @return a list of RelatedContent entities matching the specified criteria
         */
        public List<RelatedContent> getRelatedContentList(final RelatedContentPager relatedContentPager) {
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.8K bytes
    - Viewed (0)
  2. dbflute_fess/_readme.txt

    which generates classes corresponding your tables,
    for example, entities, condition-beans to specified
    directories by DBFlute properties on "dfprop" directory.
    
    Generated structures (directories and classes) are like this:
    /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    allcommon : classes bridging to DBFlute Runtime
    bsbhv     : base behaviors
    bsentity  : base entities
    cbean     : condition-beans (both base and extended)
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 04 22:46:31 UTC 2015
    - 2.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/RelatedQueryHelper.java

            }
            load();
        }
    
        /**
         * Retrieves a list of all available related query entities from the data store.
         * The results are ordered by term and limited by the configured maximum fetch size.
         *
         * @return a list of RelatedQuery entities containing all available related queries
         */
        public List<RelatedQuery> getAvailableRelatedQueryList() {
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.1K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/util/RenderDataUtilTest.java

            BsUser entity2 = new BsUser();
            entity2.setName("name2");
    
            List<BsUser> entityList = Arrays.asList(entity1, entity2);
    
            RenderDataUtil.register(data, "entities", entityList);
    
            Object result = data.getDataMap().get("entities");
            assertNotNull(result);
            assertTrue(result instanceof List);
            @SuppressWarnings("unchecked")
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/service/RelatedQueryService.java

    import org.dbflute.cbean.result.PagingResultBean;
    import org.dbflute.optional.OptionalEntity;
    
    import jakarta.annotation.Resource;
    
    /**
     * Service class for managing related query entities.
     * 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 {
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/service/DuplicateHostService.java

     */
    public class DuplicateHostService extends FessAppService {
    
        /**
         * DBFlute behavior for duplicate host operations.
         * Provides database access methods for DuplicateHost entities.
         */
        @Resource
        protected DuplicateHostBhv duplicateHostBhv;
    
        /**
         * Fess configuration containing application settings.
         * Used to retrieve paging and other configuration parameters.
    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/core/xml/SAXParserFactoryUtil.java

            try {
                factory.setFeature(XMLConstants.FEATURE_SECURE_PROCESSING, true);
                factory.setFeature("http://xml.org/sax/features/external-general-entities", false);
                factory.setFeature("http://xml.org/sax/features/external-parameter-entities", false);
            } catch (SAXNotRecognizedException | SAXNotSupportedException e) {
                throw new SAXRuntimeException(e);
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 3.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/service/CrawlingInfoService.java

         */
        public CrawlingInfoService() {
        }
    
        /**
         * Behavior handler for CrawlingInfoParam entities.
         * Used to perform database operations on crawling session parameters.
         */
        @Resource
        protected CrawlingInfoParamBhv crawlingInfoParamBhv;
    
        /**
         * Behavior handler for CrawlingInfo entities.
         * Used to perform database operations on crawling session information.
         */
        @Resource
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/service/FailureUrlService.java

        /**
         * Retrieves a paginated list of failure URLs based on the provided pager criteria.
         *
         * @param failureUrlPager the pager containing search criteria and pagination settings
         * @return a list of FailureUrl entities matching the criteria
         */
        public List<FailureUrl> getFailureUrlList(final FailureUrlPager failureUrlPager) {
    
            final PagingResultBean<FailureUrl> failureUrlList = failureUrlBhv.selectPage(cb -> {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.2K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/escape/ArrayBasedUnicodeEscaper.java

     * general way.
     *
     * <p>A good example of usage of this class is for HTML escaping where the replacement array
     * contains information about the named HTML entities such as {@code &amp;} and {@code &quot;} while
     * {@link #escapeUnsafe} is overridden to handle general escaping of the form {@code &#NNNNN;}.
     *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Feb 13 15:45:16 UTC 2025
    - 8.5K bytes
    - Viewed (0)
Back to top