javaVertXServer.apiImpl.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!
package {{package}};
{{#imports}}import {{import}};
{{/imports}}
{{#rxInterface}}
import rx.Completable;
import rx.Single;
import io.vertx.rxjava.ext.auth.User;
{{/rxInterface}}
{{^rxInterface}}
import io.vertx.core.AsyncResult;
import io.vertx.core.Handler;
import io.vertx.ext.auth.User;
{{/rxInterface}}
import java.util.List;
import java.util.Map;
public class {{classname}}Impl implements {{classname}} {
{{#operations}}
{{#operation}}
//{{#vendorExtensions}}{{x-serviceId}}{{/vendorExtensions}}
{{#rxInterface}}
{{>RxMethodImpl}}
{{/rxInterface}}
{{^rxInterface}}
{{>AsyncMethodImpl}}
{{/rxInterface}}
{{/operation}}
{{/operations}}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy