Skip to content

Commit af27493

Browse files
committed
rebuilt
1 parent 041da89 commit af27493

File tree

7 files changed

+17
-17
lines changed

7 files changed

+17
-17
lines changed

samples/server/petstore/jaxrs-cxf-cdi/src/gen/java/io/swagger/model/Category.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public void setName(String name) {
5757

5858

5959
@Override
60-
public boolean equals(Object o) {
60+
public boolean equals(java.lang.Object o) {
6161
if (this == o) {
6262
return true;
6363
}
@@ -89,7 +89,7 @@ public String toString() {
8989
* Convert the given object to string with each line indented by 4 spaces
9090
* (except the first line).
9191
*/
92-
private String toIndentedString(Object o) {
92+
private String toIndentedString(java.lang.Object o) {
9393
if (o == null) {
9494
return "null";
9595
}

samples/server/petstore/jaxrs-cxf-cdi/src/gen/java/io/swagger/model/ModelApiResponse.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ public void setMessage(String message) {
7575

7676

7777
@Override
78-
public boolean equals(Object o) {
78+
public boolean equals(java.lang.Object o) {
7979
if (this == o) {
8080
return true;
8181
}
@@ -109,7 +109,7 @@ public String toString() {
109109
* Convert the given object to string with each line indented by 4 spaces
110110
* (except the first line).
111111
*/
112-
private String toIndentedString(Object o) {
112+
private String toIndentedString(java.lang.Object o) {
113113
if (o == null) {
114114
return "null";
115115
}

samples/server/petstore/jaxrs-cxf-cdi/src/gen/java/io/swagger/model/Order.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ public void setComplete(Boolean complete) {
163163

164164

165165
@Override
166-
public boolean equals(Object o) {
166+
public boolean equals(java.lang.Object o) {
167167
if (this == o) {
168168
return true;
169169
}
@@ -203,7 +203,7 @@ public String toString() {
203203
* Convert the given object to string with each line indented by 4 spaces
204204
* (except the first line).
205205
*/
206-
private String toIndentedString(Object o) {
206+
private String toIndentedString(java.lang.Object o) {
207207
if (o == null) {
208208
return "null";
209209
}

samples/server/petstore/jaxrs-cxf-cdi/src/gen/java/io/swagger/model/Pet.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ public void setStatus(StatusEnum status) {
169169

170170

171171
@Override
172-
public boolean equals(Object o) {
172+
public boolean equals(java.lang.Object o) {
173173
if (this == o) {
174174
return true;
175175
}
@@ -209,7 +209,7 @@ public String toString() {
209209
* Convert the given object to string with each line indented by 4 spaces
210210
* (except the first line).
211211
*/
212-
private String toIndentedString(Object o) {
212+
private String toIndentedString(java.lang.Object o) {
213213
if (o == null) {
214214
return "null";
215215
}

samples/server/petstore/jaxrs-cxf-cdi/src/gen/java/io/swagger/model/Tag.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public void setName(String name) {
5757

5858

5959
@Override
60-
public boolean equals(Object o) {
60+
public boolean equals(java.lang.Object o) {
6161
if (this == o) {
6262
return true;
6363
}
@@ -89,7 +89,7 @@ public String toString() {
8989
* Convert the given object to string with each line indented by 4 spaces
9090
* (except the first line).
9191
*/
92-
private String toIndentedString(Object o) {
92+
private String toIndentedString(java.lang.Object o) {
9393
if (o == null) {
9494
return "null";
9595
}

samples/server/petstore/jaxrs-cxf-cdi/src/gen/java/io/swagger/model/User.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ public void setUserStatus(Integer userStatus) {
166166

167167

168168
@Override
169-
public boolean equals(Object o) {
169+
public boolean equals(java.lang.Object o) {
170170
if (this == o) {
171171
return true;
172172
}
@@ -210,7 +210,7 @@ public String toString() {
210210
* Convert the given object to string with each line indented by 4 spaces
211211
* (except the first line).
212212
*/
213-
private String toIndentedString(Object o) {
213+
private String toIndentedString(java.lang.Object o) {
214214
if (o == null) {
215215
return "null";
216216
}

samples/server/petstore/jaxrs-cxf-cdi/swagger.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -636,6 +636,11 @@
636636
}
637637
},
638638
"securityDefinitions" : {
639+
"api_key" : {
640+
"type" : "apiKey",
641+
"name" : "api_key",
642+
"in" : "header"
643+
},
639644
"petstore_auth" : {
640645
"type" : "oauth2",
641646
"authorizationUrl" : "http://petstore.swagger.io/api/oauth/dialog",
@@ -644,11 +649,6 @@
644649
"write:pets" : "modify pets in your account",
645650
"read:pets" : "read your pets"
646651
}
647-
},
648-
"api_key" : {
649-
"type" : "apiKey",
650-
"name" : "api_key",
651-
"in" : "header"
652652
}
653653
},
654654
"definitions" : {

0 commit comments

Comments
 (0)