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

com.avaje.ebeaninternal.server.reflect.EnhanceBeanReflectFactory Maven / Gradle / Ivy

There is a newer version: 2.8.1
Show newest version
package com.avaje.ebeaninternal.server.reflect;

/**
 * Creates a BeanReflectFactory based on the enhancement that 
 * creates EntityBean implementations.
 */
public final class EnhanceBeanReflectFactory implements BeanReflectFactory {

	public BeanReflect create(Class vanillaType, Class entityBeanType) {
		return new EnhanceBeanReflect(vanillaType, entityBeanType);
	}

	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy