Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for ApiConfigResponse (0.09 seconds)

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

            }
        }
    
        /**
         * Represents an API response for configuration settings.
         */
        public static class ApiConfigResponse extends ApiResponse {
            /**
             * Constructs an empty ApiConfigResponse.
             */
            public ApiConfigResponse() {
                // NOP
            }
    
            /**
             * The configuration setting object.
             */
    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/main/java/org/codelibs/fess/app/web/api/admin/scheduler/ApiAdminSchedulerAction.java

         */
        // GET /api/admin/scheduler/setting/{id}
        @Execute
        public JsonResponse<ApiResult> get$setting(final String id) {
            return asJson(new ApiResult.ApiConfigResponse()
                    .setting(scheduledJobService.getScheduledJob(id).map(this::createEditBody).orElseGet(() -> {
                        throwValidationErrorApi(messages -> messages.addErrorsCrudCouldNotFindCrudTable(GLOBAL, id));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:55:54 GMT 2026
    - 10.7K bytes
    - Click Count (0)
Back to Top