org.unitils.objectvalidation.cloner.ObjectClonerFactory 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.cloner;
/**
* Creates {@link org.unitils.objectvalidation.ObjectCreator} used to create objects for the {@link org.unitils.objectvalidation.Rule}.
*
* @author Jeroen Horemans
* @since Feb 20, 2012
*/
public class ObjectClonerFactory {
private ObjectClonerFactory() { }
public static ObjectClonerImpl createDefaultCloner() {
return new ObjectClonerImpl();
}
}