Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
**/

@ApiModel(description = "A category for a pet")
@javax.annotation.Generated(value = "class io.swagger.codegen.languages.UndertowCodegen", date = "2016-10-19T16:19:58.109+08:00")
@javax.annotation.Generated(value = "io.swagger.codegen.languages.UndertowCodegen", date = "2017-03-26T17:33:39.915+02:00")
public class Category {

private Long id = null;
Expand All @@ -27,7 +27,7 @@ public Category id(Long id) {
}


@ApiModelProperty(example = "null", value = "")
@ApiModelProperty(value = "")
@JsonProperty("id")
public Long getId() {
return id;
Expand All @@ -44,7 +44,7 @@ public Category name(String name) {
}


@ApiModelProperty(example = "null", value = "")
@ApiModelProperty(value = "")
@JsonProperty("name")
public String getName() {
return name;
Expand All @@ -55,7 +55,7 @@ public void setName(String name) {


@Override
public boolean equals(Object o) {
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
Expand Down Expand Up @@ -87,7 +87,7 @@ public String toString() {
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(Object o) {
private String toIndentedString(java.lang.Object o) {
if (o == null) {
return "null";
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
**/

@ApiModel(description = "Describes the result of uploading an image resource")
@javax.annotation.Generated(value = "class io.swagger.codegen.languages.UndertowCodegen", date = "2016-10-19T16:19:58.109+08:00")
@javax.annotation.Generated(value = "io.swagger.codegen.languages.UndertowCodegen", date = "2017-03-26T17:33:39.915+02:00")
public class ModelApiResponse {

private Integer code = null;
Expand All @@ -28,7 +28,7 @@ public ModelApiResponse code(Integer code) {
}


@ApiModelProperty(example = "null", value = "")
@ApiModelProperty(value = "")
@JsonProperty("code")
public Integer getCode() {
return code;
Expand All @@ -45,7 +45,7 @@ public ModelApiResponse type(String type) {
}


@ApiModelProperty(example = "null", value = "")
@ApiModelProperty(value = "")
@JsonProperty("type")
public String getType() {
return type;
Expand All @@ -62,7 +62,7 @@ public ModelApiResponse message(String message) {
}


@ApiModelProperty(example = "null", value = "")
@ApiModelProperty(value = "")
@JsonProperty("message")
public String getMessage() {
return message;
Expand All @@ -73,7 +73,7 @@ public void setMessage(String message) {


@Override
public boolean equals(Object o) {
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
Expand Down Expand Up @@ -107,7 +107,7 @@ public String toString() {
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(Object o) {
private String toIndentedString(java.lang.Object o) {
if (o == null) {
return "null";
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
**/

@ApiModel(description = "An order for a pets from the pet store")
@javax.annotation.Generated(value = "class io.swagger.codegen.languages.UndertowCodegen", date = "2016-10-19T16:19:58.109+08:00")
@javax.annotation.Generated(value = "io.swagger.codegen.languages.UndertowCodegen", date = "2017-03-26T17:33:39.915+02:00")
public class Order {

private Long id = null;
Expand Down Expand Up @@ -53,7 +53,7 @@ public Order id(Long id) {
}


@ApiModelProperty(example = "null", value = "")
@ApiModelProperty(value = "")
@JsonProperty("id")
public Long getId() {
return id;
Expand All @@ -70,7 +70,7 @@ public Order petId(Long petId) {
}


@ApiModelProperty(example = "null", value = "")
@ApiModelProperty(value = "")
@JsonProperty("petId")
public Long getPetId() {
return petId;
Expand All @@ -87,7 +87,7 @@ public Order quantity(Integer quantity) {
}


@ApiModelProperty(example = "null", value = "")
@ApiModelProperty(value = "")
@JsonProperty("quantity")
public Integer getQuantity() {
return quantity;
Expand All @@ -104,7 +104,7 @@ public Order shipDate(Date shipDate) {
}


@ApiModelProperty(example = "null", value = "")
@ApiModelProperty(value = "")
@JsonProperty("shipDate")
public Date getShipDate() {
return shipDate;
Expand All @@ -122,7 +122,7 @@ public Order status(StatusEnum status) {
}


@ApiModelProperty(example = "null", value = "Order Status")
@ApiModelProperty(value = "Order Status")
@JsonProperty("status")
public StatusEnum getStatus() {
return status;
Expand All @@ -139,7 +139,7 @@ public Order complete(Boolean complete) {
}


@ApiModelProperty(example = "null", value = "")
@ApiModelProperty(value = "")
@JsonProperty("complete")
public Boolean getComplete() {
return complete;
Expand All @@ -150,7 +150,7 @@ public void setComplete(Boolean complete) {


@Override
public boolean equals(Object o) {
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
Expand Down Expand Up @@ -190,7 +190,7 @@ public String toString() {
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(Object o) {
private String toIndentedString(java.lang.Object o) {
if (o == null) {
return "null";
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
**/

@ApiModel(description = "A pet for sale in the pet store")
@javax.annotation.Generated(value = "class io.swagger.codegen.languages.UndertowCodegen", date = "2016-10-19T16:19:58.109+08:00")
@javax.annotation.Generated(value = "io.swagger.codegen.languages.UndertowCodegen", date = "2017-03-26T17:33:39.915+02:00")
public class Pet {

private Long id = null;
Expand Down Expand Up @@ -56,7 +56,7 @@ public Pet id(Long id) {
}


@ApiModelProperty(example = "null", value = "")
@ApiModelProperty(value = "")
@JsonProperty("id")
public Long getId() {
return id;
Expand All @@ -73,7 +73,7 @@ public Pet category(Category category) {
}


@ApiModelProperty(example = "null", value = "")
@ApiModelProperty(value = "")
@JsonProperty("category")
public Category getCategory() {
return category;
Expand Down Expand Up @@ -107,7 +107,7 @@ public Pet photoUrls(List<String> photoUrls) {
}


@ApiModelProperty(example = "null", required = true, value = "")
@ApiModelProperty(required = true, value = "")
@JsonProperty("photoUrls")
public List<String> getPhotoUrls() {
return photoUrls;
Expand All @@ -124,7 +124,7 @@ public Pet tags(List<Tag> tags) {
}


@ApiModelProperty(example = "null", value = "")
@ApiModelProperty(value = "")
@JsonProperty("tags")
public List<Tag> getTags() {
return tags;
Expand All @@ -142,7 +142,7 @@ public Pet status(StatusEnum status) {
}


@ApiModelProperty(example = "null", value = "pet status in the store")
@ApiModelProperty(value = "pet status in the store")
@JsonProperty("status")
public StatusEnum getStatus() {
return status;
Expand All @@ -153,7 +153,7 @@ public void setStatus(StatusEnum status) {


@Override
public boolean equals(Object o) {
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
Expand Down Expand Up @@ -193,7 +193,7 @@ public String toString() {
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(Object o) {
private String toIndentedString(java.lang.Object o) {
if (o == null) {
return "null";
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
**/

@ApiModel(description = "A tag for a pet")
@javax.annotation.Generated(value = "class io.swagger.codegen.languages.UndertowCodegen", date = "2016-10-19T16:19:58.109+08:00")
@javax.annotation.Generated(value = "io.swagger.codegen.languages.UndertowCodegen", date = "2017-03-26T17:33:39.915+02:00")
public class Tag {

private Long id = null;
Expand All @@ -27,7 +27,7 @@ public Tag id(Long id) {
}


@ApiModelProperty(example = "null", value = "")
@ApiModelProperty(value = "")
@JsonProperty("id")
public Long getId() {
return id;
Expand All @@ -44,7 +44,7 @@ public Tag name(String name) {
}


@ApiModelProperty(example = "null", value = "")
@ApiModelProperty(value = "")
@JsonProperty("name")
public String getName() {
return name;
Expand All @@ -55,7 +55,7 @@ public void setName(String name) {


@Override
public boolean equals(Object o) {
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
Expand Down Expand Up @@ -87,7 +87,7 @@ public String toString() {
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(Object o) {
private String toIndentedString(java.lang.Object o) {
if (o == null) {
return "null";
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
**/

@ApiModel(description = "A User who is purchasing from the pet store")
@javax.annotation.Generated(value = "class io.swagger.codegen.languages.UndertowCodegen", date = "2016-10-19T16:19:58.109+08:00")
@javax.annotation.Generated(value = "io.swagger.codegen.languages.UndertowCodegen", date = "2017-03-26T17:33:39.915+02:00")
public class User {

private Long id = null;
Expand All @@ -33,7 +33,7 @@ public User id(Long id) {
}


@ApiModelProperty(example = "null", value = "")
@ApiModelProperty(value = "")
@JsonProperty("id")
public Long getId() {
return id;
Expand All @@ -50,7 +50,7 @@ public User username(String username) {
}


@ApiModelProperty(example = "null", value = "")
@ApiModelProperty(value = "")
@JsonProperty("username")
public String getUsername() {
return username;
Expand All @@ -67,7 +67,7 @@ public User firstName(String firstName) {
}


@ApiModelProperty(example = "null", value = "")
@ApiModelProperty(value = "")
@JsonProperty("firstName")
public String getFirstName() {
return firstName;
Expand All @@ -84,7 +84,7 @@ public User lastName(String lastName) {
}


@ApiModelProperty(example = "null", value = "")
@ApiModelProperty(value = "")
@JsonProperty("lastName")
public String getLastName() {
return lastName;
Expand All @@ -101,7 +101,7 @@ public User email(String email) {
}


@ApiModelProperty(example = "null", value = "")
@ApiModelProperty(value = "")
@JsonProperty("email")
public String getEmail() {
return email;
Expand All @@ -118,7 +118,7 @@ public User password(String password) {
}


@ApiModelProperty(example = "null", value = "")
@ApiModelProperty(value = "")
@JsonProperty("password")
public String getPassword() {
return password;
Expand All @@ -135,7 +135,7 @@ public User phone(String phone) {
}


@ApiModelProperty(example = "null", value = "")
@ApiModelProperty(value = "")
@JsonProperty("phone")
public String getPhone() {
return phone;
Expand All @@ -153,7 +153,7 @@ public User userStatus(Integer userStatus) {
}


@ApiModelProperty(example = "null", value = "User Status")
@ApiModelProperty(value = "User Status")
@JsonProperty("userStatus")
public Integer getUserStatus() {
return userStatus;
Expand All @@ -164,7 +164,7 @@ public void setUserStatus(Integer userStatus) {


@Override
public boolean equals(Object o) {
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
Expand Down Expand Up @@ -208,7 +208,7 @@ public String toString() {
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(Object o) {
private String toIndentedString(java.lang.Object o) {
if (o == null) {
return "null";
}
Expand Down
Loading