- Sort Score
- Result 10 results
- Languages All
Results 101 - 110 of 389 for fessConfig (4.86 sec)
-
src/main/java/org/codelibs/fess/ldap/LdapUser.java
@Override public String[] getPermissions() { if (permissions == null) { final FessConfig fessConfig = ComponentUtil.getFessConfig(); final String baseDn = fessConfig.getLdapBaseDn(); final String accountFilter = fessConfig.getLdapAccountFilter(); final String groupFilter = fessConfig.getLdapGroupFilter(); if (StringUtil.isNotBlank(baseDn) && StringUtil.isNotBlank(accountFilter)) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 4.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/JobHelper.java
cron.register(cronExpression, fessConfig.getSchedulerJobClassAsClass(), fessConfig.getSchedulerConcurrentExecModeAsEnum(), op -> op.uniqueBy(id).changeNoticeLogToDebug().params(paramsOp)); } else { logger.info("Inactive Job {}:{}", id, scheduledJob.getName()); cron.registerNonCron(fessConfig.getSchedulerJobClassAsClass(), fessConfig.getSchedulerConcurrentExecModeAsEnum(),
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 10.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/DuplicateHostService.java
/** * Fess configuration containing application settings. * Used to retrieve paging and other configuration parameters. */ @Resource protected FessConfig fessConfig; /** * Creates a new instance of DuplicateHostService. * This constructor initializes the service for managing duplicate host configuration operations
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/fess/app/web/admin/storage/AdminStorageAction.java
} try { final FessConfig fessConfig = ComponentUtil.getFessConfig(); final SetObjectTagsArgs args = SetObjectTagsArgs.builder().bucket(fessConfig.getStorageBucket()).object(objectName).tags(tags).build(); createClient(fessConfig).setObjectTags(args); } catch (final Exception e) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 25.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/thumbnail/impl/EmptyGeneratorTest.java
String path = "/path/to/thumbnail.jpg"; // Since createTask requires FessConfig, it may not work properly // We test that the method can be called without throwing exceptions try { emptyGenerator.createTask(path, docMap); } catch (Exception e) { // Expected when FessConfig is not available } }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 6.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/ProtwordsService.java
} /** Dictionary manager for handling dictionary files */ @Resource protected DictionaryManager dictionaryManager; /** Configuration for Fess */ @Resource protected FessConfig fessConfig; /** * Gets a paginated list of protected words items. * @param dictId the dictionary ID * @param protwordsPager the pager for pagination * @return the list of protected words items
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 4.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/ldap/LdapUserTest.java
import org.codelibs.core.lang.StringUtil; import org.codelibs.fess.helper.ActivityHelper; import org.codelibs.fess.helper.SystemHelper; import org.codelibs.fess.mylasta.action.FessUserBean; import org.codelibs.fess.mylasta.direction.FessConfig; import org.codelibs.fess.unit.UnitFessTestCase; import org.codelibs.fess.util.ComponentUtil; import org.dbflute.optional.OptionalThing; public class LdapUserTest extends UnitFessTestCase {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 16.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/cors/DefaultCorsHandler.java
final FessConfig fessConfig = ComponentUtil.getFessConfig(); final HttpServletResponse httpResponse = (HttpServletResponse) response; httpResponse.addHeader(ACCESS_CONTROL_ALLOW_ORIGIN, origin); httpResponse.addHeader(ACCESS_CONTROL_ALLOW_METHODS, fessConfig.getApiCorsAllowMethods()); httpResponse.addHeader(ACCESS_CONTROL_ALLOW_HEADERS, fessConfig.getApiCorsAllowHeaders());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/AccessTokenService.java
/** * The behavior of access token. */ @Resource protected AccessTokenBhv accessTokenBhv; /** * The Fess configuration. */ @Resource protected FessConfig fessConfig; /** * Get the list of access tokens. * @param accessTokenPager The pager for access token. * @return The list of access tokens. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/RelatedQueryService.java
/** * Configuration properties for Fess application. * Used to access various configuration settings like paging parameters. */ @Resource protected FessConfig fessConfig; /** * Retrieves a paginated list of related queries based on the provided pager parameters. * This method performs a database query with pagination and updates the pager with result information. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.4K bytes - Viewed (0)