public class ContentLabelServiceImpl extends Object implements ContentLabelService
ContentLabelService.Validator
Constructor and Description |
---|
ContentLabelServiceImpl(ContentService contentService,
LabelsService labelsService,
ContentEntityManagerInternal contentEntityManager,
AttachmentManager attachmentManager) |
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,
long labelId) |
void |
removeLabel(ContentId contentId,
String label)
Removes the given label from the specified content
|
com.atlassian.confluence.api.impl.service.content.ContentLabelServiceImpl.ValidatorImpl |
validator()
Provides a validator for validating actions on the ContentLabelService and checking permissions
related to labels on Content
|
public ContentLabelServiceImpl(ContentService contentService, LabelsService labelsService, ContentEntityManagerInternal contentEntityManager, AttachmentManager attachmentManager)
public PageResponse<Label> getLabels(ContentId contentId, Collection<Label.Prefix> prefixes, PageRequest pageRequest) throws NotFoundException
ContentLabelService
getLabels
in interface ContentLabelService
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 userpublic PageResponse<Label> addLabels(ContentId contentId, Iterable<Label> labels) throws ServiceException
ContentLabelService
addLabels
in interface ContentLabelService
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 messagepublic void removeLabel(ContentId contentId, String label) throws ServiceException
ContentLabelService
removeLabel
in interface ContentLabelService
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.public void removeLabel(ContentId contentId, long labelId) throws IllegalArgumentException
IllegalArgumentException
public com.atlassian.confluence.api.impl.service.content.ContentLabelServiceImpl.ValidatorImpl validator()
ContentLabelService
validator
in interface ContentLabelService
Copyright © 2003–2015 Atlassian. All rights reserved.