No Results
Search Tips:
- Please consider misspellings
- Try different search keywords
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 following are the methods that must be called by the class that implements the Process.Plugin interface:
| 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.