Modifier and Type | Method and Description |
---|---|
Page<MinimalAuditEntry> |
AuditService.findByProject(Project project,
PageRequest pageRequest)
Retrieves a page of audit events recorded for the specified project.
|
Page<MinimalAuditEntry> |
AuditService.findByRepository(Repository repository,
PageRequest pageRequest)
Retrieves a page of audit events recorded for the specified repository.
|
Modifier and Type | Method and Description |
---|---|
Page<Comment> |
CommentService.search(CommentSearchRequest request,
PageRequest pageRequest)
Search for all
comments matching the provided request. |
Page<CommentThread> |
CommentService.searchThreads(CommentSearchRequest request,
PageRequest pageRequest)
Search for all
threads matching the provided request. |
Modifier and Type | Method and Description |
---|---|
Page<Change> |
CommitService.getChanges(ChangesRequest request,
PageRequest pageRequest)
Retrieves a page of
changes between two commits. |
Page<Changeset> |
CommitService.getChangesets(ChangesetsRequest request,
PageRequest pageRequest)
Retrieves changesets for each of the requested
ChangesetsRequest.getCommitIds() commits}, including the
first page of changes between each commit and its first parent. |
Page<Commit> |
CommitService.getCommits(CommitsRequest request,
PageRequest pageRequest)
Retrieves a page of commits, starting from a given branch, tag or commit, optionally filtered to only return
commits which modify one or more paths.
|
Page<Commit> |
CommitService.getCommitsBetween(CommitsBetweenRequest request,
PageRequest pageRequest)
Retrieves a page of commits between the
included commits and the
excluded commits . |
Modifier and Type | Method and Description |
---|---|
Page<Blame> |
ContentService.getBlame(Repository repository,
String objectId,
String path,
PageRequest pageRequest)
Returns
Blame for the lines included by the provided PageRequest for the specified objectId+path
in the specified repository. |
void |
ContentService.streamDirectory(Repository repository,
String objectId,
String path,
boolean recursive,
ContentTreeCallback callback,
PageRequest pageRequest)
Performs a directory listing for the specified objectId+path from the specified repository, streaming the results
to the provided
callback . |
void |
ContentService.streamFile(Repository repository,
String objectId,
String path,
PageRequest pageRequest,
boolean withBlame,
FileContentCallback fileContentCallback) |
Modifier and Type | Method and Description |
---|---|
Page<RepositoryHook> |
RepositoryHookService.search(RepositoryHookSearchRequest request,
PageRequest pageRequest)
Searches for
repository hooks that match the provided request . |
Modifier and Type | Method and Description |
---|---|
Page<HookScript> |
HookScriptService.findByPluginKey(String pluginKey,
PageRequest pageRequest)
Finds a page of hook scripts which were created by the app with the specified plugin key.
|
Modifier and Type | Method and Description |
---|---|
Page<IndexedCommit> |
CommitIndex.findByProperty(String propertyKey,
String propertyValue,
boolean caseSensitive,
PageRequest pageRequest)
Retrieves all
indexed commits that have a given property with a specified value. |
Page<IndexedCommit> |
CommitIndex.search(IndexSearchRequest searchRequest,
PageRequest pageRequest)
Searches the index for any matching commits.
|
Page<MinimalRepositoryCommit> |
CommitIndex.searchRepositoryCommits(IndexSearchRequest indexSearchRequest,
PageRequest pageRequest)
Search the index for any
commits matching the provided search request. |
Modifier and Type | Method and Description |
---|---|
Page<Job> |
JobService.search(JobSearchRequest request,
PageRequest pageRequest)
Finds all
jobs matching the supplied request object |
Page<JobMessage> |
JobService.searchMessages(JobMessageSearchRequest request,
PageRequest pageRequest)
Finds all
job messages matching the supplied request object |
Modifier and Type | Method and Description |
---|---|
Page<Label> |
LabelService.findAll(PageRequest pageRequest)
|
Page<Label> |
LabelService.findByLabelable(Labelable labelable,
PageRequest pageRequest)
|
Page<Label> |
LabelService.findByPrefix(String labelPref,
PageRequest pageRequest)
|
Page<Labelable> |
LabelService.searchLabelables(LabelableSearchRequest searchRequest,
PageRequest pageRequest)
|
Modifier and Type | Method and Description |
---|---|
Page<JobMessage> |
MigrationService.searchExportJobMessages(MigrationJobMessageSearchRequest request,
PageRequest pageRequest)
Finds all
job messages matching the supplied request object for an export job. |
Page<JobMessage> |
MigrationService.searchImportJobMessages(MigrationJobMessageSearchRequest request,
PageRequest pageRequest)
Finds all
job messages matching the supplied request object for an import job. |
Modifier and Type | Method and Description |
---|---|
Page<PermittedGroup> |
PermissionAdminService.findGroupsWithGlobalPermission(String filter,
PageRequest pageRequest)
Retrieves a page of
groups and their highest global permission. |
Page<String> |
PermissionAdminService.findGroupsWithoutGlobalPermission(String filter,
PageRequest pageRequest)
Retrieves a page of groups who have not been explicitly granted any global permission
|
Page<String> |
PermissionAdminService.findGroupsWithoutProjectPermission(Project project,
String filter,
PageRequest pageRequest)
Retrieves a page of groups who have not been explicitly granted any project permission
|
Page<String> |
PermissionAdminService.findGroupsWithoutRepositoryPermission(Repository repository,
String filter,
PageRequest pageRequest)
Retrieves a page of groups who have not been explicitly granted any repository permission.
|
Page<PermittedGroup> |
PermissionAdminService.findGroupsWithProjectPermission(Project project,
String filter,
PageRequest pageRequest)
Retrieves a page of
groups and their highest granted permission for the specified project. |
Page<PermittedGroup> |
PermissionAdminService.findGroupsWithRepositoryPermission(Repository repository,
String filter,
PageRequest pageRequest)
Retrieves a page of
groups and their highest granted permission for the specified
repository. |
Page<ApplicationUser> |
PermissionAdminService.findLicensedUsersWithoutProjectPermission(Project project,
String filter,
PageRequest pageRequest)
|
Page<ApplicationUser> |
PermissionAdminService.findLicensedUsersWithoutRepositoryPermission(Repository repository,
String filter,
PageRequest pageRequest)
|
Page<PermittedUser> |
PermissionAdminService.findUsersWithGlobalPermission(String filter,
PageRequest pageRequest)
Retrieves a page of
users and their highest global permission. |
Page<ApplicationUser> |
PermissionAdminService.findUsersWithoutGlobalPermission(String filter,
PageRequest pageRequest)
Retrieves a page of
active users who have not been explicitly
granted any global permission |
Page<PermittedUser> |
PermissionAdminService.findUsersWithProjectPermission(Project project,
String filter,
PageRequest pageRequest)
Retrieves a page of
users and their highest granted permission for the specified project. |
Page<PermittedUser> |
PermissionAdminService.findUsersWithRepositoryPermission(Repository repository,
String filter,
PageRequest pageRequest)
Retrieves a page of
users and their highest granted permission for the specified
repository. |
Page<String> |
PermissionService.getGrantedGroups(Permission permission,
PageRequest request)
Get the groups which are granted a permission
|
Page<ApplicationUser> |
PermissionService.getGrantedUsers(Permission permission,
PageRequest request)
Get the users which are granted a permission
|
Modifier and Type | Method and Description |
---|---|
Page<Project> |
ProjectService.findAll(PageRequest pageRequest)
Retrieves a page of projects which are visible for the current user.
|
Page<Project> |
ProjectService.search(ProjectSearchRequest searchRequest,
PageRequest pageRequest)
|
Modifier and Type | Method and Description |
---|---|
PageRequest |
SimplePullRequestActivityPage.getNextPageRequest() |
Modifier and Type | Method and Description |
---|---|
Page<PullRequestActivity> |
PullRequestService.getActivities(int repositoryId,
long pullRequestId,
PageRequest pageRequest)
Retrieves a page of the activities for a given pull request.
|
PullRequestActivityPage<PullRequestActivity> |
PullRequestService.getActivitiesStartingAt(int repositoryId,
long pullRequestId,
PullRequestEntityType fromType,
long fromId,
PageRequest pageRequest)
Retrieves the page of activities that start with an entity (given its type and id) for the given pull request.
|
Page<Commit> |
PullRequestService.getCommits(int repositoryId,
long pullRequestId,
PageRequest pageRequest)
Deprecated.
in 6.0 for removal in 7.0. Use
PullRequestService.getCommits(PullRequestCommitsRequest, PageRequest) instead |
Page<Commit> |
PullRequestService.getCommits(PullRequestCommitsRequest request,
PageRequest pageRequest)
Retrieves a page of the commits for a given pull request.
|
Page<PullRequestParticipant> |
PullRequestService.getParticipants(int repositoryId,
long pullRequestId,
PageRequest pageRequest)
Retrieves a page of the participants for a given pull request.
|
Page<PullRequest> |
PullRequestService.search(PullRequestSearchRequest request,
PageRequest pageRequest)
Finds a single page of pull requests depending on the
request passed in. |
Page<PullRequestActivity> |
PullRequestService.searchActivities(PullRequestActivitySearchRequest request,
PageRequest pageRequest)
Finds a single page of pull request activities depending on the
request
passed in. |
Page<PullRequest> |
PullRequestService.searchByCommit(PullRequestCommitSearchRequest request,
PageRequest pageRequest)
Finds a single page of pull requests containing a specified commit which match the given
search criteria . |
Page<Task> |
PullRequestService.searchTasks(PullRequestTaskSearchRequest searchRequest,
PageRequest pageRequest)
Finds a single page of @{link Task tasks} belonging to this pull request depending on the
request passed in. |
Page<ApplicationUser> |
PullRequestService.searchUsers(PullRequestParticipantSearchRequest searchRequest,
PageRequest pageRequest)
Finds
users who have participated in pull requests based on the provided
search request . |
Modifier and Type | Method and Description |
---|---|
Page<Repository> |
RepositoryService.findAll(PageRequest pageRequest)
Find all repositories in the system in the default namespace.
|
Page<Repository> |
RepositoryService.findByOrigin(Repository origin,
PageRequest pageRequest)
Retrieves a page of
repositories which have been forked from the specified origin . |
Page<Repository> |
RepositoryService.findByOwner(ApplicationUser owner,
PageRequest pageRequest)
Retrieves a page of
repositories owned by the specified user . |
Page<Repository> |
RepositoryService.findByProjectId(int projectId,
PageRequest pageRequest)
Retrieves a page of
repositories in the project with the given id. |
Page<Repository> |
RepositoryService.findByProjectKey(String projectKey,
PageRequest pageRequest)
List the names of the repositories in the project with the given key and with a default (null) namespace.
|
Page<Repository> |
RepositoryService.findByProjectKey(String projectNamespace,
String projectKey,
PageRequest pageRequest)
List the names of the repositories in the project with the given key and namespace.
|
Page<Repository> |
RepositoryService.findRelated(Repository repository,
PageRequest pageRequest)
Retrieves a page of
repositories which belong to the same hierarchy as the specified repository. |
Page<Branch> |
RefService.getBranches(RepositoryBranchesRequest request,
PageRequest pageRequest)
Retrieves a paged list of
branches for the specified repository, optionally filtered by the
provided starting text. |
Page<Tag> |
RefService.getTags(RepositoryTagsRequest request,
PageRequest pageRequest)
Retrieves a paged list of
tags for the specified repository, optionally filtered by the provided
starting text. |
Page<Repository> |
RepositoryService.search(RepositorySearchRequest request,
PageRequest pageRequest)
Searches for
repositories that match the provided request . |
Modifier and Type | Method and Description |
---|---|
Command<Page<Blame>> |
ScmCommandFactory.blame(BlameCommandParameters parameters,
PageRequest pageRequest)
Retrieves blame (also sometimes referred to as annotations) for a file at a given revision.
|
Command<Page<Branch>> |
ScmCommandFactory.branches(BranchesCommandParameters parameters,
PageRequest pageRequest)
|
Command<Page<Change>> |
ScmCommandFactory.changes(ChangesCommandParameters parameters,
PageRequest pageRequest)
|
Command<Page<Changeset>> |
ScmCommandFactory.changesets(ChangesetsCommandParameters parameters,
PageRequest pageRequest)
Retrieves a page of
changesets given a set of commit IDs , where each changeset includes the first page of changes
between a requested commit and its first parent. |
Command<Page<Commit>> |
ScmCommandFactory.commits(CommitsCommandParameters parameters,
PageRequest pageRequest)
Retrieves a
page of commits matching the specified parameters . |
Command<Void> |
ScmCommandFactory.directory(DirectoryCommandParameters parameters,
ContentTreeCallback callback,
PageRequest pageRequest)
Streams the
tree nodes (files, subdirectories and submodules) in the specified
directory . |
Command<Void> |
ScmCommandFactory.file(FileCommandParameters parameters,
FileContentCallback callback,
PageRequest pageRequest)
Streams the contents of the
specified file . |
Command<Page<Tag>> |
ScmCommandFactory.tags(TagsCommandParameters parameters,
PageRequest pageRequest)
|
Modifier and Type | Method and Description |
---|---|
Page<Repository> |
RecentlyAccessedRepositoriesService.findByCurrentUser(PageRequest pageRequest)
Returns a page of repositories accessed most recently by the current user.
|
Page<Repository> |
RecentlyAccessedRepositoriesService.findByCurrentUser(Permission permission,
PageRequest pageRequest)
Returns a page of repositories accessed most recently by the current user.
|
Page<String> |
UserService.findGroups(PageRequest pageRequest)
Retrieves a page of groups.
|
Page<DetailedGroup> |
UserAdminService.findGroups(PageRequest pageRequest)
Retrieves a page of groups with full
details . |
Page<String> |
UserService.findGroupsByName(String groupName,
PageRequest pageRequest)
Retrieves a page of groups, optionally filtering the returned results to those containing the specified
groupName . |
Page<DetailedGroup> |
UserAdminService.findGroupsByName(String groupName,
PageRequest pageRequest)
Retrieves a page of groups with full
details , optionally filtering the returned results
to those containing the specified groupName . |
Page<String> |
UserService.findGroupsByPrefix(String groupPrefix,
PageRequest pageRequest)
Retrieves a page of groups, optionally filtering the returned results to those beginning with the specified
groupPrefix . |
Page<String> |
UserService.findGroupsByUser(String username,
PageRequest pageRequest)
Retrieves a page of groups which the specified user is a member of.
|
Page<DetailedGroup> |
UserAdminService.findGroupsWithoutUser(String username,
String groupName,
PageRequest pageRequest)
Retrieves a page of groups which the specified user is not a member of, with full
details , optionally filtering the returned results to those containing the specified groupName . |
Page<DetailedGroup> |
UserAdminService.findGroupsWithUser(String username,
String groupName,
PageRequest pageRequest)
Retrieves a page of groups which the specified user is a member of, with full
details ,
optionally filtering the returned results to those containing the specified groupName . |
Page<ApplicationUser> |
UserService.findUsers(PageRequest pageRequest)
|
Page<DetailedUser> |
UserAdminService.findUsers(PageRequest pageRequest)
Retrieves a page of users with full
details . |
Page<ApplicationUser> |
UserService.findUsersByGroup(String groupName,
PageRequest pageRequest)
Retrieves a page of
active users which are members of the specified group. |
Page<ApplicationUser> |
UserService.findUsersByName(String username,
PageRequest pageRequest)
|
Page<DetailedUser> |
UserAdminService.findUsersByName(String username,
PageRequest pageRequest)
Retrieves a page of users, optionally filtering the returned results to those containing the specified
username . |
Page<DetailedUser> |
UserAdminService.findUsersWithGroup(String groupName,
String username,
PageRequest pageRequest)
Find the users within a group that match the page request.
|
Page<DetailedUser> |
UserAdminService.findUsersWithoutGroup(String groupName,
String username,
PageRequest pageRequest)
Find the users outside a group that match the page request.
|
Page<ApplicationUser> |
UserService.search(UserSearchRequest request,
PageRequest pageRequest)
|
Modifier and Type | Class and Description |
---|---|
class |
PageRequestImpl
Default implementation of
PageRequest . |
Modifier and Type | Method and Description |
---|---|
PageRequest |
PageRequest.buildRestrictedPageRequest(int maxLimit) |
PageRequest |
PageRequestImpl.buildRestrictedPageRequest(int maxLimit) |
PageRequest |
FilteredPageImpl.getNextPageRequest() |
PageRequest |
Page.getNextPageRequest() |
PageRequest |
AbstractPagedSummary.getNextPageRequest()
If this is not the
last page , retrieves the PageRequest which can be used to
request the next page. |
PageRequest |
PageImpl.getNextPageRequest() |
PageRequest |
AbstractPagedSummary.getPageRequest()
Retrieves the
PageRequest that was used to retrieve this page of results. |
PageRequest |
PagedCallback.getPageRequest()
Retrieves the
PageRequest which defines the Page the callback is attempting to build, allowing
components which provide data to the callback to potentially assist in producing the desired page. |
Modifier and Type | Method and Description |
---|---|
B |
AbstractPagedSummary.AbstractPagedBuilder.pageRequest(PageRequest value) |
Constructor and Description |
---|
FilteredPageImpl(PageRequest pageRequest,
int size,
SortedMap<Integer,T> valueMap,
boolean lastPage) |
PageImpl(PageRequest pageRequest,
int size,
Iterable<T> values,
boolean lastPage)
|
PageImpl(PageRequest pageRequest,
Iterable<T> values,
boolean lastPage)
Creates a page from the provided
values and explicitly sets PageImpl.getIsLastPage() . |
PageImpl(PageRequest pageRequest,
Iterable<T> values,
boolean lastPage,
int size,
int nextPageStart)
|
Modifier and Type | Method and Description |
---|---|
Page<Watcher> |
WatcherService.search(WatcherSearchRequest request,
PageRequest pageRequest)
|
Copyright © 2019 Atlassian. All rights reserved.