Package net.officefloor.web.value.load
Interface StatelessValueLoaderFactory
-
- All Known Implementing Classes:
KeyedObjectValueLoaderFactory,KeyedParameterValueLoaderFactory,ObjectParameterValueLoaderFactory,SingleParameterValueLoaderFactory
public interface StatelessValueLoaderFactoryFactory to create theStatelessValueLoader.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StatelessValueLoadercreateValueLoader(java.lang.Class<?> clazz)Creates theStatelessValueLoader.java.lang.StringgetPropertyName()Obtains the property name for theStatelessValueLoader.
-
-
-
Method Detail
-
getPropertyName
java.lang.String getPropertyName()
Obtains the property name for theStatelessValueLoader.- Returns:
- Property name for the
StatelessValueLoader.
-
createValueLoader
StatelessValueLoader createValueLoader(java.lang.Class<?> clazz) throws java.lang.Exception
Creates theStatelessValueLoader.- Parameters:
clazz-StatelessValueLoaderwill be specific to theClass.- Returns:
StatelessValueLoader.- Throws:
java.lang.Exception- If fails to create theStatelessValueLoader.
-
-