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

JavaJaxRS.spec.RestApplication.mustache Maven / Gradle / Ivy

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

import {{javaxPackage}}.ws.rs.ApplicationPath;
import {{javaxPackage}}.ws.rs.core.Application;
{{#useMicroProfileOpenAPIAnnotations}}{{#openAPI}}{{#info}}
@org.eclipse.microprofile.openapi.annotations.OpenAPIDefinition(
    info = @org.eclipse.microprofile.openapi.annotations.info.Info(
        version="{{{appVersion}}}"
        {{#appName}},title = "{{{.}}}"{{/appName}}
        {{#appDescription}},description = "{{{.}}}"{{/appDescription}}
        {{#license}},license = @org.eclipse.microprofile.openapi.annotations.info.License(name = "{{{licenseInfo}}}", url = "{{{licenseUrl}}}"){{/license}}
        {{#contact}},contact = @org.eclipse.microprofile.openapi.annotations.info.Contact(name = "{{{infoName}}}", email = "{{{infoEmail}}}"){{/contact}}
)){{/info}}{{/openAPI}}{{/useMicroProfileOpenAPIAnnotations}}
@ApplicationPath(RestResourceRoot.APPLICATION_PATH)
public class RestApplication extends Application {

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy