Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for envProps (0.03 seconds)

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

            /**
             * Sets the environment properties.
             * @param envProps The environment properties.
             * @return This ApiSystemInfoResponse instance.
             */
            public ApiSystemInfoResponse envProps(final List<Map<String, String>> envProps) {
                this.envProps = envProps;
                return this;
            }
    
            /**
             * Sets the system properties.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:55:54 GMT 2026
    - 25.8K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/it/admin/SystemInfoTests.java

            String response = checkGetMethod(searchBody, "").asString();
            final Map<String, Object> res = JsonPath.from(response).getMap("response");
            assertTrue(res.containsKey("env_props"));
            assertTrue(res.containsKey("system_props"));
            assertTrue(res.containsKey("fess_props"));
            assertTrue(res.containsKey("bug_report_props"));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 2.8K bytes
    - Click Count (0)
Back to Top