Annotation Type Header
Note that although the {@linkplain #org.eclipse.microprofile.openapi.models.headers.Header header} model contains a
content property, modeling that
information using annotations is not possible because the content annotation's
encoding references this annotation, a
cycle disallowed by the Java language.
- See Also:
-
Optional Element Summary
Optional ElementsModifier and TypeOptional ElementDescriptionbooleanDeprecated, for removal: This API element is subject to removal in a future version.booleanSpecifies that a header is deprecated and should be transitioned out of usage.Additional description data to provide on the purpose of the headerExample of the header's potential value.Examples of the header's potential value.List of extensions to be added to theHeadermodel corresponding to the containing annotation.The name of the header.Reference value to a Header object.booleanDetermines whether this header is mandatory.The schema defining the type used for the header.
-
Element Details
-
name
String nameThe name of the header. The name is only used as the key to add this header to a map.It is a REQUIRED property unless this is only a reference to a header instance.
When the header is defined withinComponents, the name will be used as the key to add this header to the 'headers' map for reuse.- Returns:
- this header's name
- Default:
- ""
-
description
String descriptionAdditional description data to provide on the purpose of the header- Returns:
- the header's description
- Default:
- ""
-
schema
Schema schemaThe schema defining the type used for the header. Ignored if the properties content or array are specified.- Returns:
- the schema of the header
- Default:
- @org.eclipse.microprofile.openapi.annotations.media.Schema
-
required
boolean requiredDetermines whether this header is mandatory. The property may be included and its default value is false.- Returns:
- whether or not the header is required
- Default:
- false
-
deprecated
boolean deprecatedSpecifies that a header is deprecated and should be transitioned out of usage.- Returns:
- whether or not the header is deprecated
- Default:
- false
-
allowEmptyValue
Deprecated, for removal: This API element is subject to removal in a future version.The OpenAPI specification states thatallowEmptyValueis only valid forqueryparameters. As theHeadermodel is a specializedParameter, this attribute is not valid and should not be used. Removal of this property is planned for the next major release of MicroProfile OpenAPI.When true, allows sending an empty value. If false, the header will be considered \"null\" if no value is present. This may create validation errors when the header is required.- Returns:
- whether or not the header allows empty values
- Default:
- false
-
ref
String refReference value to a Header object.This property provides a reference to an object defined elsewhere. This property may be used with
description()but is mutually exclusive with all other properties. If properties other thandescriptionare defined in addition to therefproperty then the result is undefined.- Returns:
- reference to a header
- Default:
- ""
-
extensions
Extension[] extensionsList of extensions to be added to theHeadermodel corresponding to the containing annotation.- Returns:
- array of extensions
- Since:
- 3.1
- Default:
- {}
-
example
String exampleExample of the header's potential value. The example SHOULD match the specified schema and encoding properties if present. Theexamplefield is mutually exclusive of theexamplesfield. Furthermore, if referencing aschemathat contains an example, theexamplevalue SHALL override the example provided by the schema.If the media type associated with the example allows parsing into an object, it may be converted from a string.
- Returns:
- an example of the header
- Since:
- 4.2
- Default:
- ""
-
examples
ExampleObject[] examplesExamples of the header's potential value. Each example SHOULD contain a value in the correct format as specified in the parameter encoding. Theexamplesfield is mutually exclusive of theexamplefield. Furthermore, if referencing a schema that contains an example, theexamplesvalue SHALL override the example provided by the schema.- Returns:
- the list of examples for this header
- Since:
- 4.2
- Default:
- {}
-
allowEmptyValueis only valid forqueryparameters.