/*
* Copyright 2026 Global Crop Diversity Trust
* Licensed under the Apache License, Version 2.0
* See LICENSE file in project root folder or http://www.apache.org/licenses/LICENSE-2.0
*/
package org.gringlobal.model;
/**
* The Interface LazyLoading.
*
* @param <T> the generic type
*/
public interface LazyLoading<T> {
/**
* Lazy load.
*
* @return the t
*/
default void lazyLoad() {
// NOOP
}
}