Uses of Class
com.atlassian.bamboo.utils.collection.PartialList
-
Packages that use PartialList Package Description com.atlassian.bamboo.build com.atlassian.bamboo.plan.pullrequest com.atlassian.bamboo.plugins.jiraPlugin.actions.ajax com.atlassian.bamboo.utils.collection -
-
Uses of PartialList in com.atlassian.bamboo.build
Methods in com.atlassian.bamboo.build that return PartialList Modifier and Type Method Description @NotNull PartialList<ResultsSummary>
JiraIssueResultsManager. findBuildResultsByJiraIssueKey(@NotNull List<String> issueKeys, int maxResults)
Finds a list of completed Build Results given issue keys@NotNull PartialList<ResultsSummary>
JiraIssueResultsManagerImpl. findBuildResultsByJiraIssueKey(@NotNull List<String> issueKeys, int maxResults)
@NotNull PartialList<? extends ResultsSummary>
JiraIssueResultsManager. findBuildResultsByProjectKey(@NotNull String projectKey, int maxResults)
Finds completed Build Results given a project key@NotNull PartialList<? extends ResultsSummary>
JiraIssueResultsManagerImpl. findBuildResultsByProjectKey(@NotNull String projectKey, int maxResults)
@NotNull PartialList<? extends ResultsSummary>
JiraIssueResultsManager. findBuildResultsByProjectKeys(@NotNull List<String> projectKeys, int maxResults)
Finds build results given a project keys@NotNull PartialList<? extends ResultsSummary>
JiraIssueResultsManagerImpl. findBuildResultsByProjectKeys(@NotNull List<String> projectKeys, int maxResults)
-
Uses of PartialList in com.atlassian.bamboo.plan.pullrequest
Methods in com.atlassian.bamboo.plan.pullrequest that return PartialList Modifier and Type Method Description @NotNull PartialList<MutableVcsPullRequest>
VcsPullRequestDao. closePullRequestsClosedInRepository(long targetRepositoryId, @NotNull Set<String> openPrKeys)
Synchronize status of PRs in DB and in remote repository.@NotNull PartialList<MutableVcsPullRequest>
VcsPullRequestHibernateDao. closePullRequestsClosedInRepository(long targetRepositoryId, @NotNull Set<String> openPrKeys)
-
Uses of PartialList in com.atlassian.bamboo.plugins.jiraPlugin.actions.ajax
Methods in com.atlassian.bamboo.plugins.jiraPlugin.actions.ajax that return PartialList Modifier and Type Method Description PartialList<? extends ResultsSummary>
ViewBuildResultsByJiraKey. getPartialResults()
-
Uses of PartialList in com.atlassian.bamboo.utils.collection
Methods in com.atlassian.bamboo.utils.collection that return PartialList Modifier and Type Method Description static <E> @NotNull PartialList<E>
PartialList. ofKnownSize(@NotNull List<E> list, int totalSize)
Creates aPartialList
of known total size.static <E> @NotNull PartialList<E>
PartialList. ofKnownSize(@NotNull List<E> list, long totalSize)
Creates aPartialList
of known total size.static <E> @NotNull PartialList<E>
PartialList. ofUnknownSize(@NotNull List<E> list)
Creates aPartialList
of unknown total size.
-