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

com.trigonic.utils.spring.beans.NullFactoryBean Maven / Gradle / Ivy

package com.trigonic.utils.spring.beans;

import org.springframework.beans.factory.FactoryBean;

public class NullFactoryBean implements FactoryBean {
    private Class type;
    
    public void setClass(Class type) {
        this.type = type;
    }

    public Class getObjectType() {
        return type;
    }
    
    public T getObject() throws Exception {
        return null;
    }

    public boolean isSingleton() {
        return true;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy