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

java-helidon.client.libraries.se.api.mustache Maven / Gradle / Ivy

There is a newer version: 7.7.0
Show newest version
{{>licenseInfo}}
package {{package}};

import {{invokerPackage}}.ApiResponse;
{{#imports}}import {{import}};
{{/imports}}

{{#appName}}
/**
 * {{{appName}}}
 *
 {{#appDescription}}
 * 

{{{.}}} {{/appDescription}} */ {{/appName}} public interface {{classname}} { {{#operations}} {{#operation}} {{#summary}} /** * {{summary}} {{#notes}} * {{.}} {{/notes}} {{#allParams}} * @param {{paramName}} {{description}}{{#required}} (required){{/required}}{{^required}} (optional{{^isContainer}}{{#defaultValue}}, default to {{.}}{{/defaultValue}}){{/isContainer}}{{/required}} {{/allParams}} * @return {@code {{>operationResponseSig}}} {{#isDeprecated}} * @deprecated {{/isDeprecated}} */ {{/summary}} {{#isDeprecated}} @Deprecated {{/isDeprecated}} {{>operationResponseSig}} {{operationId}}({{#allParams}}{{{dataType}}} {{paramName}}{{^-last}}, {{/-last}}{{/allParams}}); {{/operation}} {{/operations}} }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy