Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getAppValue (0.04 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/general/AdminGeneralAction.java

            form.userFavorite = fessConfig.isUserFavorite() ? Constants.TRUE : Constants.FALSE;
            form.webApiJson = fessConfig.isWebApiJson() ? Constants.TRUE : Constants.FALSE;
            form.appValue = fessConfig.getAppValue();
            form.defaultLabelValue = fessConfig.getDefaultLabelValue();
            form.defaultSortValue = fessConfig.getDefaultSortValue();
            form.virtualHostValue = fessConfig.getVirtualHostValue();
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 14.4K bytes
    - Viewed (0)
  2. 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)) {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 20 08:30:43 UTC 2025
    - 36.6K bytes
    - Viewed (0)
Back to top