| java.lang.Object | |
| ↳ | com.atlassian.jira.rest.v2.issue.RemoteIssueLinkResource |
Responsible for handling REST calls relating to remote issue links.
| Public Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Creates or updates a remote issue link from a JSON representation.
| |||||||||||
Deletes a remote issue link.
| |||||||||||
Gets the remote issue link with the given id for the given issue.
| |||||||||||
Gets all the remote issue links for the given issue, and filter by the other parameters.
| |||||||||||
Updates a remote issue link.
| |||||||||||
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
| |||||||||||
Creates or updates a remote issue link from a JSON representation. If a globalId is provided and a remote issue link exists with that globalId, the remote issue link is updated. Otherwise, the remote issue link is created.
| issue | the issue to create the link with |
|---|---|
| request | the request, containing the values of the remote issue link to be created/updated |
| contextUriInfo | uri context, for building the self link |
Deletes a remote issue link.
| issue | the issue |
|---|---|
| idString | the id of the remote issue link |
Gets the remote issue link with the given id for the given issue.
| issue | the issue |
|---|---|
| idString | the id of the remote issue link |
Gets all the remote issue links for the given issue, and filter by the other parameters.
| issue | the issue |
|---|---|
| globalId | if not null, return only the remote issue link with this globalId |
Updates a remote issue link.
| issue | the issue to update the link with |
|---|---|
| idString | the id of the remote issue link |
| request | the request, containing the values of the remote issue link to be updated |

