Uses of Interface
org.eclipse.microprofile.openapi.models.media.Content
-
Packages that use Content Package Description org.eclipse.microprofile.openapi A set of Java interfaces, annotations and programming models which allow Java developers to natively produce OpenAPI v3 documents from their JAX-RS applications.org.eclipse.microprofile.openapi.models.headers An interface of a programmable model to represent a single header object.org.eclipse.microprofile.openapi.models.media A set of interfaces for programmable models to represent input and output data types and media types.org.eclipse.microprofile.openapi.models.parameters A set of model interfaces to describe operation parameters and operation's request body.org.eclipse.microprofile.openapi.models.responses Model interfaces to describe a single response from an API operation, and an annotation to encapsulate multiple responses from an API operation. -
-
Uses of Content in org.eclipse.microprofile.openapi
Methods in org.eclipse.microprofile.openapi that return Content Modifier and Type Method Description static ContentOASFactory. createContent()This method creates a newContentinstance. -
Uses of Content in org.eclipse.microprofile.openapi.models.headers
Methods in org.eclipse.microprofile.openapi.models.headers that return Content Modifier and Type Method Description ContentHeader. getContent()Returns the content property from a Header instance.Methods in org.eclipse.microprofile.openapi.models.headers with parameters of type Content Modifier and Type Method Description default HeaderHeader. content(Content content)Sets this Header's content property to the given object.voidHeader. setContent(Content content)Sets this Header's content property to the given object. -
Uses of Content in org.eclipse.microprofile.openapi.models.media
Methods in org.eclipse.microprofile.openapi.models.media that return Content Modifier and Type Method Description ContentContent. addMediaType(String name, MediaType mediaType)Adds the MediaType for this Content, where the key is the name of the MediaType and the value is the object that describes the content passed into or returned from an operation. -
Uses of Content in org.eclipse.microprofile.openapi.models.parameters
Methods in org.eclipse.microprofile.openapi.models.parameters that return Content Modifier and Type Method Description ContentParameter. getContent()Returns the content property from a Parameter instance.ContentRequestBody. getContent()Returns the content of this instance of RequestBody, where the keys in content are media type names and the values describe it.Methods in org.eclipse.microprofile.openapi.models.parameters with parameters of type Content Modifier and Type Method Description default ParameterParameter. content(Content content)Sets the content property of a Parameter instance to the given object.default RequestBodyRequestBody. content(Content content)Sets the content of this instance of RequestBody, where the keys in content are media type names and the values describe it.voidParameter. setContent(Content content)Sets the content property of a Parameter instance to the given object.voidRequestBody. setContent(Content content)Sets the content of this instance of RequestBody, where the keys in content are media type names and the values describe it. -
Uses of Content in org.eclipse.microprofile.openapi.models.responses
Methods in org.eclipse.microprofile.openapi.models.responses that return Content Modifier and Type Method Description ContentAPIResponse. getContent()Returns the map containing descriptions of potential response payload for this instance of ApiResponse.Methods in org.eclipse.microprofile.openapi.models.responses with parameters of type Content Modifier and Type Method Description default APIResponseAPIResponse. content(Content content)Sets the map containing descriptions of potential response payload for this instance of ApiResponse and returns this ApiResponse instance.voidAPIResponse. setContent(Content content)Sets the map containing descriptions of potential response payload for this instance of ApiResponse.
-