All Downloads are FREE. Search and download functionalities are using the official Maven repository.

handlebars.Java.libraries.retrofit.api.mustache Maven / Gradle / Ivy

There is a newer version: 1.0.54
Show newest version
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 {{summary}} Documentation
{{/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
{{#externalDocs}}
   * {{description}}
   * @see {{summary}} Documentation
{{/externalDocs}}
   */
  {{#formParams}}
  {{#@first}}
  {{#is ../this 'multipart'}}
  @retrofit.http.Multipart
  {{/is}}
  {{#isNot ../this 'multipart'}}
  @retrofit.http.FormUrlEncoded
  {{/isNot}}
  {{/@first}}
  {{/formParams}}
  @{{httpMethod}}("{{{path}}}")
  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}}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy