File tree Expand file tree Collapse file tree 7 files changed +17
-17
lines changed
samples/server/petstore/jaxrs-cxf-cdi
src/gen/java/io/swagger/model Expand file tree Collapse file tree 7 files changed +17
-17
lines changed Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ public void setName(String name) {
57
57
58
58
59
59
@ Override
60
- public boolean equals (Object o ) {
60
+ public boolean equals (java . lang . Object o ) {
61
61
if (this == o ) {
62
62
return true ;
63
63
}
@@ -89,7 +89,7 @@ public String toString() {
89
89
* Convert the given object to string with each line indented by 4 spaces
90
90
* (except the first line).
91
91
*/
92
- private String toIndentedString (Object o ) {
92
+ private String toIndentedString (java . lang . Object o ) {
93
93
if (o == null ) {
94
94
return "null" ;
95
95
}
Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ public void setMessage(String message) {
75
75
76
76
77
77
@ Override
78
- public boolean equals (Object o ) {
78
+ public boolean equals (java . lang . Object o ) {
79
79
if (this == o ) {
80
80
return true ;
81
81
}
@@ -109,7 +109,7 @@ public String toString() {
109
109
* Convert the given object to string with each line indented by 4 spaces
110
110
* (except the first line).
111
111
*/
112
- private String toIndentedString (Object o ) {
112
+ private String toIndentedString (java . lang . Object o ) {
113
113
if (o == null ) {
114
114
return "null" ;
115
115
}
Original file line number Diff line number Diff line change @@ -163,7 +163,7 @@ public void setComplete(Boolean complete) {
163
163
164
164
165
165
@ Override
166
- public boolean equals (Object o ) {
166
+ public boolean equals (java . lang . Object o ) {
167
167
if (this == o ) {
168
168
return true ;
169
169
}
@@ -203,7 +203,7 @@ public String toString() {
203
203
* Convert the given object to string with each line indented by 4 spaces
204
204
* (except the first line).
205
205
*/
206
- private String toIndentedString (Object o ) {
206
+ private String toIndentedString (java . lang . Object o ) {
207
207
if (o == null ) {
208
208
return "null" ;
209
209
}
Original file line number Diff line number Diff line change @@ -169,7 +169,7 @@ public void setStatus(StatusEnum status) {
169
169
170
170
171
171
@ Override
172
- public boolean equals (Object o ) {
172
+ public boolean equals (java . lang . Object o ) {
173
173
if (this == o ) {
174
174
return true ;
175
175
}
@@ -209,7 +209,7 @@ public String toString() {
209
209
* Convert the given object to string with each line indented by 4 spaces
210
210
* (except the first line).
211
211
*/
212
- private String toIndentedString (Object o ) {
212
+ private String toIndentedString (java . lang . Object o ) {
213
213
if (o == null ) {
214
214
return "null" ;
215
215
}
Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ public void setName(String name) {
57
57
58
58
59
59
@ Override
60
- public boolean equals (Object o ) {
60
+ public boolean equals (java . lang . Object o ) {
61
61
if (this == o ) {
62
62
return true ;
63
63
}
@@ -89,7 +89,7 @@ public String toString() {
89
89
* Convert the given object to string with each line indented by 4 spaces
90
90
* (except the first line).
91
91
*/
92
- private String toIndentedString (Object o ) {
92
+ private String toIndentedString (java . lang . Object o ) {
93
93
if (o == null ) {
94
94
return "null" ;
95
95
}
Original file line number Diff line number Diff line change @@ -166,7 +166,7 @@ public void setUserStatus(Integer userStatus) {
166
166
167
167
168
168
@ Override
169
- public boolean equals (Object o ) {
169
+ public boolean equals (java . lang . Object o ) {
170
170
if (this == o ) {
171
171
return true ;
172
172
}
@@ -210,7 +210,7 @@ public String toString() {
210
210
* Convert the given object to string with each line indented by 4 spaces
211
211
* (except the first line).
212
212
*/
213
- private String toIndentedString (Object o ) {
213
+ private String toIndentedString (java . lang . Object o ) {
214
214
if (o == null ) {
215
215
return "null" ;
216
216
}
Original file line number Diff line number Diff line change 636
636
}
637
637
},
638
638
"securityDefinitions" : {
639
+ "api_key" : {
640
+ "type" : " apiKey" ,
641
+ "name" : " api_key" ,
642
+ "in" : " header"
643
+ },
639
644
"petstore_auth" : {
640
645
"type" : " oauth2" ,
641
646
"authorizationUrl" : " http://petstore.swagger.io/api/oauth/dialog" ,
644
649
"write:pets" : " modify pets in your account" ,
645
650
"read:pets" : " read your pets"
646
651
}
647
- },
648
- "api_key" : {
649
- "type" : " apiKey" ,
650
- "name" : " api_key" ,
651
- "in" : " header"
652
652
}
653
653
},
654
654
"definitions" : {
You can’t perform that action at this time.
0 commit comments