Skip to content
This repository was archived by the owner on Oct 30, 2023. It is now read-only.

Commit 7e51066

Browse files
authored
Merge pull request #101 from swagger-api/dropwizard-resources
updates dropwizard sample resources
2 parents 733686c + e2028cc commit 7e51066

File tree

3 files changed

+77
-251
lines changed

3 files changed

+77
-251
lines changed

java/java-dropwizard/src/main/java/io/swagger/sample/resource/JavaRestResourceUtil.java

-100
This file was deleted.

java/java-dropwizard/src/main/java/io/swagger/sample/resource/PetResource.java

+77-51
Original file line numberDiff line numberDiff line change
@@ -23,96 +23,122 @@
2323
import io.swagger.oas.annotations.responses.ApiResponse;
2424
import io.swagger.sample.data.PetData;
2525
import io.swagger.sample.model.Pet;
26-
import io.swagger.sample.exception.NotFoundException;
2726

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;
2835
import javax.ws.rs.core.Response;
29-
import javax.ws.rs.*;
3036

3137
@Path("/pet")
32-
@Produces({"application/json"})
38+
@Produces({"application/json", "application/xml"})
3339
public class PetResource {
3440
static PetData petData = new PetData();
3541

3642
@GET
3743
@Path("/{petId}")
3844
@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+
})
6055
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 {
6366
Pet pet = petData.getPetById(petId);
6467
if (null != pet) {
6568
return Response.ok().entity(pet).build();
6669
} else {
67-
throw new NotFoundException(404, "Pet not found");
70+
throw new io.swagger.sample.exception.NotFoundException(404, "Pet not found");
6871
}
6972
}
7073

71-
/*
7274
@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+
})
7581
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) {
7783
petData.addPet(pet);
7884
return Response.ok().entity("SUCCESS").build();
7985
}
8086

8187
@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") })
8694
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) {
8896
petData.addPet(pet);
8997
return Response.ok().entity("SUCCESS").build();
9098
}
9199

92100
@GET
93101
@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+
)
100113
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+
){
102124
return Response.ok(petData.findPetByStatus(status)).build();
103125
}
104126

105127
@GET
106128
@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+
})
113139
@Deprecated
114140
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) {
116142
return Response.ok(petData.findPetByTags(tags)).build();
117-
}*/
143+
}
118144
}

java/java-jersey2/src/main/java/io/swagger/sample/resource/JavaRestResourceUtil.java

-100
This file was deleted.

0 commit comments

Comments
 (0)