You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
publicResponseupdatePet(@ApiParam(value = "Pet object that needs to be added to the store" ) Petbody)
47
47
throwsNotFoundException {
48
-
returndelegate.updatePet(body);
48
+
returndelegate.updatePet(body);
49
49
}
50
50
@POST
51
51
@@ -57,7 +57,7 @@ public Response updatePet(@ApiParam(value = "Pet object that needs to be added t
57
57
58
58
publicResponseaddPet(@ApiParam(value = "Pet object that needs to be added to the store" ) Petbody)
59
59
throwsNotFoundException {
60
-
returndelegate.addPet(body);
60
+
returndelegate.addPet(body);
61
61
}
62
62
@GET
63
63
@Path("/findByStatus")
@@ -71,7 +71,7 @@ public Response addPet(@ApiParam(value = "Pet object that needs to be added to t
71
71
72
72
publicResponsefindPetsByStatus(@ApiParam(value = "Status values that need to be considered for filter", defaultValue="available") @QueryParam("status") List<String> status)
73
73
throwsNotFoundException {
74
-
returndelegate.findPetsByStatus(status);
74
+
returndelegate.findPetsByStatus(status);
75
75
}
76
76
@GET
77
77
@Path("/findByTags")
@@ -85,23 +85,23 @@ public Response findPetsByStatus(@ApiParam(value = "Status values that need to b
85
85
86
86
publicResponsefindPetsByTags(@ApiParam(value = "Tags to filter by") @QueryParam("tags") List<String> tags)
@io.swagger.annotations.ApiOperation(value = "Find pet by ID", notes = "Returns a pet when ID < 10. ID > 10 or nonintegers will simulate API error conditions", response = Pet.class)
@io.swagger.annotations.ApiOperation(value = "Find purchase order by ID", notes = "For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions", response = Order.class)
@io.swagger.annotations.ApiOperation(value = "Delete purchase order by ID", notes = "For valid response try integer IDs with value < 1000. Anything above 1000 or nonintegers will generate API errors", response = Void.class)
0 commit comments