- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 361 for entities (0.44 sec)
-
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) -
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) -
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) -
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) -
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) -
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) -
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) -
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) -
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 &} and {@code "} 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) -
src/main/java/org/codelibs/fess/app/service/DataConfigService.java
*/ public class DataConfigService extends FessAppService { /** * DBFlute behavior for data configuration operations. * Provides database access methods for DataConfig entities. */ @Resource protected DataConfigBhv dataConfigBhv; /** * 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 - 8K bytes - Viewed (0)