Package com.openkm
Class ImportStationUtils
- java.lang.Object
-
- com.openkm.ImportStationUtils
-
public class ImportStationUtils extends Object
Import station utils.- Author:
- jabad
-
-
Constructor Summary
Constructors Constructor Description ImportStationUtils()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FormPropertiescreateObjectFromClassName(Class<?> clazz, Map<String,?> params)Create object from class.static FormPropertiescreateObjectFromClassName(String className)Create object from class name.static FormPropertiescreateObjectFromClassName(String className, Map<String,?> params)Create object from class name.
-
-
-
Method Detail
-
createObjectFromClassName
public static FormProperties createObjectFromClassName(String className) throws NoSuchMethodException, SecurityException, ClassNotFoundException, InstantiationException, IllegalAccessException, IllegalArgumentException, InvocationTargetException
Create object from class name.- Returns:
- the created object
- Throws:
NoSuchMethodExceptionSecurityExceptionClassNotFoundExceptionInstantiationExceptionIllegalAccessExceptionIllegalArgumentExceptionInvocationTargetException
-
createObjectFromClassName
public static FormProperties createObjectFromClassName(String className, Map<String,?> params) throws NoSuchMethodException, SecurityException, ClassNotFoundException, InstantiationException, IllegalAccessException, IllegalArgumentException, InvocationTargetException
Create object from class name.
-
createObjectFromClassName
public static FormProperties createObjectFromClassName(Class<?> clazz, Map<String,?> params) throws NoSuchMethodException, SecurityException, ClassNotFoundException, InstantiationException, IllegalAccessException, IllegalArgumentException, InvocationTargetException
Create object from class.
-
-