Package com.atlassian.bamboo.commit
Class UnassociatedCommit
- java.lang.Object
-
- com.atlassian.bamboo.commit.UnassociatedCommit
-
public class UnassociatedCommit extends Object
-
-
Constructor Summary
Constructors Constructor Description UnassociatedCommit(@Nullable String changeSetId, String comment, Author author, Date date, long repositoryId)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
Author
getAuthor()
@Nullable String
getChangeSetId()
String
getComment()
Date
getDate()
long
getRepositoryId()
int
hashCode()
void
setAuthor(Author author)
void
setChangeSetId(@Nullable String changeSetId)
void
setComment(String comment)
void
setDate(Date date)
void
setRepositoryId(long repositoryId)
-
-
-
Method Detail
-
getAuthor
public Author getAuthor()
-
setAuthor
public void setAuthor(Author author)
-
getComment
public String getComment()
-
setComment
public void setComment(String comment)
-
getDate
public Date getDate()
-
setDate
public void setDate(Date date)
-
getChangeSetId
@Nullable public @Nullable String getChangeSetId()
-
setChangeSetId
public void setChangeSetId(@Nullable @Nullable String changeSetId)
-
getRepositoryId
public long getRepositoryId()
-
setRepositoryId
public void setRepositoryId(long repositoryId)
-
-