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
Copy file name to clipboardExpand all lines: samples/server/petstore/springboot/src/main/java/io/swagger/api/StoreApi.java
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
/**
2
-
* NOTE: This class is auto generated by the swagger code generator program (3.0.1-SNAPSHOT).
2
+
* NOTE: This class is auto generated by the swagger code generator program (3.0.4-SNAPSHOT).
3
3
* https://github.com/swagger-api/swagger-codegen
4
4
* Do not edit the class manually.
5
5
*/
@@ -27,7 +27,7 @@
27
27
@Api(value = "store", description = "the store API")
28
28
publicinterfaceStoreApi {
29
29
30
-
@ApiOperation(value = "Delete purchase order by ID", nickname = "deleteOrder", notes = "For valid response try integer IDs with value < 1000. Anything above 1000 or nonintegers will generate API errors", tags={ "store", })
30
+
@ApiOperation(value = "Delete purchase order by ID", nickname = "deleteOrder", notes = "For valid response try integer IDs with value < 1000. Anything above 1000 or nonintegers will generate API errors", tags={ })
31
31
@ApiResponses(value = {
32
32
@ApiResponse(code = 400, message = "Invalid ID supplied"),
33
33
@ApiResponse(code = 404, message = "Order not found") })
@@ -38,7 +38,7 @@ public interface StoreApi {
38
38
39
39
@ApiOperation(value = "Returns pet inventories by status", nickname = "getInventory", notes = "Returns a map of status codes to quantities", response = Integer.class, responseContainer = "Map", authorizations = {
@ApiOperation(value = "Find purchase order by ID", nickname = "getOrderById", notes = "For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions", response = Order.class, tags={ "store", })
50
+
@ApiOperation(value = "Find purchase order by ID", nickname = "getOrderById", notes = "For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions", response = Order.class, tags={ })
@ApiResponse(code = 400, message = "Invalid ID supplied"),
@@ -58,7 +58,7 @@ public interface StoreApi {
58
58
ResponseEntity<Order> getOrderById(@DecimalMin("1") @DecimalMax("5") @ApiParam(value = "ID of pet that needs to be fetched",required=true) @PathVariable("orderId") IntegerorderId);
59
59
60
60
61
-
@ApiOperation(value = "Place an order for a pet", nickname = "placeOrder", notes = "", response = Order.class, tags={ "store", })
61
+
@ApiOperation(value = "Place an order for a pet", nickname = "placeOrder", notes = "", response = Order.class, tags={ })
ResponseEntity<User> getUserByName(@ApiParam(value = "The name that needs to be fetched. Use user1 for testing. ",required=true) @PathVariable("username") Stringusername);
74
74
75
75
76
-
@ApiOperation(value = "Logs user into the system", nickname = "loginUser", notes = "", response = String.class, tags={ "user", })
76
+
@ApiOperation(value = "Logs user into the system", nickname = "loginUser", notes = "", response = String.class, tags={ })
0 commit comments