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

Java.libraries.vertx.api.mustache Maven / Gradle / Ivy

There is a newer version: 7.6.0
Show newest version
package {{package}};

import {{invokerPackage}}.ApiClient;
{{#imports}}import {{import}};
{{/imports}}
import io.vertx.core.AsyncResult;
import io.vertx.core.Handler;
import io.vertx.core.json.JsonObject;

import java.util.*;

public interface {{classname}} {

    {{#operations}}
    {{#operation}}
    {{#isDeprecated}}
    @Deprecated
    {{/isDeprecated}}
    void {{operationId}}({{#allParams}}{{{dataType}}} {{paramName}}, {{/allParams}}Handler> handler);

    {{#isDeprecated}}
    @Deprecated
    {{/isDeprecated}}
    void {{operationId}}({{#allParams}}{{{dataType}}} {{paramName}}, {{/allParams}}ApiClient.AuthInfo authInfo, Handler> handler);

    {{/operation}}
    {{/operations}}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy