@ExperimentalApi
public interface ContentLabelService
Modifier and Type | Interface and Description |
---|---|
static interface |
ContentLabelService.Validator
Provides methods for validating actions on the ContentLabelService
|
Modifier and Type | Method and Description |
---|---|
PageResponse<Label> |
addLabels(ContentId contentId,
Iterable<Label> labels)
Adds the given labels to the specified content
|
PageResponse<Label> |
getLabels(ContentId contentId,
Collection<Label.Prefix> prefixes,
PageRequest pageRequest)
Get the labels attached to a given piece of content in the given namespaces
|
void |
removeLabel(ContentId contentId,
String label)
Removes the given label from the specified content
|
ContentLabelService.Validator |
validator()
Provides a validator for validating actions on the ContentLabelService and checking permissions
related to labels on Content
|
PageResponse<Label> getLabels(ContentId contentId, Collection<Label.Prefix> prefixes, PageRequest pageRequest) throws NotFoundException
contentId
- the id of the content to retrieveprefixes
- - the prefixes to filter the returned labels by, if empty no prefix filter is appliedpageRequest
- - indicates how many labels to return and from what offsetNotFoundException
- if the content does not exist, or is not viewable by the userPageResponse<Label> addLabels(ContentId contentId, Iterable<Label> labels) throws ServiceException
contentId
- the id of the content to add labels tolabels
- the label(s) that will be addedServiceException
- if at least one label is invalid. Provides an error messagevoid removeLabel(ContentId contentId, String label)
contentId
- the id of the content to remove label fromlabel
- the label that will be removedServiceException
- if the user can not delete the label. Provides an error message.ContentLabelService.Validator validator()
Copyright © 2003–2016 Atlassian. All rights reserved.