public interface AttachmentService
Modifier and Type | Method and Description |
---|---|
Iterable<Label> |
addLabels(long attachmentId,
Iterable<Label> labels)
Adds the given labels to the specified content
|
Iterable<Label> |
getLabels(long attachmentId,
Collection<Label.Prefix> prefixes)
Get the labels attached to a given attachment.
|
void |
removeLabel(long attachmentId,
long labelId)
Remove a label with labelId from the specified content
|
Iterable<Label> getLabels(long attachmentId, Collection<Label.Prefix> prefixes) throws NotFoundException
attachmentId
- id of the attachment to fetch labels for.NotFoundException
- if the attachment does not exist, or is not viewable by the userIterable<Label> addLabels(long attachmentId, Iterable<Label> labels) throws IllegalArgumentException
attachmentId
- the id of the content to add labels tolabels
- the label(s) that will be addedIllegalArgumentException
- if at least one label is invalid. Provides an error messagevoid removeLabel(long attachmentId, long labelId) throws IllegalArgumentException
attachmentId
- the id of the content to remove the label fromlabelId
- the id of the label to removeIllegalArgumentException
- failed to remove the labelCopyright © 2003–2018 Atlassian. All rights reserved.