Class DomainClassConverter<T extends ConversionService & ConverterRegistry>

java.lang.Object
org.springframework.data.repository.support.DomainClassConverter<T>
All Implemented Interfaces:
Aware, ApplicationContextAware, ConditionalConverter, ConditionalGenericConverter, GenericConverter

public class DomainClassConverter<T extends ConversionService & ConverterRegistry> extends Object implements ConditionalGenericConverter, ApplicationContextAware
Converter to convert arbitrary input into domain classes managed by Spring Data CrudRepositorys. The implementation uses a ConversionService in turn to convert the source type into the domain class' id type which is then converted into a domain class object by using a CrudRepository.
Author:
Oliver Gierke, Thomas Darimont, Alessandro Nistico, Johannes Englmeier