Uses of Class
org.springframework.web.servlet.mvc.condition.ProducesRequestCondition
Packages that use ProducesRequestCondition
Package
Description
Common MVC logic for matching incoming requests based on conditions.
Servlet-based infrastructure for handler method processing,
 building on the 
org.springframework.web.method package.- 
Uses of ProducesRequestCondition in org.springframework.web.servlet.mvc.conditionMethods in org.springframework.web.servlet.mvc.condition that return ProducesRequestConditionModifier and TypeMethodDescriptionProducesRequestCondition.combine(ProducesRequestCondition other) Returns the "other" instance if it has any expressions; returns "this" instance otherwise.ProducesRequestCondition.getMatchingCondition(HttpServletRequest request) Checks if any of the contained media type expressions match the given request 'Content-Type' header and returns an instance that is guaranteed to contain matching expressions only.Methods in org.springframework.web.servlet.mvc.condition with parameters of type ProducesRequestConditionModifier and TypeMethodDescriptionProducesRequestCondition.combine(ProducesRequestCondition other) Returns the "other" instance if it has any expressions; returns "this" instance otherwise.intProducesRequestCondition.compareTo(ProducesRequestCondition other, HttpServletRequest request) Compares this and another "produces" condition as follows: Sort 'Accept' header media types by quality value viaMimeTypeUtils.sortBySpecificity(List)and iterate the list.
- 
Uses of ProducesRequestCondition in org.springframework.web.servlet.mvc.methodMethods in org.springframework.web.servlet.mvc.method that return ProducesRequestConditionModifier and TypeMethodDescriptionRequestMappingInfo.getProducesCondition()Return the "produces" condition of thisRequestMappingInfo; or instance with 0 produces expressions (nevernull).Constructors in org.springframework.web.servlet.mvc.method with parameters of type ProducesRequestConditionModifierConstructorDescriptionRequestMappingInfo(String name, PatternsRequestCondition patterns, RequestMethodsRequestCondition methods, ParamsRequestCondition params, HeadersRequestCondition headers, ConsumesRequestCondition consumes, ProducesRequestCondition produces, RequestCondition<?> custom) Deprecated.RequestMappingInfo(PatternsRequestCondition patterns, RequestMethodsRequestCondition methods, ParamsRequestCondition params, HeadersRequestCondition headers, ConsumesRequestCondition consumes, ProducesRequestCondition produces, RequestCondition<?> custom) Deprecated.as of 5.3 in favor usingRequestMappingInfo.BuilderviaRequestMappingInfo.paths(String...).
RequestMappingInfo.BuilderviaRequestMappingInfo.paths(String...).