Package net.officefloor.web.value.load
Interface StatelessValueLoaderFactory
-
- All Known Implementing Classes:
KeyedObjectValueLoaderFactory
,KeyedParameterValueLoaderFactory
,ObjectParameterValueLoaderFactory
,SingleParameterValueLoaderFactory
public interface StatelessValueLoaderFactory
Factory to create theStatelessValueLoader
.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StatelessValueLoader
createValueLoader(java.lang.Class<?> clazz)
Creates theStatelessValueLoader
.java.lang.String
getPropertyName()
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
-StatelessValueLoader
will be specific to theClass
.- Returns:
StatelessValueLoader
.- Throws:
java.lang.Exception
- If fails to create theStatelessValueLoader
.
-
-