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

JavaVertXWebServer.apiImpl.mustache Maven / Gradle / Ivy

The newest version!
package {{package}};

{{#imports}}import {{import}};
{{/imports}}

import {{invokerPackage}}.ApiResponse;
import {{invokerPackage}}.ApiException;

import io.reactivex.Single;

import java.util.List;
import java.util.Map;

// Implement this class

public class {{classname}}Impl implements {{classname}} {
{{#operations}}
{{#operation}}
    public Single> {{operationId}}({{#allParams}}{{{dataType}}} {{paramName}}{{#hasMore}},{{/hasMore}}{{/allParams}}) {
        return Single.error(new ApiException("Not Implemented").setStatusCode(501));
    }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy