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

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

Introduction

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

Prototype

public ProjectionDefinitionRegistar(ObjectFactory<RepositoryRestConfiguration> config) 

Source Link

Document

Creates a new ProjectionDefinitionRegistar for the given RepositoryRestConfiguration .

Usage

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

@Bean
public ProjectionDefinitionRegistar projectionDefinitionRegistrar(
        ObjectFactory<RepositoryRestConfiguration> config) {
    return new ProjectionDefinitionRegistar(config);
}