Uses of Class
org.springframework.web.servlet.mvc.condition.ProducesRequestCondition
Packages that use ProducesRequestCondition Package Description org.springframework.web.servlet.mvc.condition Common MVC logic for matching incoming requests based on conditions.org.springframework.web.servlet.mvc.method Servlet-based infrastructure for handler method processing, building on theorg.springframework.web.methodpackage.Uses of ProducesRequestCondition in org.springframework.web.servlet.mvc.condition
Methods in org.springframework.web.servlet.mvc.condition that return ProducesRequestCondition Modifier and Type Method Description ProducesRequestConditionProducesRequestCondition. combine(ProducesRequestCondition other)Returns the "other" instance if it has any expressions; returns "this" instance otherwise.ProducesRequestConditionProducesRequestCondition. 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 ProducesRequestCondition Modifier and Type Method Description ProducesRequestConditionProducesRequestCondition. 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 viaMediaType.sortByQualityValue(List)and iterate the list.Uses of ProducesRequestCondition in org.springframework.web.servlet.mvc.method
Methods in org.springframework.web.servlet.mvc.method that return ProducesRequestCondition Modifier and Type Method Description ProducesRequestConditionRequestMappingInfo. 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 ProducesRequestCondition Constructor Description RequestMappingInfo(String name, PatternsRequestCondition patterns, RequestMethodsRequestCondition methods, ParamsRequestCondition params, HeadersRequestCondition headers, ConsumesRequestCondition consumes, ProducesRequestCondition produces, RequestCondition<?> custom)RequestMappingInfo(PatternsRequestCondition patterns, RequestMethodsRequestCondition methods, ParamsRequestCondition params, HeadersRequestCondition headers, ConsumesRequestCondition consumes, ProducesRequestCondition produces, RequestCondition<?> custom)Creates a new instance with the given request conditions.