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

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

Introduction

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

Prototype

ProducesRequestCondition

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