Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 389 for fessConfig (0.03 sec)

  1. src/main/java/org/codelibs/fess/app/web/api/admin/FessApiAdminAction.java

         */
        @Override
        protected boolean isAccessAllowed() {
            try {
                return accessTokenService.getPermissions(request)
                        .map(permissions -> fessConfig.isApiAdminAccessAllowed(permissions))
                        .orElse(false);
            } catch (final InvalidAccessTokenException e) {
                if (logger.isDebugEnabled()) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/sso/aad/AzureAdAuthenticator.java

                if (contentMap.containsKey("error")) {
                    logger.warn("Failed to access parent groups: {}", contentMap);
                } else {
                    final FessConfig fessConfig = ComponentUtil.getFessConfig();
                    final String[] names = fessConfig.getAzureAdPermissionFields();
                    for (final String name : names) {
                        final String value = (String) contentMap.get(name);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 28 09:13:08 UTC 2025
    - 37.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/service/RoleTypeService.java

        }
    
        /**
         * The behavior for role types.
         */
        @Resource
        protected RoleTypeBhv roleTypeBhv;
    
        /**
         * The Fess configuration.
         */
        @Resource
        protected FessConfig fessConfig;
    
        /**
         * Gets a list of role types based on the pager.
         * @param roleTypePager The pager for role types.
         * @return A list of role types.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessUserLocaleProcessProvider.java

            return false;
        }
    
        @Override
        public OptionalThing<Locale> findBusinessLocale(final ActionRuntime runtimeMeta, final RequestManager requestManager) {
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
            final String name = fessConfig.getQueryBrowserLangParameterName();
            if (StringUtil.isNotBlank(name)) {
                try {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/service/LabelTypeService.java

    public class LabelTypeService extends FessAppService {
    
        /** The LabelType behavior. */
        @Resource
        protected LabelTypeBhv labelTypeBhv;
    
        /** The Fess config. */
        @Resource
        protected FessConfig fessConfig;
    
        /**
         * Default constructor.
         */
        public LabelTypeService() {
            super();
        }
    
        /**
         * Get a list of label types.
         *
    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/FileAuthenticationService.java

         */
        @Resource
        protected FileAuthenticationBhv fileAuthenticationBhv;
    
        /**
         * Configuration settings for the Fess application.
         */
        @Resource
        protected FessConfig fessConfig;
    
        /**
         * Retrieves a paginated list of file authentication configurations.
         *
         * @param fileAuthenticationPager the pager containing pagination settings and search criteria
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/crawler/transformer/FessStandardTransformer.java

            }
            fessConfig = ComponentUtil.getFessConfig();
            dataSerializer = ComponentUtil.getComponent("dataSerializer");
        }
    
        /**
         * Gets the Fess configuration instance.
         *
         * @return the Fess configuration
         */
        @Override
        public FessConfig getFessConfig() {
            return fessConfig;
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.8K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/service/StopwordsService.java

        @Resource
        protected DictionaryManager dictionaryManager;
    
        /** The Fess configuration for accessing system settings. */
        @Resource
        protected FessConfig fessConfig;
    
        /**
         * Constructs a new stopwords service.
         */
        public StopwordsService() {
            // do nothing
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 4.6K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/service/SynonymService.java

        @Resource
        protected DictionaryManager dictionaryManager;
    
        /** The Fess configuration for accessing system settings. */
        @Resource
        protected FessConfig fessConfig;
    
        /**
         * Constructs a new synonym service.
         */
        public SynonymService() {
            // do nothing
        }
    
        /**
         * Retrieves a list of synonyms for a given dictionary and pager.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 4.5K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/sso/SsoManagerTest.java

        }
    
        // Test getSsoType() with actual FessConfig
        public void test_getSsoType_withFessConfig() {
            final String expectedSsoType = "openid";
            FessConfig fessConfig = new FessConfig.SimpleImpl() {
                @Override
                public String getSsoType() {
                    return expectedSsoType;
                }
            };
            ComponentUtil.setFessConfig(fessConfig);
    
            ssoManager = new SsoManager();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 13.9K bytes
    - Viewed (0)
Back to top