public interface BuildChanges extends Serializable
Modifier and Type | Method and Description |
---|---|
void |
addRepositoryChanges(@NotNull BuildRepositoryChanges repositoryChanges) |
@NotNull BuildRepositoryChanges |
getBuildRepositoryChanges(long repositoryId) |
@NotNull List<CommitContext> |
getChanges()
Get changes from all repositories
|
@NotNull List<CommitContext> |
getChanges(long repositoryId)
|
@Nullable PlanVcsRevisionData |
getIntegrationBranchRevisionData() |
long |
getIntegrationRepositoryId() |
String |
getPreviousVcsRevisionKey(long repositoryId)
Returns a
Repository dependent "id" for previous state of repository, so change is between previousVcsRevisionKey and vcsRevisionKey
This is value is taken from the Repository as to be internally consistent |
Iterable<BuildRepositoryChanges> |
getRepositoryChanges() |
int |
getSkippedCommitsCount(long repositoryId)
The number of commits that were included in this buildChanges, but their details were skipped (because there
was too many commits to keep them all in this buildChanges)
|
@NotNull PlanVcsRevisionData |
getVcsRevisionData(long repositoryId)
Returns
PlanVcsRevisionData containing Repository dependent vcs revision data for this checkout. |
@Nullable String |
getVcsRevisionKey(long repositoryId)
Returns a
Repository dependent "id" for this checkout. |
void |
setChanges(long repositoryId,
@NotNull List<CommitContext> changes) |
void |
setIntegrationBranchRevisionData(@NotNull PlanVcsRevisionData integrationBranchRevisionData) |
void |
setIntegrationRepositoryId(long integrationRepositoryId) |
void |
setPreviousVcsRevisionKey(long repositoryId,
@Nullable String previousVcsRevisionKey) |
void |
setSkippedCommitsCount(long repositoryId,
int skippedCommitsCount) |
void |
setVcsRevisionKey(long repositoryId,
@NotNull String vcsRevisionKey) |
void addRepositoryChanges(@NotNull @NotNull BuildRepositoryChanges repositoryChanges)
Iterable<BuildRepositoryChanges> getRepositoryChanges()
@Nullable @Nullable String getVcsRevisionKey(long repositoryId)
Repository
dependent "id" for this checkout. e.g. revision number for
SVN etc. This is value is taken from the Repository
as to be internally consistentvoid setVcsRevisionKey(long repositoryId, @NotNull @NotNull String vcsRevisionKey)
@NotNull @NotNull PlanVcsRevisionData getVcsRevisionData(long repositoryId)
PlanVcsRevisionData
containing Repository
dependent vcs revision data for this checkout.repositoryId
- String getPreviousVcsRevisionKey(long repositoryId)
Repository
dependent "id" for previous state of repository, so change is between previousVcsRevisionKey and vcsRevisionKey
This is value is taken from the Repository
as to be internally consistentvoid setPreviousVcsRevisionKey(long repositoryId, @Nullable @Nullable String previousVcsRevisionKey)
@NotNull @NotNull List<CommitContext> getChanges(long repositoryId)
@NotNull @NotNull List<CommitContext> getChanges()
void setChanges(long repositoryId, @NotNull @NotNull List<CommitContext> changes)
int getSkippedCommitsCount(long repositoryId)
void setSkippedCommitsCount(long repositoryId, int skippedCommitsCount)
long getIntegrationRepositoryId()
void setIntegrationRepositoryId(long integrationRepositoryId)
@Nullable @Nullable PlanVcsRevisionData getIntegrationBranchRevisionData()
void setIntegrationBranchRevisionData(@NotNull @NotNull PlanVcsRevisionData integrationBranchRevisionData)
@NotNull @NotNull BuildRepositoryChanges getBuildRepositoryChanges(long repositoryId)
repositoryId
- repository idBuildRepositoryChanges
object for a specified repository id.IllegalArgumentException
- if the repository is not included in this changeset.Copyright © 2022 Atlassian Software Systems Pty Ltd. All rights reserved.