Example usage for org.springframework.data.rest.webmvc ProfileResourceProcessor ProfileResourceProcessor

List of usage examples for org.springframework.data.rest.webmvc ProfileResourceProcessor ProfileResourceProcessor

Introduction

In this page you can find the example usage for org.springframework.data.rest.webmvc ProfileResourceProcessor ProfileResourceProcessor.

Prototype

@Autowired
public ProfileResourceProcessor(RepositoryRestConfiguration configuration) 

Source Link

Document

Creates a new ProfileResourceProcessor with the given RepositoryRestConfiguration .

Usage

From source file:org.springframework.data.rest.webmvc.config.RepositoryRestMvcConfiguration.java

@Bean
public ProfileResourceProcessor profileResourceProcessor(RepositoryRestConfiguration config) {
    return new ProfileResourceProcessor(config);
}