com.atlassian.bamboo.resultsummary.vcs
Interface RepositoryChangeset

All Superinterfaces:
BambooIdProvider, BambooObject
All Known Implementing Classes:
RepositoryChangesetImpl

public interface RepositoryChangeset
extends BambooObject


Method Summary
 java.lang.String getChangesetId()
           
 java.util.Set<Commit> getCommits()
           
 int getPosition()
           
 RepositoryDataEntity getRepositoryData()
           
 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(java.lang.String changesetId)
           
 void setCommits(java.util.Set<Commit> commits)
           
 void setPosition(int position)
           
 void setRepositoryData(RepositoryDataEntity repositoryData)
           
 void setResultsSummary(ResultsSummary resultsSummary)
           
 void setSkippedCommitsCount(long skippedCommitsCount)
           
 
Methods inherited from interface com.atlassian.bamboo.core.BambooObject
setId
 
Methods inherited from interface com.atlassian.bamboo.core.BambooIdProvider
getId
 

Method Detail

getResultsSummary

@NotNull
ResultsSummary getResultsSummary()

setResultsSummary

void setResultsSummary(@NotNull
                       ResultsSummary resultsSummary)

getRepositoryData

@NotNull
RepositoryDataEntity getRepositoryData()

setRepositoryData

void setRepositoryData(@NotNull
                       RepositoryDataEntity repositoryData)

getChangesetId

@Nullable
java.lang.String getChangesetId()

setChangesetId

void setChangesetId(@Nullable
                    java.lang.String changesetId)

getCommits

@NotNull
java.util.Set<Commit> getCommits()

setCommits

void setCommits(@NotNull
                java.util.Set<Commit> commits)

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)


Copyright © 2012 Atlassian. All Rights Reserved.