Package com.atlassian.jira.issue.link
Interface IssueLinkTypeDestroyer
- All Known Implementing Classes:
IssueLinkTypeDestroyerImpl
@PublicApi
public interface IssueLinkTypeDestroyer
-
Method Summary
Modifier and TypeMethodDescriptionvoidremoveIssueLinkType(Long issueLinkTypeId, IssueLinkType swapLinkType, ApplicationUser remoteUser) Removes an issueLinkType from the datastore.
-
Method Details
-
removeIssueLinkType
void removeIssueLinkType(Long issueLinkTypeId, IssueLinkType swapLinkType, ApplicationUser remoteUser) Removes an issueLinkType from the datastore. If a swapLinkType is passed (not null) the exsting issue links of the issueLinkType are changed to the swapLinkType. If swapLinkType is null, all issue links are removed.- Parameters:
issueLinkTypeId- the id of the issue link type top deleteswapLinkType- If null issue links are removed, if not null the issue links are changed to this issue link typeremoteUser- the remote user performing the delete operation (needed for change item creating)
-