From 83006d7cd87962dc2080bfde7d91114c30fa210c Mon Sep 17 00:00:00 2001 From: Moritzjenny <moritzjenny@hotmail.com> Date: Fri, 17 Jul 2020 09:02:33 +0200 Subject: [PATCH] no-jira: remove @ApiResponses annotations --- .../restapi/CurriculumsWebService.java | 21 ++++++++----------- .../restapi/system/ThreadsWebService.java | 6 ++---- 2 files changed, 11 insertions(+), 16 deletions(-) diff --git a/src/main/java/org/olat/modules/curriculum/restapi/CurriculumsWebService.java b/src/main/java/org/olat/modules/curriculum/restapi/CurriculumsWebService.java index d51ab2a1062..a6950426307 100644 --- a/src/main/java/org/olat/modules/curriculum/restapi/CurriculumsWebService.java +++ b/src/main/java/org/olat/modules/curriculum/restapi/CurriculumsWebService.java @@ -67,7 +67,6 @@ import io.swagger.v3.oas.annotations.media.ArraySchema; import io.swagger.v3.oas.annotations.media.Content; import io.swagger.v3.oas.annotations.media.Schema; import io.swagger.v3.oas.annotations.responses.ApiResponse; -import io.swagger.v3.oas.annotations.responses.ApiResponses; import io.swagger.v3.oas.annotations.tags.Tag; /** @@ -335,17 +334,15 @@ public class CurriculumsWebService { @GET @Path("elements") @Operation(summary = "Get the elements of all curriculums", - description = "Get all the elements of all curriculums") - @ApiResponses(value = { - @ApiResponse(responseCode = "200", description = "The elements", - content = { - @Content(mediaType = "application/json", array = @ArraySchema(schema = @Schema(implementation = CurriculumElementVO.class))), - @Content(mediaType = "application/xml", array = @ArraySchema(schema = @Schema(implementation = CurriculumElementVO.class))) - } - ), - @ApiResponse(responseCode = "401", description = "The roles of the authenticated user are not sufficient"), - @ApiResponse(responseCode = "406", description = "application/xml, application/json")} - ) + description = "Get all the elements of all curriculums") + @ApiResponse(responseCode = "200", description = "The elements", + content = { + @Content(mediaType = "application/json", array = @ArraySchema(schema = @Schema(implementation = CurriculumElementVO.class))), + @Content(mediaType = "application/xml", array = @ArraySchema(schema = @Schema(implementation = CurriculumElementVO.class))) + } + ) + @ApiResponse(responseCode = "401", description = "The roles of the authenticated user are not sufficient") + @ApiResponse(responseCode = "406", description = "application/xml, application/json") public Response searchCurriculumElement(@QueryParam("externalId") String externalId, @QueryParam("identifier") String identifier, @QueryParam("key") Long key, @Context HttpServletRequest httpRequest) { Roles roles = getRoles(httpRequest); diff --git a/src/main/java/org/olat/restapi/system/ThreadsWebService.java b/src/main/java/org/olat/restapi/system/ThreadsWebService.java index 69b3ff13c27..8a2bc2b25b0 100644 --- a/src/main/java/org/olat/restapi/system/ThreadsWebService.java +++ b/src/main/java/org/olat/restapi/system/ThreadsWebService.java @@ -43,7 +43,6 @@ import io.swagger.v3.oas.annotations.media.ArraySchema; import io.swagger.v3.oas.annotations.media.Content; import io.swagger.v3.oas.annotations.media.Schema; import io.swagger.v3.oas.annotations.responses.ApiResponse; -import io.swagger.v3.oas.annotations.responses.ApiResponses; /** * @@ -62,9 +61,8 @@ public class ThreadsWebService implements Sampler { @GET @Operation(summary = "Retrieve threads info", description = "Retrieve information about threads count and number of deamons") - @ApiResponses({ - @ApiResponse(responseCode = "200", description = "The infos", content = { - @Content(mediaType = "text") }) }) + @ApiResponse(responseCode = "200", description = "The infos", content = { + @Content(mediaType = "text") }) @Produces({MediaType.APPLICATION_XML, MediaType.APPLICATION_JSON}) public Response getThreadsXml() { ThreadMXBean bean = ManagementFactory.getThreadMXBean(); -- GitLab