...
For example, if the JIRA connector is enabled in your ESB instance and you want to use it in a sequence, you would add the following entry to your sequence configuration to connect to JIRA:
Code Block | ||
---|---|---|
| ||
<jira.config> <username>myname@mycompany.com</username> <password>{wso2:vault-lookup('xxxx.email.login')}</password> <uri>https://xxx:xx/xx</uri> </jira.config> |
Then, if you want to get an issue, you can use the JIRA connector's getIssue
operation and pass in the issue ID as follows:
Code Block | ||
---|---|---|
| ||
<jira.getIssue [configKey="Ref Local Entry"]> <issueIdOrKey>ESBJAVA-2095</issueIdOrKey> </jira.getIssue> |
...