java.lang.Object | ||
↳ | com.atlassian.jira.event.issue.AbstractIssueEventListener | |
↳ | com.atlassian.jira.event.listeners.search.IssueIndexListener |
This listener updates the search index within JIRA.
Do not delete ;)
Constants | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
String | NAME |
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Implement this method to deal with any custom events within the system
| |||||||||||
Returns the parameters used by this listener.
| |||||||||||
Returns a textual description of the listener.
| |||||||||||
Should not be deleted - required for JIRA operation
| |||||||||||
As we wish to only have one IssueIndexListener at a time - enforce uniqueness
| |||||||||||
Fired when an issue is assigned or unassigned.
| |||||||||||
Fired when an issue is closed.
| |||||||||||
The default behaviour for this method calls
issueUpdated(IssueEvent) . | |||||||||||
Fired when a user comments on an issue.
| |||||||||||
Fired when an issue is created.
| |||||||||||
Fired when an issue is deleted.
| |||||||||||
Fired for all other events, eg.
| |||||||||||
Fired when an issue is moved.
| |||||||||||
Fired when an issue is reopened.
| |||||||||||
Fired when an issue is resolved.
| |||||||||||
Fired when an issue is updated.
| |||||||||||
Fired when work is logged against an issue.
| |||||||||||
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() | |||||||||||
![]() | |||||||||||
![]() | |||||||||||
![]() |
Implement this method to deal with any custom events within the system
event | IssueEvent |
---|
Returns the parameters used by this listener.
Returns a textual description of the listener. You can include HTML if required, but do not use tables or DHTML, as the description may be displayed inside tables or frames.
A good description will describe what this listener does and explain the parameters required for configuring it.Should not be deleted - required for JIRA operation
true
if this is an Atlassian listener, otherwise As we wish to only have one IssueIndexListener at a time - enforce uniqueness
Fired when an issue is assigned or unassigned.
Check the issue assignee to work out which is the case.Fired when an issue is closed.
The closure comment (if there is one) will be attached to the event as an action.The default behaviour for this method calls issueUpdated(IssueEvent)
.
This preserves the behaviour of JIRA prior to v5.2
Fired when a user comments on an issue.
The comment will be attached to the event as an action.Fired for all other events, eg. those fired from new workflow transitions.
Fired when an issue is resolved.
The resolution comment (if there is one) will be attached to the event as an action.Fired when an issue is updated.
The update changelog will be attached to the event as an action.Fired when work is logged against an issue.
The work log will be attached to the event as an action.