All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.beanmapper.spring.Lazy Maven / Gradle / Ivy

There is a newer version: 6.0.0
Show newest version
/*
 * (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