Package jetbrains.vcs.api
Interface CommitMountPointInfo
-
- All Known Implementing Classes:
CommitMountPointDataBean
public interface CommitMountPointInfo
Represents repository mount point with a given commit (e.g. sub-repo or svn:externals)- Since:
- 8.1
- Author:
- Eugene Petrenko (eugene.petrenko@jetbrains.com)
- See Also:
CommitInfo
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getMountPath()
String
getMountRepositoryURL()
String
getMountRepositoryVcsName()
String
getMountRevision()
-
-
-
Method Detail
-
getMountRepositoryVcsName
@NotNull String getMountRepositoryVcsName()
- Returns:
- VCS name for the mounted repository
- Since:
- 8.1
-
getMountRepositoryURL
@NotNull String getMountRepositoryURL()
- Returns:
- URL or other string identifying mounted repository
- Since:
- 8.1
-
getMountPath
@NotNull String getMountPath()
- Returns:
- relative path (from the parent repository root) for given mount point
- Since:
- 8.1
-
getMountRevision
@Nullable String getMountRevision()
- Returns:
- mounted version control revision (if applicable) or
null
to consider latest revision - Since:
- 8.1
-
-