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

io.paradoxical.dropwizard.swagger.SwaggerResourcesLocator Maven / Gradle / Ivy

There is a newer version: 2.4
Show newest version
package io.paradoxical.dropwizard.swagger;

import io.dropwizard.setup.Environment;
import io.paradoxical.dropwizard.swagger.resources.SwaggerApiResource;
import io.paradoxical.dropwizard.swagger.resources.SwaggerUIResource;

import javax.ws.rs.Path;

@Path("/swagger")
public interface SwaggerResourcesLocator {
    @Path("/api")
    SwaggerApiResource api();

    @Path("/ui")
    SwaggerUIResource ui();

    interface Factory {
        SwaggerResourcesLocator forEnvironment(Environment environment);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy