Class FixedContentNegotiationStrategy
java.lang.Object
org.springframework.web.accept.FixedContentNegotiationStrategy
- All Implemented Interfaces:
- ContentNegotiationStrategy
A 
ContentNegotiationStrategy that returns a fixed content type.- Since:
- 3.2
- Author:
- Rossen Stoyanchev
- 
Field SummaryFields inherited from interface ContentNegotiationStrategyMEDIA_TYPE_ALL_LIST
- 
Constructor SummaryConstructorsConstructorDescriptionFixedContentNegotiationStrategy(List<MediaType> contentTypes) Constructor with an ordered List of defaultMediaType's to return for use in applications that support a variety of content types.FixedContentNegotiationStrategy(MediaType contentType) Constructor with a single defaultMediaType.
- 
Method SummaryModifier and TypeMethodDescriptionReturn the configured list of media types.resolveMediaTypes(NativeWebRequest request) Resolve the given request to a list of media types.
- 
Constructor Details- 
FixedContentNegotiationStrategyConstructor with a single defaultMediaType.
- 
FixedContentNegotiationStrategyConstructor with an ordered List of defaultMediaType's to return for use in applications that support a variety of content types.Consider appending MediaType.ALLat the end if destinations are present which do not support any of the other default media types.- Since:
- 5.0
 
 
- 
- 
Method Details- 
getContentTypes
- 
resolveMediaTypesDescription copied from interface:ContentNegotiationStrategyResolve the given request to a list of media types. The returned list is ordered by specificity first and by quality parameter second.- Specified by:
- resolveMediaTypesin interface- ContentNegotiationStrategy
- Parameters:
- request- the current request
- Returns:
- the requested media types, or ContentNegotiationStrategy.MEDIA_TYPE_ALL_LISTif none were requested.
 
 
-