- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 389 for settings1 (0.07 sec)
-
src/main/java/org/codelibs/fess/app/web/api/ApiResult.java
*/ protected long total = 0; /** * Sets the list of configuration settings and updates the total count. * @param settings The list of configuration settings. * @return The ApiConfigsResponse instance. */ public ApiConfigsResponse<T> settings(final List<T> settings) { this.settings = settings;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 24.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dict/stopwords/ApiAdminDictStopwordsAction.java
/** * Retrieves stopwords dictionary settings with pagination support. * * @param dictId the dictionary ID * @param body the search body containing pagination and filter parameters * @return JSON response containing list of stopwords dictionary items */ // GET /api/admin/dict/stopwords/settings/{dictId} @Execute public JsonResponse<ApiResult> get$settings(final String dictId, final SearchBody body) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/accesstoken/ApiAdminAccesstokenAction.java
return asJson(new ApiConfigsResponse<EditBody>().settings(list.stream().map(this::createEditBody).collect(Collectors.toList())) .total(pager.getAllRecordCount()) .status(Status.OK) .result()); } // GET /api/admin/accesstoken/setting/{id} /** * Retrieves a specific access token setting by ID. * * @param id the access token ID to retrieve
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 8.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/fileauth/ApiAdminFileauthAction.java
.result()); } // GET /api/admin/fileauth/setting/{id} /** * Returns specific file authentication setting by ID. * * @param id the file authentication setting ID * @return JSON response containing the file authentication setting details */ @Execute public JsonResponse<ApiResult> get$setting(final String id) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/admin/WebAuthTests.java
searchBody.put("name", "test_webconfig"); String res = checkMethodBase(searchBody).get("/api/admin/webconfig/settings").asString(); List<String> webConfigList = JsonPath.from(res).getList("response.settings.findAll {it.name.startsWith(\"test_webconfig\")}.id"); return webConfigList.get(0); } @AfterEach void deleteWebConfig() { final Map<String, Object> searchBody = new HashMap<>();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 3.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/group/ApiAdminGroupAction.java
// POST /api/admin/group/setting /** * Creates a new group setting. * * @param body group setting data to create * @return JSON response with created setting ID and status */ @Execute public JsonResponse<ApiResult> post$setting(final CreateBody body) { validateApi(body, messages -> {}); validateAttributes(body.attributes, this::throwValidationErrorApi);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dataconfig/ApiAdminDataconfigAction.java
/** * Retrieves data config settings with pagination support. * * @param body the search body containing pagination and filter parameters * @return JSON response containing list of data config settings */ // GET /api/admin/dataconfig/settings // PUT /api/admin/dataconfig/settings @Execute public JsonResponse<ApiResult> settings(final SearchBody body) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 8.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/role/ApiAdminRoleAction.java
/** The role service for managing role settings. */ @Resource private RoleService roleService; /** * Retrieves role settings with pagination. * * @param body the search parameters for filtering and pagination * @return JSON response containing role settings list */ // GET /api/admin/role/settings // PUT /api/admin/role/settings @Execute
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 7K bytes - Viewed (0) -
buildSrc/settings.gradle.kts
Yuri Schimke <******@****.***> 1735306796 +0200
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Dec 27 13:39:56 UTC 2024 - 37 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/keymatch/ApiAdminKeymatchAction.java
/** * Retrieves key match settings with pagination. * * @param body the search parameters for filtering and pagination * @return JSON response containing key match settings list */ // GET /api/admin/keymatch/settings // PUT /api/admin/keymatch/settings @Execute public JsonResponse<ApiResult> settings(final SearchBody body) { validateApi(body, messages -> {});
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 7.8K bytes - Viewed (0)