Class ConnectorEventUtils
- java.lang.Object
-
- de.iip_ecosphere.platform.connectors.events.ConnectorEventUtils
-
public class ConnectorEventUtils extends java.lang.ObjectConnector event utility methods.- Author:
- Holger Eichelberger, SSE
-
-
Constructor Summary
Constructors Constructor Description ConnectorEventUtils()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static <T> ConnectorInputHandler<T>createInputHandlerInstance(java.lang.ClassLoader loader, java.lang.String className, java.lang.Class<T> type)Convenience method for creating (custom) input handler instances.
-
-
-
Method Detail
-
createInputHandlerInstance
public static <T> ConnectorInputHandler<T> createInputHandlerInstance(java.lang.ClassLoader loader, java.lang.String className, java.lang.Class<T> type)
Convenience method for creating (custom) input handler instances.- Type Parameters:
T- the data type to be handled by the connector- Parameters:
loader- the class loader to load the class withclassName- the name of the parser class (must implementInputParserand provide a non-argument constructortype- the type to be handled by the connector- Returns:
- the parser instance (null if the parser cannot be found/initialized)
-
-