Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for appValues (0.06 sec)

  1. src/main/webapp/WEB-INF/view/admin/general/admin_general.jsp

                                        <label for="appValue" class="col-sm-3 text-sm-right col-form-label"><la:message
                                                key="labels.app_value"/></label>
                                        <div class="col-sm-9">
                                            <la:errors property="appValue"/>
                                            <la:textarea styleId="appValue" property="appValue"
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jun 14 00:36:40 UTC 2025
    - 39.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/general/AdminGeneralAction.java

            fessConfig.setUserFavorite(isCheckboxEnabled(form.userFavorite));
            fessConfig.setWebApiJson(isCheckboxEnabled(form.webApiJson));
            fessConfig.setAppValue(form.appValue);
            fessConfig.setDefaultLabelValue(form.defaultLabelValue);
            fessConfig.setDefaultSortValue(form.defaultSortValue);
            fessConfig.setVirtualHostValue(form.virtualHostValue);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 13.9K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/helper/SystemHelperTest.java

            final AtomicReference<String> appValue = new AtomicReference<>(StringUtil.EMPTY);
            ComponentUtil.setFessConfig(new FessConfig.SimpleImpl() {
                private static final long serialVersionUID = 1L;
    
                @Override
                public String getAppValue() {
                    return appValue.get();
                }
    
                @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 28.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java

        public String webApiJson;
    
        /**
         * Application-specific value for custom configurations.
         * This field can be used to store custom application settings.
         */
        @Size(max = 10000)
        public String appValue;
    
        /**
         * Default label value to use when no specific label is selected.
         * This affects which documents are included in search results by default.
         */
        @Size(max = 1000)
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.9K bytes
    - Viewed (0)
Back to top