Class OpenApiUiService
- java.lang.Object
-
- org.microprofileext.openapi.swaggerui.OpenApiUiService
-
@Path("/openapi-ui/") @PermitAll public class OpenApiUiService extends ObjectThis service creates a HTML document for Swagger UI- Author:
- Phillip Kruger (phillip.kruger@phillip-kruger.com)
-
-
Constructor Summary
Constructors Constructor Description OpenApiUiService()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description jakarta.ws.rs.core.ResponsegetCss()byte[]getLogo()jakarta.ws.rs.core.ResponsegetOpenApiUI()jakarta.ws.rs.core.ResponsegetSwaggerUINaked()
-
-
-
Method Detail
-
getLogo
@GET @Produces("image/png") @Path("logo.png") public byte[] getLogo()
-
getOpenApiUI
@GET @Produces("text/html") @Path("index.html") public jakarta.ws.rs.core.Response getOpenApiUI()
-
getCss
@GET @Produces("text/css") @Path("style.css") public jakarta.ws.rs.core.Response getCss()
-
getSwaggerUINaked
@GET @Produces("text/html") public jakarta.ws.rs.core.Response getSwaggerUINaked()
-
-