File tree Expand file tree Collapse file tree
openapi-processor-core/src/testInt/resources/tests/endpoint-http-mapping Expand file tree Collapse file tree Original file line number Diff line number Diff line change 77 /endpoint :
88
99 get :
10- tags :
11- - endpoint
1210 responses :
1311 ' 204 ' :
1412 description : empty
1513
16- put :
17- tags :
18- - endpoint
14+ delete :
1915 responses :
2016 ' 204 ' :
2117 description : empty
2218
23- post :
24- tags :
25- - endpoint
19+ head :
20+ responses :
21+ ' 204 ' :
22+ description : empty
23+
24+ options :
2625 responses :
2726 ' 204 ' :
2827 description : empty
2928
3029 patch :
31- tags :
32- - endpoint
30+ responses :
31+ ' 204 ' :
32+ description : empty
33+
34+ post :
35+ responses :
36+ ' 204 ' :
37+ description : empty
38+
39+ put :
40+ responses :
41+ ' 204 ' :
42+ description : empty
43+
44+ trace :
3345 responses :
3446 ' 204 ' :
3547 description : empty
Original file line number Diff line number Diff line change 66paths :
77 /endpoint :
88
9+ delete :
10+ responses :
11+ ' 204 ' :
12+ description : empty
13+
914 get :
10- tags :
11- - endpoint
1215 responses :
1316 ' 204 ' :
1417 description : empty
1518
16- put :
17- tags :
18- - endpoint
19+ head :
1920 responses :
2021 ' 204 ' :
2122 description : empty
2223
23- post :
24- tags :
25- - endpoint
24+ options :
2625 responses :
2726 ' 204 ' :
2827 description : empty
2928
3029 patch :
31- tags :
32- - endpoint
30+ responses :
31+ ' 204 ' :
32+ description : empty
33+
34+ post :
35+ responses :
36+ ' 204 ' :
37+ description : empty
38+
39+ put :
40+ responses :
41+ ' 204 ' :
42+ description : empty
43+
44+ trace :
3345 responses :
3446 ' 204 ' :
3547 description : empty
Original file line number Diff line number Diff line change 11items :
2- - outputs/api/EndpointApi .java
2+ - outputs/api/Api .java
Original file line number Diff line number Diff line change 44import generated .support .Generated ;
55
66@ Generated (value = "openapi-processor-core" , version = "test" )
7- public interface EndpointApi {
7+ public interface Api {
8+
9+ @ Mapping ("/endpoint" )
10+ void deleteEndpoint ();
811
912 @ Mapping ("/endpoint" )
1013 void getEndpoint ();
1114
1215 @ Mapping ("/endpoint" )
13- void putEndpoint ();
16+ void headEndpoint ();
1417
1518 @ Mapping ("/endpoint" )
16- void postEndpoint ();
19+ void optionsEndpoint ();
1720
1821 @ Mapping ("/endpoint" )
1922 void patchEndpoint ();
2023
24+ @ Mapping ("/endpoint" )
25+ void postEndpoint ();
26+
27+ @ Mapping ("/endpoint" )
28+ void putEndpoint ();
29+
30+ @ Mapping ("/endpoint" )
31+ void traceEndpoint ();
32+
2133}
You can’t perform that action at this time.
0 commit comments