|
23 | 23 | import io.swagger.oas.annotations.responses.ApiResponse;
|
24 | 24 | import io.swagger.sample.data.PetData;
|
25 | 25 | import io.swagger.sample.model.Pet;
|
26 |
| -import io.swagger.sample.exception.NotFoundException; |
27 | 26 |
|
| 27 | +import javax.ws.rs.GET; |
| 28 | +import javax.ws.rs.POST; |
| 29 | +import javax.ws.rs.PUT; |
| 30 | +import javax.ws.rs.Path; |
| 31 | +import javax.ws.rs.PathParam; |
| 32 | +import javax.ws.rs.Produces; |
| 33 | +import javax.ws.rs.Consumes; |
| 34 | +import javax.ws.rs.QueryParam; |
28 | 35 | import javax.ws.rs.core.Response;
|
29 |
| -import javax.ws.rs.*; |
30 | 36 |
|
31 | 37 | @Path("/pet")
|
32 |
| -@Produces({"application/json"}) |
| 38 | +@Produces({"application/json", "application/xml"}) |
33 | 39 | public class PetResource {
|
34 | 40 | static PetData petData = new PetData();
|
35 | 41 |
|
36 | 42 | @GET
|
37 | 43 | @Path("/{petId}")
|
38 | 44 | @Operation(summary = "Find pet by ID",
|
39 |
| - tags = {"pets", "store"}, |
40 |
| - description = "Returns a pet when 0 < ID <= 10. ID > 10 or nonintegers will simulate API error conditions", |
41 |
| - responses = { |
42 |
| - @ApiResponse( |
43 |
| - responseCode = "400", |
44 |
| - description = "Invalid ID supplied" |
45 |
| - ), |
46 |
| - @ApiResponse( |
47 |
| - responseCode = "404", |
48 |
| - description = "Pet not found" |
49 |
| - ), |
50 |
| - @ApiResponse( |
51 |
| - responseCode = "default", |
52 |
| - description = "boo", |
53 |
| - content = @Content( |
54 |
| - mediaType = "application/json", |
55 |
| - schema = @Schema(implementation = Pet.class) |
56 |
| - ) |
57 |
| - ) |
58 |
| - } |
59 |
| - ) |
| 45 | + tags = {"pets"}, |
| 46 | + description = "Returns a pet when 0 < ID <= 10. ID > 10 or nonintegers will simulate API error conditions", |
| 47 | + responses = { |
| 48 | + @ApiResponse(description = "The pet", content = @Content( |
| 49 | + mediaType = "application/json", |
| 50 | + schema = @Schema(implementation = Pet.class) |
| 51 | + )), |
| 52 | + @ApiResponse(responseCode = "400", description = "Invalid ID supplied"), |
| 53 | + @ApiResponse(responseCode = "404", description = "Pet not found") |
| 54 | + }) |
60 | 55 | public Response getPetById(
|
61 |
| - @Parameter(description = "ID of pet that needs to be fetched", schema = @Schema(allowableValues = ""), required = true) @PathParam("petId") Long petId) |
62 |
| - throws NotFoundException { |
| 56 | + @Parameter( |
| 57 | + description = "ID of pet that needs to be fetched", |
| 58 | + schema = @Schema( |
| 59 | + type = "integer", |
| 60 | + format = "int64", |
| 61 | + description = "param ID of pet that needs to be fetched", |
| 62 | + allowableValues = {"1","2","3"} |
| 63 | + ), |
| 64 | + required = true) |
| 65 | + @PathParam("petId") Long petId) throws io.swagger.sample.exception.NotFoundException { |
63 | 66 | Pet pet = petData.getPetById(petId);
|
64 | 67 | if (null != pet) {
|
65 | 68 | return Response.ok().entity(pet).build();
|
66 | 69 | } else {
|
67 |
| - throw new NotFoundException(404, "Pet not found"); |
| 70 | + throw new io.swagger.sample.exception.NotFoundException(404, "Pet not found"); |
68 | 71 | }
|
69 | 72 | }
|
70 | 73 |
|
71 |
| -/* |
72 | 74 | @POST
|
73 |
| - @ApiOperation(value = "Add a new pet to the store") |
74 |
| - @ApiResponses(value = { @ApiResponse(code = 405, message = "Invalid input") }) |
| 75 | + @Consumes("application/json") |
| 76 | + @Operation(summary = "Add a new pet to the store", |
| 77 | + tags = {"pets"}, |
| 78 | + responses = { |
| 79 | + @ApiResponse(responseCode = "405", description = "Invalid input") |
| 80 | + }) |
75 | 81 | public Response addPet(
|
76 |
| - @ApiParam(value = "Pet object that needs to be added to the store", required = true) Pet pet) { |
| 82 | + @Parameter(description = "Pet object that needs to be added to the store", required = true) Pet pet) { |
77 | 83 | petData.addPet(pet);
|
78 | 84 | return Response.ok().entity("SUCCESS").build();
|
79 | 85 | }
|
80 | 86 |
|
81 | 87 | @PUT
|
82 |
| - @ApiOperation(value = "Update an existing pet") |
83 |
| - @ApiResponses(value = { @ApiResponse(code = 400, message = "Invalid ID supplied"), |
84 |
| - @ApiResponse(code = 404, message = "Pet not found"), |
85 |
| - @ApiResponse(code = 405, message = "Validation exception") }) |
| 88 | + @Operation(summary = "Update an existing pet", |
| 89 | + tags = {"pets"}, |
| 90 | + responses = { |
| 91 | + @ApiResponse(responseCode = "400", description = "Invalid ID supplied"), |
| 92 | + @ApiResponse(responseCode = "404", description = "Pet not found"), |
| 93 | + @ApiResponse(responseCode = "405", description = "Validation exception") }) |
86 | 94 | public Response updatePet(
|
87 |
| - @ApiParam(value = "Pet object that needs to be added to the store", required = true) Pet pet) { |
| 95 | + @Parameter(description = "Pet object that needs to be added to the store", required = true) Pet pet) { |
88 | 96 | petData.addPet(pet);
|
89 | 97 | return Response.ok().entity("SUCCESS").build();
|
90 | 98 | }
|
91 | 99 |
|
92 | 100 | @GET
|
93 | 101 | @Path("/findByStatus")
|
94 |
| - @ApiOperation( |
95 |
| - value = "Finds Pets by status", |
96 |
| - notes = "Multiple status values can be provided with comma seperated strings", |
97 |
| - response = Pet.class, |
98 |
| - responseContainer = "List") |
99 |
| - @ApiResponses(value = { @ApiResponse(code = 400, message = "Invalid status value") }) |
| 102 | + @Operation(summary = "Finds Pets by status", |
| 103 | + tags = {"pets"}, |
| 104 | + description = "Multiple status values can be provided with comma seperated strings", |
| 105 | + responses = { |
| 106 | + @ApiResponse( |
| 107 | + content = @Content(mediaType = "application/json", |
| 108 | + schema = @Schema(implementation = Pet.class))), |
| 109 | + @ApiResponse( |
| 110 | + responseCode = "400", description = "Invalid status value" |
| 111 | + )} |
| 112 | + ) |
100 | 113 | public Response findPetsByStatus(
|
101 |
| - @ApiParam(value = "Status values that need to be considered for filter", required = true, defaultValue = "available", allowableValues = "available,pending,sold", allowMultiple = true) @QueryParam("status") String status) { |
| 114 | + @Parameter( |
| 115 | + description = "Status values that need to be considered for filter", |
| 116 | + required = true, |
| 117 | + schema = @Schema( |
| 118 | + allowableValues = {"available","pending","sold"}, |
| 119 | + defaultValue = "available" |
| 120 | + ) |
| 121 | + ) |
| 122 | + @QueryParam("status") String status |
| 123 | + ){ |
102 | 124 | return Response.ok(petData.findPetByStatus(status)).build();
|
103 | 125 | }
|
104 | 126 |
|
105 | 127 | @GET
|
106 | 128 | @Path("/findByTags")
|
107 |
| - @ApiOperation( |
108 |
| - value = "Finds Pets by tags", |
109 |
| - notes = "Multiple tags can be provided with comma separated strings. Use tag1, tag2, tag3 for testing.", |
110 |
| - response = Pet.class, |
111 |
| - responseContainer = "List") |
112 |
| - @ApiResponses(value = { @ApiResponse(code = 400, message = "Invalid tag value") }) |
| 129 | + @Operation(summary = "Finds Pets by tags", |
| 130 | + tags = {"pets"}, |
| 131 | + description = "Muliple tags can be provided with comma seperated strings. Use tag1, tag2, tag3 for testing.", |
| 132 | + responses = { |
| 133 | + @ApiResponse(description = "Pets matching criteria", |
| 134 | + content = @Content(mediaType = "application/json", |
| 135 | + schema = @Schema(implementation = Pet.class)) |
| 136 | + ), |
| 137 | + @ApiResponse(description = "Invalid tag value", responseCode = "400") |
| 138 | + }) |
113 | 139 | @Deprecated
|
114 | 140 | public Response findPetsByTags(
|
115 |
| - @ApiParam(value = "Tags to filter by", required = true, allowMultiple = true) @QueryParam("tags") String tags) { |
| 141 | + @Parameter(description = "Tags to filter by", required = true) @QueryParam("tags") String tags) { |
116 | 142 | return Response.ok(petData.findPetByTags(tags)).build();
|
117 |
| - }*/ |
| 143 | + } |
118 | 144 | }
|
0 commit comments