Interface MutableDeploymentVersionVcsChangeset
-
- All Superinterfaces:
BambooIdProvider
,BambooObject
- All Known Implementing Classes:
MutableDeploymentVersionVcsChangesetImpl
public interface MutableDeploymentVersionVcsChangeset extends BambooObject
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description @Nullable String
getChangesetId()
@NotNull Set<MutableDeploymentVersionVcsCommit>
getCommits()
@NotNull MutableDeploymentVersion
getDeploymentVersion()
@NotNull RepositoryDataEntity
getRepositoryData()
long
getSkippedCommitsCount()
void
setChangesetId(@Nullable String changeSetId)
void
setCommits(@NotNull Set<MutableDeploymentVersionVcsCommit> commits)
void
setDeploymentVersion(@NotNull MutableDeploymentVersion deploymentVersion)
void
setRepositoryData(@NotNull RepositoryDataEntity repositoryData)
void
setSkippedCommitsCount(long skippedCommitCount)
-
Methods inherited from interface com.atlassian.bamboo.core.BambooIdProvider
getId
-
Methods inherited from interface com.atlassian.bamboo.core.BambooObject
setId
-
-
-
-
Method Detail
-
getRepositoryData
@NotNull @NotNull RepositoryDataEntity getRepositoryData()
-
setRepositoryData
void setRepositoryData(@NotNull @NotNull RepositoryDataEntity repositoryData)
-
getCommits
@NotNull @NotNull Set<MutableDeploymentVersionVcsCommit> getCommits()
-
setCommits
void setCommits(@NotNull @NotNull Set<MutableDeploymentVersionVcsCommit> commits)
-
getDeploymentVersion
@NotNull @NotNull MutableDeploymentVersion getDeploymentVersion()
-
setDeploymentVersion
void setDeploymentVersion(@NotNull @NotNull MutableDeploymentVersion deploymentVersion)
-
getSkippedCommitsCount
long getSkippedCommitsCount()
-
setSkippedCommitsCount
void setSkippedCommitsCount(long skippedCommitCount)
-
getChangesetId
@Nullable @Nullable String getChangesetId()
-
setChangesetId
void setChangesetId(@Nullable @Nullable String changeSetId)
-
-