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

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

Introduction

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

Prototype

HeadersRequestCondition

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);
}