io.beanmapper.spring.Lazy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of beanmapper-spring Show documentation
Show all versions of beanmapper-spring Show documentation
Spring support for the Bean Mapper
/*
* (C) 2014 42 bv (www.42.nl). All rights reserved.
*/
package io.beanmapper.spring;
/**
* Wrapper on object to retrieve only when desired.
*
* @author Jeroen van Schagen
* @since Nov 13, 2015
*/
public interface Lazy {
/**
* Retrieve the entity instance.
* @return the entity instance
*/
T get();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy