Package com.atlassian.bamboo.commit
Interface CommitFile
-
- All Superinterfaces:
Serializable
- All Known Implementing Classes:
CommitFileImpl
@PublicApi public interface CommitFile extends Serializable
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description @Nullable String
getChangesetId()
String
getCleanName()
Deprecated.since 8.0.String
getName()
String
getRevision()
boolean
isRevisionKnown()
-
-
-
Method Detail
-
getName
String getName()
- Returns:
- name of file
-
getCleanName
@Deprecated String getCleanName()
Deprecated.since 8.0. UsegetName()
instead- Returns:
- name of file
-
getRevision
String getRevision()
- Returns:
- revision of file
-
isRevisionKnown
boolean isRevisionKnown()
-
getChangesetId
@Nullable @Nullable String getChangesetId()
- Returns:
- Changeset id of the associated
CommitContext
-
-