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

com.truthbean.debbie.proxy.BeanProxy Maven / Gradle / Ivy

The newest version!
package com.truthbean.debbie.proxy;

import java.util.function.Supplier;

/**
 * @author TruthBean
 * @since 0.5.4
 * Created on 2022/01/03 14:19.
 */
public interface BeanProxy {

    default T proxy(T bean) {
        return proxy(() -> bean);
    }

    T proxy(Supplier bean);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy