@Path(value="/") public class ApiListing extends Object
| Constructor and Description |
|---|
ApiListing(OpenAPIProvider openAPIProvider) |
| Modifier and Type | Method and Description |
|---|---|
javax.ws.rs.core.Response |
getListing(String type) |
javax.ws.rs.core.Response |
getListingJson() |
javax.ws.rs.core.Response |
getListingYaml() |
@Autowired public ApiListing(OpenAPIProvider openAPIProvider)
@GET
@Produces(value={"application/json","application/yaml"})
@Path(value="/{a:swagger|openapi}.{type:json|yaml}")
public javax.ws.rs.core.Response getListing(@PathParam(value="type")
String type)
@GET
@Produces(value="application/json")
@Path(value="/{a:swagger|openapi}")
public javax.ws.rs.core.Response getListingJson()
@GET
@Produces(value="application/yaml")
@Path(value="/{a:swagger|openapi}")
public javax.ws.rs.core.Response getListingYaml()
Copyright © 2022–2024 Taimos GmbH. All rights reserved.