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 String
getChangesetId()
@NotNull Set<Commit>
getCommits()
int
getPosition()
@NotNull RepositoryDataEntity
getRepositoryData()
@NotNull ResultsSummary
getResultsSummary()
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)boolean
isBuildTrigger()
void
setBuildTrigger(boolean buildTrigger)
void
setChangesetId(@Nullable String changesetId)
void
setCommits(@NotNull Set<Commit> commits)
void
setPosition(int position)
void
setRepositoryData(@NotNull RepositoryDataEntity repositoryData)
void
setResultsSummary(@NotNull ResultsSummary resultsSummary)
void
setSkippedCommitsCount(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)
-
-