|
| 1 | +/** |
| 2 | + * Copyright 2016 SmartBear Software |
| 3 | + * |
| 4 | + * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | + * you may not use this file except in compliance with the License. |
| 6 | + * You may obtain a copy of the License at |
| 7 | + * |
| 8 | + * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | + * |
| 10 | + * Unless required by applicable law or agreed to in writing, software |
| 11 | + * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | + * See the License for the specific language governing permissions and |
| 14 | + * limitations under the License. |
| 15 | + */ |
| 16 | + |
| 17 | +package io.swagger.sample.resource; |
| 18 | + |
| 19 | +import io.swagger.oas.annotations.Operation; |
| 20 | +import io.swagger.oas.annotations.Parameter; |
| 21 | +import io.swagger.oas.annotations.media.Content; |
| 22 | +import io.swagger.oas.annotations.media.Schema; |
| 23 | +import io.swagger.oas.annotations.responses.ApiResponse; |
| 24 | +import io.swagger.sample.data.PetData; |
| 25 | +import io.swagger.sample.model.Pet; |
| 26 | + |
| 27 | +import javax.ws.rs.BeanParam; |
| 28 | +import javax.ws.rs.GET; |
| 29 | +import javax.ws.rs.POST; |
| 30 | +import javax.ws.rs.PUT; |
| 31 | +import javax.ws.rs.Path; |
| 32 | +import javax.ws.rs.PathParam; |
| 33 | +import javax.ws.rs.Produces; |
| 34 | +import javax.ws.rs.QueryParam; |
| 35 | +import javax.ws.rs.core.Response; |
| 36 | + |
| 37 | +@Path("/pet") |
| 38 | +@Produces({"application/json", "application/xml"}) |
| 39 | +public class PetResource { |
| 40 | + static PetData petData = new PetData(); |
| 41 | + |
| 42 | + @GET |
| 43 | + @Path("/{petId}") |
| 44 | + @Operation(summary = "Find pet by ID", |
| 45 | + description = "Returns a pet when 0 < ID <= 10. ID > 10 or nonintegers will simulate API error conditions", |
| 46 | + responses = { |
| 47 | + @ApiResponse(description = "The pet", content = @Content( |
| 48 | + schema = @Schema(implementation = Pet.class) |
| 49 | + )), |
| 50 | + @ApiResponse(responseCode = "400", description = "Invalid ID supplied"), |
| 51 | + @ApiResponse(responseCode = "404", description = "Pet not found") |
| 52 | + }) |
| 53 | + public Response getPetById( |
| 54 | + @Parameter(description = "ID of pet that needs to be fetched"/*, _enum = "range[1,10]"*/, required = true) |
| 55 | + @PathParam("petId") Long petId) throws io.swagger.sample.exception.NotFoundException { |
| 56 | + Pet pet = petData.getPetById(petId); |
| 57 | + if (null != pet) { |
| 58 | + return Response.ok().entity(pet).build(); |
| 59 | + } else { |
| 60 | + throw new io.swagger.sample.exception.NotFoundException(404, "Pet not found"); |
| 61 | + } |
| 62 | + } |
| 63 | + |
| 64 | + @POST |
| 65 | + @Operation(summary = "Add a new pet to the store", |
| 66 | + responses = { |
| 67 | + @ApiResponse(responseCode = "405", description = "Invalid input") |
| 68 | + }) |
| 69 | + public Response addPet( |
| 70 | + @Parameter(description = "Pet object that needs to be added to the store", required = true) Pet pet) { |
| 71 | + petData.addPet(pet); |
| 72 | + return Response.ok().entity("SUCCESS").build(); |
| 73 | + } |
| 74 | + |
| 75 | + @PUT |
| 76 | + @Operation(summary = "Update an existing pet", |
| 77 | + responses = { |
| 78 | + @ApiResponse(responseCode = "400", description = "Invalid ID supplied"), |
| 79 | + @ApiResponse(responseCode = "404", description = "Pet not found"), |
| 80 | + @ApiResponse(responseCode = "405", description = "Validation exception") }) |
| 81 | + public Response updatePet( |
| 82 | + @Parameter(description = "Pet object that needs to be added to the store", required = true) Pet pet) { |
| 83 | + petData.addPet(pet); |
| 84 | + return Response.ok().entity("SUCCESS").build(); |
| 85 | + } |
| 86 | + |
| 87 | + @GET |
| 88 | + @Path("/findByStatus") |
| 89 | + @Operation(summary = "Finds Pets by status", |
| 90 | + description = "Multiple status values can be provided with comma seperated strings", |
| 91 | + responses = { |
| 92 | + @ApiResponse( |
| 93 | + content = @Content(mediaType = "application/json", |
| 94 | + schema = @Schema(implementation = Pet.class))), |
| 95 | + @ApiResponse( |
| 96 | + responseCode = "400", description = "Invalid status value" |
| 97 | + )} |
| 98 | + ) |
| 99 | + public Response findPetsByStatus( |
| 100 | + @Parameter(description = "Status values that need to be considered for filter", required = true/*, defaultValue = "available", allowableValues = "available,pending,sold", allowMultiple = true*/) @QueryParam("status") String status, |
| 101 | + @BeanParam QueryResultBean qr |
| 102 | +){ |
| 103 | + return Response.ok(petData.findPetByStatus(status)).build(); |
| 104 | + } |
| 105 | + |
| 106 | + @GET |
| 107 | + @Path("/findByTags") |
| 108 | + @Operation(summary = "Finds Pets by tags", |
| 109 | + description = "Muliple tags can be provided with comma seperated strings. Use tag1, tag2, tag3 for testing.", |
| 110 | + responses = { |
| 111 | + @ApiResponse(description = "Pets matching criteria", |
| 112 | + content = @Content(mediaType = "application/json", |
| 113 | + schema = @Schema(implementation = Pet.class)) |
| 114 | + ), |
| 115 | + @ApiResponse(description = "Invalid tag value", responseCode = "400") |
| 116 | + }) |
| 117 | + @Deprecated |
| 118 | + public Response findPetsByTags( |
| 119 | + @Parameter(description = "Tags to filter by", required = true/*, allowMultiple = true*/) @QueryParam("tags") String tags) { |
| 120 | + return Response.ok(petData.findPetByTags(tags)).build(); |
| 121 | + } |
| 122 | +} |
0 commit comments