Modifier and Type | Method and Description |
---|---|
Content |
ContentServiceImpl.buildContent(ContentEntityObject entity,
List<ContentStatus> statuses,
Expansion... expansions) |
ContentBody |
ContentBodyConversionServiceImpl.convert(ContentBody contentBody,
ContentRepresentation toFormat,
Expansion... expansions) |
ContentBody |
ContentBodyConversionServiceImpl.convertBody(Content content,
ContentRepresentation toFormat,
Expansion... expansions) |
Content |
ContentServiceImpl.create(Content newContent,
Expansion... expansions) |
SpaceService.SpaceFinder |
SpaceServiceImpl.find(Expansion... expansions) |
ContentService.ContentFinder |
ContentServiceImpl.find(Expansion... expansions) |
AttachmentService.AttachmentFinder |
AttachmentServiceImpl.find(Expansion... expansions) |
ChildContentService.ChildContentFinder |
ChildContentServiceImpl.findContent(ContentId parentId,
Expansion... expansions) |
SpaceService.SpaceContentFinder |
SpaceServiceImpl.findContent(Space space,
Expansion... expansions) |
ContentMacroService.MacroInstanceFinder |
ContentMacroServiceImpl.findInContent(ContentId contentId,
Expansion... expansion) |
com.atlassian.fugue.Option<Space> |
SpaceServiceImpl.getSpace(String spaceKey,
Expansion... expansions)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
Content |
SharedContentDraftServiceImpl.publishNewDraft(Content content,
Expansion... expansions)
Deprecated.
@since 5.9 - we use the same method for publishing drafts for new pages and for page edits
|
Content |
LegacyContentDraftServiceImpl.publishNewDraft(Content content,
Expansion... expansions) |
Content |
ContentDraftServiceImpl.publishNewDraft(Content content,
Expansion... expansions) |
Modifier and Type | Field and Description |
---|---|
protected Expansion[] |
AbstractFinder.expansions |
Modifier and Type | Method and Description |
---|---|
ContentService.ContentFinder |
ContentFinderFactory.createContentFinder(ContentServiceImpl contentService,
Expansion... expansions) |
Constructor and Description |
---|
AbstractFinder(Expansion... expansions) |
Modifier and Type | Method and Description |
---|---|
com.atlassian.fugue.Option<LongTaskStatus> |
LongTaskServiceImpl.get(LongTaskId id,
Expansion... expansions) |
PageResponse<LongTaskStatus> |
LongTaskServiceImpl.getAll(PageRequest request,
Expansion... expansions) |
Modifier and Type | Method and Description |
---|---|
PersonService.PersonFinder |
PersonServiceImpl.find(Expansion... expansions) |
Person |
PersonServiceImpl.getCurrentUser(Expansion... expansions) |
Constructor and Description |
---|
PersonFinderImpl(Expansion... expansions) |
Modifier and Type | Method and Description |
---|---|
ContentRestriction |
ContentRestrictionServiceImpl.getRestrictionsForOperation(ContentId target,
OperationKey operationKey,
PageRequest pageRequest,
Expansion... allExpansions) |
Map<OperationKey,ContentRestriction> |
ContentRestrictionServiceImpl.getRestrictionsGroupByOperation(ContentId target,
Expansion... allExpansions) |
Modifier and Type | Field and Description |
---|---|
static com.google.common.base.Function<String,Expansion> |
Expansion.AS_EXPANSION |
Modifier and Type | Method and Description |
---|---|
static Expansion |
Expansion.combine(Object... expansionParts)
Creates an Expansion made up of the given parts.
|
Expansion[] |
Expansions.merge(Expansion[] expansions) |
Expansion[] |
Expansions.toArray() |
Modifier and Type | Method and Description |
---|---|
Expansion[] |
Expansions.merge(Expansion[] expansions) |
Constructor and Description |
---|
Expansions(Expansion... expansions) |
Constructor and Description |
---|
Expansions(Iterable<Expansion> expansions) |
Modifier and Type | Method and Description |
---|---|
ContentBody |
ContentBodyConversionService.convert(ContentBody body,
ContentRepresentation representation,
Expansion... expansions)
Convert a ContentBody value into another format, performing validation during the conversion.
|
ContentBody |
ContentBodyConversionService.convertBody(Content content,
ContentRepresentation representation,
Expansion... expansions)
Convert the single ContentBody value in a
Content body map into another format, performing
validation during the conversion. |
Content |
ContentService.create(Content newContent,
Expansion... expansions)
Create a piece of content.
|
SpaceService.SpaceFinder |
SpaceService.find(Expansion... expansion)
Create a space finder to locate spaces, the expansions will be applied to each Space matching the
restrictions on the finder.
|
SpacePropertyService.SpacePropertyFinder |
SpacePropertyService.find(Expansion... expansions)
Create a
SpacePropertyService.SpacePropertyFinder for locating properties, the expansions will be applied to each property that
matches the finder. |
ContentService.ContentFinder |
ContentService.find(Expansion... expansions)
Create a ContentFinder for locating content, the expansions will be applied to each piece of content that matches the
finder.
|
ContentPropertyService.ContentPropertyFinder |
ContentPropertyService.find(Expansion... expansions)
Create a
ContentPropertyService.ContentPropertyFinder for locating content, the expansions will be applied to each property that
matches the finder. |
AttachmentService.AttachmentFinder |
AttachmentService.find(Expansion... expansions)
Creates an attachment finder for locating attachments.
|
ChildContentService.ChildContentFinder |
ChildContentService.findContent(ContentId parentId,
Expansion... expansion)
A finder to locate
Content under a parent. |
SpaceService.SpaceContentFinder |
SpaceService.findContent(Space space,
Expansion... expansion)
A finder to locate content in the space
|
ContentMacroService.MacroInstanceFinder |
ContentMacroService.findInContent(ContentId contentId,
Expansion... expansion)
Create a macro instance finder to locate macro instances in the given Content
|
com.atlassian.fugue.Option<Space> |
SpaceService.getSpace(String spaceKey,
Expansion... expansions)
Deprecated.
Since 5.5 use find().withKey(String).fetchOne();
|
Content |
ContentBlueprintService.publishInstance(Content content,
Expansion... expansions) |
Content |
ContentDraftService.publishNewDraft(Content content,
Expansion... expansions)
Publishes the draft.
|
Modifier and Type | Method and Description |
---|---|
com.atlassian.fugue.Option<LongTaskStatus> |
LongTaskService.get(LongTaskId id,
Expansion... expansions)
Returns the status of a long-running task.
|
PageResponse<LongTaskStatus> |
LongTaskService.getAll(PageRequest request,
Expansion... expansions)
Returns the status of all tracked long-running tasks visible to the user.
|
Modifier and Type | Method and Description |
---|---|
PersonService.PersonFinder |
PersonService.find(Expansion... expansions)
Create a person finder to locate persons
Restrictions can be applied to the finder using the appropriate withFoo() method
For example:
|
Person |
PersonService.getCurrentUser(Expansion... expansions)
Get the currently logged in user
|
Modifier and Type | Method and Description |
---|---|
ContentRestriction |
ContentRestrictionService.getRestrictionsForOperation(ContentId target,
OperationKey operationKey,
PageRequest pageRequest,
Expansion... expansions)
Retrieves all restrictions for given operation key on given content.
|
Map<OperationKey,ContentRestriction> |
ContentRestrictionService.getRestrictionsGroupByOperation(ContentId target,
Expansion... expansions)
List all restrictions that exist directly on the given content.
|
Modifier and Type | Method and Description |
---|---|
PageResponse<R> |
RelationService.RelatableFinder.fetchMany(PageRequest pageRequest,
Expansion... expansions) |
Modifier and Type | Method and Description |
---|---|
SearchPageResponse<SearchResult> |
CQLSearchService.search(String cqlInput,
SearchOptions searchOptions,
PageRequest pageRequest,
Expansion... expansions)
Execute a CQL search query and fetch a page of results.
|
PageResponse<Content> |
CQLSearchService.searchContent(String cqlInput,
Expansion... expansions)
Execute a CQL search query and fetch a page results.
|
PageResponse<Content> |
CQLSearchService.searchContent(String cqlInput,
PageRequest pageRequest,
Expansion... expansions)
Execute a CQL search query and fetch a page results.
|
PageResponse<Content> |
CQLSearchService.searchContent(String cqlInput,
SearchContext searchContext,
PageRequest pageRequest,
Expansion... expansions)
Execute a CQL search query and fetch a page results.
|
Modifier and Type | Method and Description |
---|---|
Content |
ContentRpc.get(ContentId contentId,
Expansion... expansions) |
Modifier and Type | Method and Description |
---|---|
ContentPropertyService.ContentPropertyFinder |
ContentPropertyFinderFactory.createContentPropertyFinder(Expansion... expansions) |
ContentPropertyService.ContentPropertyFinder |
ContentPropertyServiceImpl.find(Expansion... expansions) |
Modifier and Type | Method and Description |
---|---|
SpacePropertyService.SpacePropertyFinder |
SpacePropertyFinderFactory.createSpacePropertyFinder(Expansion... expansions) |
SpacePropertyService.SpacePropertyFinder |
SpacePropertyServiceImpl.find(Expansion... expansions) |
Modifier and Type | Method and Description |
---|---|
protected Expansion[] |
LikeEventHipChatRenderContextProvider.getMediumSpecificExpansions(com.atlassian.confluence.notifications.CachedContentFinder cachedContentFinder) |
protected Expansion[] |
LikeEventEmailRenderContextProvider.getMediumSpecificExpansions(com.atlassian.confluence.notifications.CachedContentFinder cachedContentFinder) |
protected abstract Expansion[] |
AbstractLikeEventRenderContextProvider.getMediumSpecificExpansions(com.atlassian.confluence.notifications.CachedContentFinder cachedContentFinder) |
Modifier and Type | Method and Description |
---|---|
static Expansion[] |
ExpansionsParser.parse(String expand)
Converts a string representation of a collection of Expansions back into an
Expansion array. |
static Expansion[] |
ExpansionsParser.parseExperimental(String expand)
Converts a string representation of a collection of Expansions back into an
Expansion array. |
static Expansion |
ExpansionsParser.parseExperimentalSingle(String expand)
Same as calling
ExpansionsParser.parseSingle(java.lang.String) , but allows for experimental expansions. |
static Expansion |
ExpansionsParser.parseSingle(String expand)
Converts a string representation of a single Expansion back into an Expansion.
|
Modifier and Type | Method and Description |
---|---|
static String |
ExpansionsParser.asString(Expansion[] expansionsArr)
Converts a collection of
Expansion s into a single string. |
Modifier and Type | Method and Description |
---|---|
protected com.sun.jersey.api.client.WebResource |
AbstractRemoteService.addExpansions(com.sun.jersey.api.client.WebResource resource,
Expansion[] expansions)
add the expansions to the WebResource as a query param, this specifies which properties
on the results to expand
|
com.atlassian.util.concurrent.Promise<ContentBody> |
RemoteContentBodyConversionServiceImpl.convert(ContentBody body,
ContentRepresentation representation,
Expansion... expansions) |
com.atlassian.util.concurrent.Promise<ContentBody> |
RemoteContentBodyConversionService.convert(ContentBody body,
ContentRepresentation representation,
Expansion... expansions)
Convert a ContentBody value into another format, performing validation during the conversion.
|
com.atlassian.util.concurrent.Promise<ContentBody> |
RemoteContentBodyConversionServiceImpl.convertUsingExperimental(ContentBody body,
ContentRepresentation representation,
Expansion... expansions) |
com.atlassian.util.concurrent.Promise<Content> |
RemoteContentServiceImpl.create(Content newContent,
Expansion... expansions) |
com.atlassian.util.concurrent.Promise<Content> |
RemoteContentService.create(Content newContent,
Expansion... expansions)
Create a piece of content.
|
RemoteSpaceService.RemoteSpaceFinder |
RemoteSpaceServiceImpl.find(Expansion... expansions) |
RemoteSpaceService.RemoteSpaceFinder |
RemoteSpaceService.find(Expansion... expansions) |
RemoteSpacePropertyService.RemoteSpacePropertyFinder |
RemoteSpacePropertyServiceImpl.find(Expansion... expansions) |
RemoteSpacePropertyService.RemoteSpacePropertyFinder |
RemoteSpacePropertyService.find(Expansion... expansions) |
RemoteContentService.RemoteContentFinder |
RemoteContentServiceImpl.find(Expansion... expansions) |
RemoteContentService.RemoteContentFinder |
RemoteContentService.find(Expansion... expansions)
Create a content finder to retrieve content from the remote server
|
RemoteContentPropertyService.RemoteContentPropertyFinder |
RemoteContentPropertyServiceImpl.find(Expansion... expansions) |
RemoteContentPropertyService.RemoteContentPropertyFinder |
RemoteContentPropertyService.find(Expansion... expansions) |
RemoteAttachmentService.RemoteAttachmentFinder |
RemoteAttachmentServiceImpl.find(Expansion... expansions) |
RemoteAttachmentService.RemoteAttachmentFinder |
RemoteAttachmentService.find(Expansion... expansions) |
RemoteChildContentService.RemoteChildContentFinder |
RemoteChildContentServiceImpl.findContent(ContentId parentId,
Expansion... expansion) |
RemoteChildContentService.RemoteChildContentFinder |
RemoteChildContentService.findContent(ContentId parentId,
Expansion... expansion)
Create a finder to find content in the given parent.
|
RemoteSpaceService.RemoteSpaceContentFinder |
RemoteSpaceServiceImpl.findContent(Space space,
Expansion... expansion) |
RemoteSpaceService.RemoteSpaceContentFinder |
RemoteSpaceService.findContent(Space space,
Expansion... expansion)
Create a finder to find content in the given space.
|
RemoteContentMacroService.RemoteMacroFinder |
RemoteContentMacroService.findInContent(ContentId contentId,
Expansion... expansions)
Retrieve details about a macro matching the page, version and macro hash.
|
com.atlassian.util.concurrent.Promise<com.atlassian.fugue.Option<LongTaskStatus>> |
RemoteLongTaskService.get(LongTaskId id,
Expansion... expansions)
Returns the status of a long-running task.
|
com.atlassian.util.concurrent.Promise<PageResponse<Content>> |
RemoteContentServiceImpl.getChildren(Content parent,
PageRequest pageRequest,
Expansion... expansions) |
com.atlassian.util.concurrent.Promise<PageResponse<Content>> |
RemoteContentService.getChildren(Content parent,
PageRequest pageRequest,
Expansion... expansion)
Retrieve the children of an item of Content.
|
com.atlassian.util.concurrent.Promise<ContentRestriction> |
RemoteContentRestrictionServiceImpl.getRestrictionsForOperation(ContentId target,
OperationKey operationKey,
PageRequest pageRequest,
Expansion... expansions) |
com.atlassian.util.concurrent.Promise<ContentRestriction> |
RemoteContentRestrictionService.getRestrictionsForOperation(ContentId target,
OperationKey operationKey,
PageRequest pageRequest,
Expansion... expansions)
Retrieves all restrictions for given operation key on given content.
|
com.atlassian.util.concurrent.Promise<Map<OperationKey,ContentRestriction>> |
RemoteContentRestrictionServiceImpl.getRestrictionsGroupByOperation(ContentId target,
Expansion... expansions) |
com.atlassian.util.concurrent.Promise<Map<OperationKey,ContentRestriction>> |
RemoteContentRestrictionService.getRestrictionsGroupByOperation(ContentId target,
Expansion... expansions)
List all restrictions that exist directly on the given content.
|
com.atlassian.util.concurrent.Promise<com.atlassian.fugue.Option<Space>> |
RemoteSpaceServiceImpl.getSpace(String spaceKey,
Expansion... expansions)
Deprecated.
|
com.atlassian.util.concurrent.Promise<com.atlassian.fugue.Option<Space>> |
RemoteSpaceService.getSpace(String spaceKey,
Expansion... expansions)
Deprecated.
since 5.6. Use
RemoteSpaceService.find(Expansion...) |
com.atlassian.util.concurrent.Promise<Content> |
RemoteContentBlueprintServiceImpl.publishInstance(Content content,
Expansion... expansions) |
com.atlassian.util.concurrent.Promise<Content> |
RemoteContentBlueprintService.publishInstance(Content content,
Expansion... expansions)
Publishes the draft from blueprints.
|
com.atlassian.util.concurrent.Promise<Content> |
RemoteContentDraftServiceImpl.publishNewDraft(Content content,
Expansion... expansions) |
com.atlassian.util.concurrent.Promise<Content> |
RemoteContentDraftService.publishNewDraft(Content content,
Expansion... expansions)
Publishes the draft.
|
com.atlassian.util.concurrent.Promise<SearchPageResponse<SearchResult>> |
RemoteCQLSearchServiceImpl.search(String cql,
SearchOptions searchOptions,
PageRequest pageRequest,
Expansion... expansions) |
com.atlassian.util.concurrent.Promise<SearchPageResponse<SearchResult>> |
RemoteCQLSearchService.search(String cql,
SearchOptions searchOptions,
PageRequest pageRequest,
Expansion... expansions) |
com.atlassian.util.concurrent.Promise<PageResponse<Content>> |
RemoteCQLSearchServiceImpl.searchContent(String cql,
Expansion... expansions) |
com.atlassian.util.concurrent.Promise<PageResponse<Content>> |
RemoteCQLSearchService.searchContent(String cql,
Expansion... expansions) |
com.atlassian.util.concurrent.Promise<PageResponse<Content>> |
RemoteCQLSearchServiceImpl.searchContent(String cql,
PageRequest request,
Expansion... expansions) |
com.atlassian.util.concurrent.Promise<PageResponse<Content>> |
RemoteCQLSearchService.searchContent(String cql,
PageRequest request,
Expansion... expansions) |
com.atlassian.util.concurrent.Promise<PageResponse<Content>> |
RemoteCQLSearchServiceImpl.searchContent(String cqlInput,
SearchContext searchContext,
PageRequest request,
Expansion... expansions) |
com.atlassian.util.concurrent.Promise<PageResponse<Content>> |
RemoteCQLSearchService.searchContent(String cqlInput,
SearchContext searchContext,
PageRequest pageRequest,
Expansion... expansions) |
Constructor and Description |
---|
RemoteChildContentFinderImpl(AbstractRemoteService other,
ContentId parentId,
Expansion[] expansion) |
RemoteContentPropertyFinderImpl(AbstractRemoteService other,
Expansion... expansions) |
RemoteSpaceContentFinderImpl(AbstractRemoteService other,
Space space,
Expansion[] expansion) |
RemoteSpaceFinderImpl(AbstractRemoteService other,
Expansion... expansions) |
RemoteSpacePropertyFinderImpl(AbstractRemoteService other,
Expansion... expansions) |
Modifier and Type | Method and Description |
---|---|
RemoteContentMacroService.RemoteMacroFinder |
RemoteContentMacroServiceImpl.findInContent(ContentId content,
Expansion... expansions) |
com.atlassian.util.concurrent.Promise<com.atlassian.fugue.Option<LongTaskStatus>> |
RemoteLongTaskServiceImpl.get(LongTaskId id,
Expansion... expansions) |
Copyright © 2003–2015 Atlassian. All rights reserved.