Newer Version Available
Implementing the Process.Plugin Interface
Process.Plugin is a built-in interface that
allows you to pass data between your organization and a specified flow.
The class that implements the Process.Plugin interface must call these methods.
| Name | Arguments | Return Type | Description |
|---|---|---|---|
| describe | Process.PluginDescribeResult | Returns a Process.PluginDescribeResult object that describes this method call. | |
| invoke | Process.PluginRequest | Process.PluginResult | Primary method that the system invokes when the class that implements the interface is instantiated. |
Example Implementation
Test Class
The following is a test class for the above class.