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 StringgetChangesetId()StringgetCleanName()Deprecated.since 8.0.StringgetName()StringgetRevision()booleanisRevisionKnown()
-
-
-
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
-
-