io.quarkus.smallrye.openapi.runtime.OpenApiDocumentHolder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-smallrye-openapi Show documentation
Show all versions of quarkus-smallrye-openapi Show documentation
Document your REST APIs with OpenAPI - comes with Swagger UI
package io.quarkus.smallrye.openapi.runtime;
/**
* Holds instances of the OpenAPI Document
*/
public interface OpenApiDocumentHolder {
public byte[] getJsonDocument();
public byte[] getYamlDocument();
}