Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for systemProperties (0.2 sec)

  1. src/main/java/org/codelibs/fess/exec/ThumbnailGenerator.java

            }
        }
    
        private static int process(final Options options) {
            final DynamicProperties systemProperties = ComponentUtil.getSystemProperties();
    
            if (StringUtil.isNotBlank(options.propertiesPath)) {
                systemProperties.reload(options.propertiesPath);
            } else {
                try {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 8.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/util/ComponentUtil.java

        private static final String VIEW_HELPER = "viewHelper";
    
        private static final String SYSTEM_HELPER = "systemHelper";
    
        private static final String CRAWLER_PROPERTIES = "systemProperties";
    
        private static final String JOB_EXECUTOR_SUFFIX = "JobExecutor";
    
        private static final String KEY_MATCH_HELPER = "keyMatchHelper";
    
        private static final String INDEXING_HELPER = "indexingHelper";
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 20K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/helper/ViewHelperTest.java

            propertiesFile.deleteOnExit();
            DynamicProperties systemProps = new DynamicProperties(propertiesFile);
            ComponentUtil.register(systemProps, "systemProperties");
            userAgentHelper = new UserAgentHelper();
            ComponentUtil.register(userAgentHelper, "userAgentHelper");
            pathMappingHelper = new PathMappingHelper();
            pathMappingHelper.init();
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 15.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/ViewHelper.java

            final DynamicProperties systemProperties = ComponentUtil.getSystemProperties();
            switch (ua) {
            case IE:
                if (isLocalFile) {
                    url = url.replaceFirst("file:/+", systemProperties.getProperty("file.protocol.winlocal.ie", "file://"));
                } else {
                    url = url.replaceFirst("file:/+", systemProperties.getProperty("file.protocol.ie", "file://"));
                }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 40.1K bytes
    - Viewed (2)
  5. src/main/java/org/codelibs/fess/app/web/admin/wizard/AdminWizardAction.java

        //                                                                           Attribute
        //
        @Resource
        protected DynamicProperties systemProperties;
    
        @Resource
        protected WebConfigService webConfigService;
    
        @Resource
        protected FileConfigService fileConfigService;
    
        @Resource
        protected ProcessHelper processHelper;
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12.7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/general/AdminGeneralAction.java

        //                                                                           Attribute
        //                                                                           =========
        @Resource
        protected DynamicProperties systemProperties;
    
        // ===================================================================================
        //                                                                               Hook
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12.7K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/exec/Crawler.java

            }
    
            final CrawlingInfoHelper crawlingInfoHelper = ComponentUtil.getCrawlingInfoHelper();
            final DynamicProperties systemProperties = ComponentUtil.getSystemProperties();
    
            if (StringUtil.isNotBlank(options.propertiesPath)) {
                systemProperties.reload(options.propertiesPath);
            } else {
                try {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 24.1K bytes
    - Viewed (2)
  8. src/main/java/org/codelibs/fess/exec/SuggestCreator.java

            }
        }
    
        private static int process(final Options options) {
            final DynamicProperties systemProperties = ComponentUtil.getSystemProperties();
    
            if (StringUtil.isNotBlank(options.propertiesPath)) {
                systemProperties.reload(options.propertiesPath);
            } else {
                try {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/mylasta/direction/FessPropTest.java

            DynamicProperties systemProps = new DynamicProperties(file);
            SingletonLaContainerFactory.getContainer().register(systemProps, "systemProperties");
    
            assertEquals("@fess.codelibs.local", fessConfig.getLdapSecurityPrincipal(null));
            assertEquals("@fess.codelibs.local", fessConfig.getLdapSecurityPrincipal(""));
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/systeminfo/AdminSysteminfoAction.java

            for (final String label : bugReportLabels) {
                itemList.add(createPropItem(label));
            }
    
            final DynamicProperties systemProperties = ComponentUtil.getSystemProperties();
            for (final Map.Entry<Object, Object> entry : systemProperties.entrySet()) {
                if (isBugReportTarget(entry.getKey())) {
                    itemList.add(createItem(entry.getKey(), entry.getValue()));
                }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 7.5K bytes
    - Viewed (0)
Back to top