|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.atlassian.jira.issue.changehistory.DefaultChangeHistoryManager
public class DefaultChangeHistoryManager
Constructor Summary | |
---|---|
DefaultChangeHistoryManager(IssueManager issueManager,
OfBizDelegator ofBizDelegator,
PermissionManager permissionManager,
ComponentLocator componentLocator)
|
Method Summary | |
---|---|
Map<String,String> |
findAllPossibleValues(String field)
Find a map of all names ever used in the change history. |
Issue |
findMovedIssue(String originalKey)
Returns an issue that has been moved by searching the change history of the original issue key for an updated issue key. |
Collection<Issue> |
findUserHistory(com.atlassian.crowd.embedded.api.User remoteUser,
Collection<String> usernames,
Collection<Project> projects,
int maxResults)
Find a list of issues that the given users have acted on with the option to limit the projects included in the search. |
Collection<Issue> |
findUserHistory(com.atlassian.crowd.embedded.api.User remoteUser,
Collection<String> usernames,
int maxResults)
Find a list of issues that the given users have acted on. |
List<ChangeHistoryItem> |
getAllChangeItems(Issue issue)
Returns a List of ChangeHistoryItem 's for the given issue |
List<ChangeHistory> |
getChangeHistories(Issue issue)
Returns a List of ChangeHistory entities |
List<ChangeHistory> |
getChangeHistoriesForUser(Issue issue,
com.atlassian.crowd.embedded.api.User remoteUser)
Returns a List of ChangeHistory entities for the given issue. |
List<ChangeItemBean> |
getChangeItemsForField(Issue issue,
String changeItemFieldName)
Returns a List of ChangeItemBean's for the given issue which also are for the provided changeItemFieldName (i.e. |
Collection<String> |
getPreviousIssueKeys(Long issueId)
Returns the same as ChangeHistoryManager.getPreviousIssueKeys(String) but is slightly more efficient since no lookup of the
issue id needs to be performed. |
Collection<String> |
getPreviousIssueKeys(String issueKey)
Given an issue key, this method returns a list of previous issue keys this issue was moved from. |
void |
removeAllChangeItems(Issue issue)
Remove all change items associated with an issue. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public DefaultChangeHistoryManager(IssueManager issueManager, OfBizDelegator ofBizDelegator, PermissionManager permissionManager, ComponentLocator componentLocator)
Method Detail |
---|
public List<ChangeHistory> getChangeHistories(Issue issue)
ChangeHistoryManager
getChangeHistories
in interface ChangeHistoryManager
issue
- the issue.
public List<ChangeHistory> getChangeHistoriesForUser(Issue issue, com.atlassian.crowd.embedded.api.User remoteUser)
ChangeHistoryManager
getChangeHistoriesForUser
in interface ChangeHistoryManager
issue
- the issue.remoteUser
- the user who is asking.
public List<ChangeItemBean> getChangeItemsForField(Issue issue, String changeItemFieldName)
ChangeHistoryManager
getChangeItemsForField
in interface ChangeHistoryManager
issue
- the issue the change items are associated with, not null.changeItemFieldName
- the field name the change item is stored under, not null or empty.
public List<ChangeHistoryItem> getAllChangeItems(Issue issue)
ChangeHistoryManager
ChangeHistoryItem
's for the given issue
getAllChangeItems
in interface ChangeHistoryManager
issue
- the issue
public Issue findMovedIssue(String originalKey) throws org.ofbiz.core.entity.GenericEntityException
ChangeHistoryManager
findMovedIssue
in interface ChangeHistoryManager
originalKey
- the original key of an issue that has since been moved (moving between projects assigns a new
key to an issue)
Issue
object
org.ofbiz.core.entity.GenericEntityException
- if an unexpected error occurspublic Collection<String> getPreviousIssueKeys(Long issueId)
ChangeHistoryManager
ChangeHistoryManager.getPreviousIssueKeys(String)
but is slightly more efficient since no lookup of the
issue id needs to be performed. If you have an issue object available with the issue's id use this method.
getPreviousIssueKeys
in interface ChangeHistoryManager
issueId
- The id of the issue being looked up.
public Collection<String> getPreviousIssueKeys(String issueKey)
ChangeHistoryManager
getPreviousIssueKeys
in interface ChangeHistoryManager
issueKey
- The current issue key.
public Collection<Issue> findUserHistory(com.atlassian.crowd.embedded.api.User remoteUser, Collection<String> usernames, int maxResults)
ChangeHistoryManager
findUserHistory
in interface ChangeHistoryManager
remoteUser
- The user executing this request.usernames
- The users to find the history formaxResults
- The maxmimum number of issues to return
public Collection<Issue> findUserHistory(com.atlassian.crowd.embedded.api.User remoteUser, Collection<String> usernames, Collection<Project> projects, int maxResults)
ChangeHistoryManager
findUserHistory
in interface ChangeHistoryManager
remoteUser
- The user executing this request.usernames
- The users to find the history forprojects
- The projects to include issues frommaxResults
- The maxmimum number of issues to return
public Map<String,String> findAllPossibleValues(String field)
ChangeHistoryManager
findAllPossibleValues
in interface ChangeHistoryManager
field
- The field name.
public void removeAllChangeItems(Issue issue)
ChangeHistoryManager
removeAllChangeItems
in interface ChangeHistoryManager
issue
- affected issue
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |