Package jetbrains.buildServer.serverSide
Interface PatchMapLogger
-
- All Known Implementing Classes:
PatchMapLoggerAdapter,VcsModificationPatchMapLogger
public interface PatchMapLoggerCreated by IntelliJ IDEA. User: Eugene.Petrenko Date: 19.07.2007 Time: 17:40:31 Used to report files that were skipped while mapping IDE sent patch to agent path. This process maps full paths of changed files to local paths with respect toCheckoutRulesfor the build type to run.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidnoSuchRootTypeOnBuildType(String vcsName, String vcsPath)voidseveralVcsRootsForOneFile(String vcsName, String vcsPath, String actuallyMapped, String ignoredMappedPaths)voidskippedByCheckoutRule(String vcsName, String vcsPath, Collection<String> mappedPaths)voidvcsSupportHasFailedToMapPath(String vcsName, String vcsPath)voidvcsSupportWasNotFound(String vcsName, String vcsPath)
-
-
-
Method Detail
-
skippedByCheckoutRule
void skippedByCheckoutRule(String vcsName, String vcsPath, Collection<String> mappedPaths)
- Parameters:
vcsName- Vcs namevcsPath- Original path obtained from IDE pluginmappedPaths- target paths for the vcsPath, returned by VCS support- Since:
- 4.5
-
-