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

com.github.nill14.utils.init.api.IPojoFactory Maven / Gradle / Ivy

package com.github.nill14.utils.init.api;

import java.io.Serializable;

import javax.inject.Provider;

/**
 * 
 *
 * @deprecated Use {@link Provider} directly
 */
@Deprecated
public interface IPojoFactory extends Serializable, Provider {
	
	T newInstance();
	
	Class getType();
	
	@Override
	default T get() {
		return newInstance();
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy