Package jetbrains.buildServer.vcs
Interface Modification
-
- All Known Subinterfaces:
SVcsModification
,VcsModification
,VcsModificationEx
- All Known Implementing Classes:
AbstractVcsModification
,DBVcsModification
,DuplicateVcsModification
,MockVcsModification
,MockVcsModificationWithId
,ModificationDataWrapper
,PersonalVcsModificationImpl
public interface Modification
Basic information about a modification - a named set of changes in particular files, made by a single user. It resembles the VCS term changelist.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getDescription()
Returns user comment made for the changeString
getUserName()
Returns name of the user who did this commit (according information from VCS system)Date
getVcsDate()
Returns when this modification was made
-
-
-
Method Detail
-
getUserName
@Nullable String getUserName()
Returns name of the user who did this commit (according information from VCS system)- Returns:
- name of the user who did this commit (according information from VCS system)
-
getDescription
@NotNull String getDescription()
Returns user comment made for the change- Returns:
- user comment made for the change
-
getVcsDate
@NotNull Date getVcsDate()
Returns when this modification was made- Returns:
- when this modification was made
-
-