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
publicResponsefindPetsByStatus(@ApiParam(value = "Status values that need to be considered for filter", defaultValue="available") @QueryParam("status") List<String> status,@ContextSecurityContextsecurityContext)
90
+
publicResponsefindPetsByStatus(@ApiParam(value = "Status values that need to be considered for filter", defaultValue="available") @DefaultValue("available") @QueryParam("status") List<String> status
publicResponsegetPetById(@ApiParam(value = "ID of pet that needs to be fetched",required=true) @PathParam("petId") LongpetId,@ContextSecurityContextsecurityContext)
129
+
publicResponsegetPetById(
130
+
@ApiParam(value = "ID of pet that needs to be fetched",required=true) @PathParam("petId") LongpetId,@ContextSecurityContextsecurityContext)
publicResponseupdatePetWithForm(@ApiParam(value = "ID of pet that needs to be updated",required=true) @PathParam("petId") StringpetId,@ApiParam(value = "Updated name of the pet")@FormParam("name") Stringname,@ApiParam(value = "Updated status of the pet")@FormParam("status") Stringstatus,@ContextSecurityContextsecurityContext)
147
+
publicResponseupdatePetWithForm(
148
+
@ApiParam(value = "ID of pet that needs to be updated",required=true) @PathParam("petId") StringpetId,
149
+
@ApiParam(value = "Updated name of the pet")@FormParam("name") Stringname,
150
+
@ApiParam(value = "Updated status of the pet")@FormParam("status") Stringstatus,@ContextSecurityContextsecurityContext)
publicResponseuploadFile(@ApiParam(value = "ID of pet to update",required=true) @PathParam("petId") LongpetId,@ApiParam(value = "Additional data to pass to server")@FormParam("additionalMetadata") StringadditionalMetadata, @FormDataParam("file") InputStreaminputStream,
186
+
publicResponseuploadFile(
187
+
@ApiParam(value = "ID of pet to update",required=true) @PathParam("petId") LongpetId,
188
+
@ApiParam(value = "Additional data to pass to server")@FormParam("additionalMetadata") StringadditionalMetadata,
publicResponsegetPetByIdWithByteArray(@ApiParam(value = "ID of pet that needs to be fetched",required=true) @PathParam("petId") LongpetId,@ContextSecurityContextsecurityContext)
208
+
publicResponsegetPetByIdWithByteArray(
209
+
@ApiParam(value = "ID of pet that needs to be fetched",required=true) @PathParam("petId") LongpetId,@ContextSecurityContextsecurityContext)
@io.swagger.annotations.ApiOperation(value = "Fake endpoint to test byte array in body parameter for adding a new pet to the store", notes = "", response = Void.class, authorizations = {
37
+
@io.swagger.annotations.ApiOperation(value = "Fake endpoint to test byte array in body parameter for adding a new pet to the store", notes = "", response = void.class, authorizations = {
0 commit comments