Example usage for org.springframework.data.rest.webmvc.config RepositoryRestConfigurerDelegate RepositoryRestConfigurerDelegate

List of usage examples for org.springframework.data.rest.webmvc.config RepositoryRestConfigurerDelegate RepositoryRestConfigurerDelegate

Introduction

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

Prototype

public RepositoryRestConfigurerDelegate(Iterable<RepositoryRestConfigurer> delegates) 

Source Link

Document

Creates a new RepositoryRestConfigurerDelegate for the given RepositoryRestConfigurer s.

Usage

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

@Override
public void afterPropertiesSet() throws Exception {
    this.configurerDelegate = new RepositoryRestConfigurerDelegate(configurers);
}