-
Notifications
You must be signed in to change notification settings - Fork 437
Expand file tree
/
Copy pathapi.mustache
More file actions
87 lines (82 loc) · 2.71 KB
/
api.mustache
File metadata and controls
87 lines (82 loc) · 2.71 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
package {{package}};
import {{invokerPackage}}.CollectionFormats.*;
import retrofit.Callback;
import retrofit.http.*;
import retrofit.mime.*;
{{#imports}}import {{import}};
{{/imports}}
{{^fullJavaUtil}}
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
{{/fullJavaUtil}}
{{#operations}}
public interface {{classname}} {
{{#operation}}
{{#contents}}
/**
* {{summary}}
* Sync method
* {{notes}}
{{#parameters}}
* @param {{paramName}} {{description}}{{#required}} (required){{/required}}{{^required}} (optional{{#defaultValue}}, default to {{{.}}}{{/defaultValue}}){{/required}}
{{/parameters}}
{{#returnType}}
* @return {{returnType}}
{{/returnType}}
{{#externalDocs}}
* {{description}}
* @see <a href="{{url}}">{{summary}} Documentation</a>
{{/externalDocs}}
*/
{{#formParams}}
{{#@first}}
{{#is ../this 'multipart'}}
@retrofit.http.Multipart
{{/is}}
{{#isNot ../this 'multipart'}}
@retrofit.http.FormUrlEncoded
{{/isNot}}
{{/@first}}
{{/formParams}}
@{{httpMethod}}("{{{path}}}")
{{#returnType}}{{{returnType}}}{{/returnType}}{{^returnType}}Object{{/returnType}} {{operationId}}({{^parameters}});{{/parameters}}
{{#parameters}}{{>libraries/retrofit/queryParams}}{{>libraries/retrofit/pathParams}}{{>libraries/retrofit/headerParams}}{{>libraries/retrofit/bodyParams}}{{>libraries/retrofit/formParams}}{{>libraries/retrofit/cookieParams}}{{#has this 'more'}}, {{/has}}{{#hasNot this 'more'}}
);{{/hasNot}}{{/parameters}}
/**
* {{summary}}
* Async method
{{#parameters}}
* @param {{paramName}} {{description}}{{#required}} (required){{/required}}{{^required}} (optional{{#defaultValue}}, default to {{{.}}}{{/defaultValue}}){{/required}}
{{/parameters}}
* @param cb callback method
{{#vendorExtensions.x-is-deprecated}}
* @deprecated
{{/vendorExtensions.x-is-deprecated}}
{{#externalDocs}}
* {{description}}
* @see <a href="{{url}}">{{summary}} Documentation</a>
{{/externalDocs}}
*/
{{#formParams}}
{{#@first}}
{{#is ../this 'multipart'}}
@retrofit.http.Multipart
{{/is}}
{{#isNot ../this 'multipart'}}
@retrofit.http.FormUrlEncoded
{{/isNot}}
{{/@first}}
{{/formParams}}
@{{httpMethod}}("{{{path}}}")
{{#vendorExtensions.x-is-deprecated}}
@Deprecated
{{/vendorExtensions.x-is-deprecated}}
void {{operationId}}(
{{#parameters}}{{>libraries/retrofit/queryParams}}{{>libraries/retrofit/pathParams}}{{>libraries/retrofit/headerParams}}{{>libraries/retrofit/bodyParams}}{{>libraries/retrofit/formParams}}{{>libraries/retrofit/cookieParams}}, {{/parameters}}Callback<{{#returnType}}{{{returnType}}}{{/returnType}}{{^returnType}}Object{{/returnType}}> cb
);
{{/contents}}
{{/operation}}
}
{{/operations}}