com.atlassian.bamboo.resultsummary.vcs
Interface RepositoryChangeset

All Superinterfaces:
BambooObject
All Known Implementing Classes:
RepositoryChangesetImpl

public interface RepositoryChangeset
extends BambooObject


Method Summary
 java.lang.String getChangesetId()
           
 java.util.Set<Commit> getCommits()
           
 RepositoryDefinitionEntity getRepositoryDefinition()
           
 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)
 void setChangesetId(java.lang.String changesetId)
           
 void setCommits(java.util.Set<Commit> commits)
           
 void setRepositoryDefinition(RepositoryDefinitionEntity repositoryDefinition)
           
 void setResultsSummary(ResultsSummary resultsSummary)
           
 void setSkippedCommitsCount(long skippedCommitsCount)
           
 
Methods inherited from interface com.atlassian.bamboo.core.BambooObject
getId, setId
 

Method Detail

getResultsSummary

@NotNull
ResultsSummary getResultsSummary()

setResultsSummary

void setResultsSummary(@NotNull
                       ResultsSummary resultsSummary)

getRepositoryDefinition

@NotNull
RepositoryDefinitionEntity getRepositoryDefinition()

setRepositoryDefinition

void setRepositoryDefinition(@NotNull
                             RepositoryDefinitionEntity repositoryDefinition)

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)


Copyright © 2011 Atlassian. All Rights Reserved.