javaVertXServer.AsyncCall.mustache Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vertx-swagger-codegen Show documentation
Show all versions of vertx-swagger-codegen Show documentation
A Swagger codegen plugin for Vert.X. Based on the Swagger Router.
The newest version!
{{#returnType}}
{{#isListContainer}}
service.{{operationId}}({{#hasParams}}{{#allParams}}{{paramName}}, {{/allParams}}{{/hasParams}}{{#hasAuthMethods}}user, {{/hasAuthMethods}}verticleHelper.getAsyncResultHandler(message, {{#vendorExtensions}}{{x-serviceId-varName}}{{/vendorExtensions}}, true, new TypeReference<{{{returnType}}}>(){}));
{{/isListContainer}}
{{^isListContainer}}
{{#returnTypeIsPrimitive}}
service.{{operationId}}({{#hasParams}}{{#allParams}}{{paramName}}, {{/allParams}}{{/hasParams}}{{#hasAuthMethods}}user, {{/hasAuthMethods}}verticleHelper.getAsyncResultHandler(message, {{#vendorExtensions}}{{x-serviceId-varName}}{{/vendorExtensions}}, false, new TypeReference<{{{returnType}}}>(){}));
{{/returnTypeIsPrimitive}}
{{^returnTypeIsPrimitive}}
service.{{operationId}}({{#hasParams}}{{#allParams}}{{paramName}}, {{/allParams}}{{/hasParams}}{{#hasAuthMethods}}user, {{/hasAuthMethods}}verticleHelper.getAsyncResultHandler(message, {{#vendorExtensions}}{{x-serviceId-varName}}{{/vendorExtensions}}, true, new TypeReference<{{{returnType}}}>(){}));
{{/returnTypeIsPrimitive}}
{{/isListContainer}}
{{/returnType}}
{{^returnType}}
service.{{operationId}}({{#hasParams}}{{#allParams}}{{paramName}}, {{/allParams}}{{/hasParams}}{{#hasAuthMethods}}user, {{/hasAuthMethods}}verticleHelper.getAsyncResultHandler(message, {{#vendorExtensions}}{{x-serviceId-varName}}{{/vendorExtensions}}, false, new TypeReference(){}));
{{/returnType}}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy