JIRA 3.3.1 Issue Tab Panel extension
Jira 3.3.1
JIRA 3.3.1 Issue Tab Panel extension
You only need to worry about this page if you have a implemented a custom [Issue Tab Panel] JIRA plugin
Before JIRA 3.3.1 every IssueAction
object that a IssueTabPanel
returned would appear on the "All" tab on the View Issue page. Therefore an Issue Tab Panel could not return an IssueAction with a simple informational message, without poluting the "All" tab with this message. (This caused the JRA-7822 bug).
In JIRA 3.3.1 the isDisplayActionAllTab()
method was added to the com.atlassian.jira.issue.action.IssueAction
interface. This method should return "true" if the IssueAction
should appear on the "All" tab, and "false" otherwise.
Therefore, if you have implemented this interface directly in your plugin, you will need to implement this method and recompile your plugin before deploying it into JIRA 3.3.1. If you have extended a JIRA class instead, e.g. com.atlassian.jira.issue.action.AbstractIssueAction
or com.atlassian.jira.issue.action.AbstractGVIssueAction
you do not need to recompile your plugin.