Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for getAppValue (0.05 seconds)

  1. src/main/java/org/codelibs/fess/helper/SystemHelper.java

        }
    
        /**
         * Updates system properties from the application configuration.
         */
        public void updateSystemProperties() {
            final String value = ComponentUtil.getFessConfig().getAppValue();
            if (logger.isDebugEnabled()) {
                logger.debug("system.properties: {}", value);
            }
            if (StringUtil.isNotBlank(value)) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 43.2K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/helper/SystemHelperTest.java

            ComponentUtil.setFessConfig(new FessConfig.SimpleImpl() {
                private static final long serialVersionUID = 1L;
    
                @Override
                public String getAppValue() {
                    return appValue.get();
                }
    
                @Override
                public String getAppEncryptPropertyPattern() {
                    return ".*password|.*key|.*token|.*secret";
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 44.4K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

        }
    
        default void setAppValue(final String value) {
            setSystemProperty(Constants.APP_VALUE_PROPERTY, value);
            propMap.remove(APP_VALUES);
        }
    
        default String getAppValue() {
            return getSystemProperty(Constants.APP_VALUE_PROPERTY, StringUtil.EMPTY);
        }
    
        default void setDefaultLabelValue(final String value) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 92.3K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/general/AdminGeneralAction.java

            form.searchUseBrowserLocale = fessConfig.isBrowserLocaleForSearchUsed() ? Constants.TRUE : Constants.FALSE;
            form.ssoType = fessConfig.getSsoType();
            form.appValue = fessConfig.getAppValue();
            form.defaultLabelValue = fessConfig.getDefaultLabelValue();
            form.defaultSortValue = fessConfig.getDefaultSortValue();
            form.virtualHostValue = fessConfig.getVirtualHostValue();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 05:54:31 GMT 2026
    - 27.2K bytes
    - Click Count (0)
Back to Top