TWSPlugin.properties
Describes the event management plug-in TWSPlugin.properties file.
TWSPlugin.properties is a properties file that is read by HCL Workload Automation when the plug-in is loaded.
When a plug-in project is created, it already contains a TWSPlugin.properties file set with the information collected from the new plug-in project wizard. You will not need to modify it unless any of the information is changed later.
TWSPlugin.properties defines the following configurable characteristics of the provider:
- The plug-in name. It must be the same value returned by the plug-in Java™ class with the getPluginName method, and the same value defined as plug-in name in TWSPluginConfiguration.xml.
- The type: event or action.
- The Java class name that directly implements the plug-in interface.
Example
This is a sample TWSPlugin.properties file for a plug-in named MailReader.
TWSPlugIn.name=MailReader
TWSPlugIn.type=event
TWSPlugIn.className=mycompany.mailreader.MailReaderPlugin