Example usage for org.springframework.data.mapping.model BasicPersistentEntity BasicPersistentEntity

List of usage examples for org.springframework.data.mapping.model BasicPersistentEntity BasicPersistentEntity

Introduction

In this page you can find the example usage for org.springframework.data.mapping.model BasicPersistentEntity BasicPersistentEntity.

Prototype

public BasicPersistentEntity(TypeInformation<T> information) 

Source Link

Document

Creates a new BasicPersistentEntity from the given TypeInformation .

Usage

From source file:com.turbospaces.model.SimpleMappingContext.java

@Override
protected MutablePersistentEntity createPersistentEntity(final TypeInformation typeInformation) {
    return new BasicPersistentEntity(typeInformation);
}