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

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

Introduction

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

Prototype

ParamsRequestCondition

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