package org.genesys.server.model.impl; /** * The Interface LazyLoading. * * @param <T> the generic type */ public interface LazyLoading<T> { /** * Lazy load. * */ default void lazyLoad() { // NOOP } }