- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for env_props (0.07 sec)
-
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"));
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 2.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/ApiResult.java
protected List<Map<String, String>> envProps; protected List<Map<String, String>> systemProps; protected List<Map<String, String>> fessProps; protected List<Map<String, String>> bugReportProps; public ApiSystemInfoResponse envProps(final List<Map<String, String>> envProps) { this.envProps = envProps; return this; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:20:39 UTC 2024 - 12.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/systeminfo/ApiAdminSysteminfoAction.java
final List<Map<String, String>> propItems = getPropItems(); return asJson(new ApiResult.ApiSystemInfoResponse().bugReportProps(bugReportItems).envProps(envItems).fessProps(fessPropItems) .systemProps(propItems).status(ApiResult.Status.OK).result()); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 2.2K bytes - Viewed (0)