@PublicApi
public interface RemoteIssueLinkManager
remote issue links
between a JIRA issue and remote objects in other remote applications.Modifier and Type | Method and Description |
---|---|
RemoteIssueLink |
createRemoteIssueLink(RemoteIssueLink remoteIssueLink,
ApplicationUser user)
Creates the given remote issue link.
|
List<RemoteIssueLink> |
findRemoteIssueLinksByGlobalIds(Collection<String> globalIds)
Returns the remote issue links that have any the given globalIds, or empty if none exists.
|
RemoteIssueLink |
getRemoteIssueLink(Long remoteIssueLinkId)
Returns the remote issue link with the given id, or null if it does not exist.
|
RemoteIssueLink |
getRemoteIssueLinkByGlobalId(Issue issue,
String globalId)
Returns the first remote issue link found that links with the given JIRA issue and has the given globalId, or
null if none exists.
|
List<RemoteIssueLink> |
getRemoteIssueLinksForIssue(Issue issue)
Gets the remote issue links that link with the given JIRA issue.
|
long |
getTotalRemoteIssueLinkCountByGlobalId(String globalId)
Get the total count of Remote Issue Links which have a given global id
|
void |
removeRemoteIssueLink(Long remoteIssueLinkId,
ApplicationUser user)
Deletes the given remote issue link id.
|
void |
removeRemoteIssueLinkByGlobalId(Issue issue,
String globalId,
ApplicationUser user)
Deletes any remote issue link that links with the given JIRA issue and has the given global id.
|
void |
updateRemoteIssueLink(RemoteIssueLink remoteIssueLink,
ApplicationUser user)
Updates the given remote issue link.
|
RemoteIssueLink getRemoteIssueLink(Long remoteIssueLinkId)
remoteIssueLinkId
- the id of the remote issue link to getList<RemoteIssueLink> getRemoteIssueLinksForIssue(Issue issue)
issue
- the issue to get the remote issue links forRemoteIssueLink getRemoteIssueLinkByGlobalId(Issue issue, String globalId)
issue
- the issue to get the remote issue links forglobalId
- the globalId to get the remote issue link forList<RemoteIssueLink> findRemoteIssueLinksByGlobalIds(Collection<String> globalIds) throws GetException
globalIds
- the globalIds to get the remote issue links forGetException
- when the number of globalIds exceeds 100.RemoteIssueLink createRemoteIssueLink(RemoteIssueLink remoteIssueLink, ApplicationUser user) throws CreateException
remoteIssueLink
- the remote issue link to createuser
- the current userCreateException
void updateRemoteIssueLink(RemoteIssueLink remoteIssueLink, ApplicationUser user) throws UpdateException
remoteIssueLink
- the remote issue link to updateuser
- the current userUpdateException
void removeRemoteIssueLink(Long remoteIssueLinkId, ApplicationUser user)
remoteIssueLinkId
- the id of the remote issue link to deleteuser
- the current uservoid removeRemoteIssueLinkByGlobalId(Issue issue, String globalId, ApplicationUser user)
issue
- the issue of the remote issue linkglobalId
- the global id of the remote issue linkuser
- the current userlong getTotalRemoteIssueLinkCountByGlobalId(String globalId)
globalId
- The global of the remote issue linkCopyright © 2002-2017 Atlassian. All Rights Reserved.