Uses of Class
io.muserver.openapi.OpenAPIObjectBuilder
-
Packages that use OpenAPIObjectBuilder Package Description io.muserver.openapi A model of the Open API spec, which is used internally when creating documentation for JAX-RS services.io.muserver.rest This package contains the JAX-RS implementation for mu-server. -
-
Uses of OpenAPIObjectBuilder in io.muserver.openapi
Methods in io.muserver.openapi that return OpenAPIObjectBuilder Modifier and Type Method Description static OpenAPIObjectBuilder
OpenAPIObjectBuilder. openAPIObject()
Creates a builder for anOpenAPIObject
OpenAPIObjectBuilder
OpenAPIObjectBuilder. withComponents(ComponentsObject components)
OpenAPIObjectBuilder
OpenAPIObjectBuilder. withExternalDocs(ExternalDocumentationObject externalDocs)
OpenAPIObjectBuilder
OpenAPIObjectBuilder. withInfo(InfoObject info)
OpenAPIObjectBuilder
OpenAPIObjectBuilder. withPaths(PathsObject paths)
OpenAPIObjectBuilder
OpenAPIObjectBuilder. withSecurity(java.util.List<SecurityRequirementObject> security)
OpenAPIObjectBuilder
OpenAPIObjectBuilder. withServers(java.util.List<ServerObject> servers)
OpenAPIObjectBuilder
OpenAPIObjectBuilder. withTags(java.util.List<TagObject> tags)
-
Uses of OpenAPIObjectBuilder in io.muserver.rest
Methods in io.muserver.rest that return OpenAPIObjectBuilder Modifier and Type Method Description OpenAPIObjectBuilder
RestHandlerBuilder. openAPIObject()
Methods in io.muserver.rest with parameters of type OpenAPIObjectBuilder Modifier and Type Method Description RestHandlerBuilder
RestHandlerBuilder. withOpenApiDocument(OpenAPIObjectBuilder openAPIObject)
Use this value to create JSON and HTML documentation for your rest service.
-