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: 0.9.25
Show newest version
package {{package}};

{{#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}}
    void {{operationId}}({{#allParams}}{{{dataType}}} {{paramName}}, {{/allParams}}Handler> handler);

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy