Interface RepositoryChangeset
-
- All Superinterfaces:
BambooIdProvider,BambooObject
- All Known Implementing Classes:
RepositoryChangesetImpl
public interface RepositoryChangeset extends BambooObject
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description @Nullable StringgetChangesetId()@NotNull Set<Commit>getCommits()intgetPosition()@NotNull RepositoryDataEntitygetRepositoryData()@NotNull ResultsSummarygetResultsSummary()longgetSkippedCommitsCount()The number of commits that were included in this summary, but their details were skipped (because there was too many commits to keep them all in this summary)booleanisBuildTrigger()voidsetBuildTrigger(boolean buildTrigger)voidsetChangesetId(@Nullable String changesetId)voidsetCommits(@NotNull Set<Commit> commits)voidsetPosition(int position)voidsetRepositoryData(@NotNull RepositoryDataEntity repositoryData)voidsetResultsSummary(@NotNull ResultsSummary resultsSummary)voidsetSkippedCommitsCount(long skippedCommitsCount)-
Methods inherited from interface com.atlassian.bamboo.core.BambooIdProvider
getId
-
Methods inherited from interface com.atlassian.bamboo.core.BambooObject
setId
-
-
-
-
Method Detail
-
getResultsSummary
@NotNull @NotNull ResultsSummary getResultsSummary()
-
setResultsSummary
void setResultsSummary(@NotNull @NotNull ResultsSummary resultsSummary)
-
getRepositoryData
@NotNull @NotNull RepositoryDataEntity getRepositoryData()
-
setRepositoryData
void setRepositoryData(@NotNull @NotNull RepositoryDataEntity repositoryData)
-
getChangesetId
@Nullable @Nullable String getChangesetId()
-
setChangesetId
void setChangesetId(@Nullable @Nullable String changesetId)
-
getSkippedCommitsCount
long getSkippedCommitsCount()
The number of commits that were included in this summary, but their details were skipped (because there was too many commits to keep them all in this summary)- Returns:
- number of skipped commits
-
setSkippedCommitsCount
void setSkippedCommitsCount(long skippedCommitsCount)
-
isBuildTrigger
boolean isBuildTrigger()
-
setBuildTrigger
void setBuildTrigger(boolean buildTrigger)
-
getPosition
int getPosition()
-
setPosition
void setPosition(int position)
-
-