org.unitils.objectvalidation.ObjectCreator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of unitils-objectvalidation Show documentation
Show all versions of unitils-objectvalidation Show documentation
Unitils module to validate objects.
package org.unitils.objectvalidation;
import java.lang.reflect.Type;
/**
* The responsability of {@link ObjectCreator} is to create object of the type provided.
*
* @author Matthieu Mestrez
* @since Oct 18, 2013
*/
public interface ObjectCreator {
Object createRandomObject(Type bean);
}