Example usage for org.springframework.web.servlet.mvc.condition ConsumesRequestCondition ConsumesRequestCondition

List of usage examples for org.springframework.web.servlet.mvc.condition ConsumesRequestCondition ConsumesRequestCondition

Introduction

In this page you can find the example usage for org.springframework.web.servlet.mvc.condition ConsumesRequestCondition ConsumesRequestCondition.

Prototype

ConsumesRequestCondition

Source Link

Usage

From source file:com.coinblesk.server.utils.ApiVersionRequestMappingHandlerMapping.java

private RequestMappingInfo createApiVersionInfo(ApiVersion annotation, RequestCondition<?> customCondition) {
    String[] values = annotation.value();

    return new RequestMappingInfo(
            new PatternsRequestCondition(values, getUrlPathHelper(), getPathMatcher(), useSuffixPatternMatch(),
                    useTrailingSlashMatch(), getFileExtensions()),
            new RequestMethodsRequestCondition(), new ParamsRequestCondition(), new HeadersRequestCondition(),
            new ConsumesRequestCondition(), new ProducesRequestCondition(), customCondition);
}