Interface PatchMapLogger

  • All Known Implementing Classes:
    PatchMapLoggerAdapter

    public interface PatchMapLogger
    Created 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 to CheckoutRules for the build type to run.
    • Method Detail

      • noSuchRootTypeOnBuildType

        void noSuchRootTypeOnBuildType​(java.lang.String vcsName,
                                       java.lang.String vcsPath)
      • vcsSupportWasNotFound

        void vcsSupportWasNotFound​(java.lang.String vcsName,
                                   java.lang.String vcsPath)
      • vcsSupportHasFailedToMapPath

        void vcsSupportHasFailedToMapPath​(java.lang.String vcsName,
                                          java.lang.String vcsPath)
      • skippedByCheckoutRule

        void skippedByCheckoutRule​(java.lang.String vcsName,
                                   java.lang.String vcsPath,
                                   java.util.Collection<java.lang.String> mappedPaths)
        Parameters:
        vcsName - Vcs name
        vcsPath - Original path obtained from IDE plugin
        mappedPaths - target paths for the vcsPath, returned by VCS support
        Since:
        4.5
      • severalVcsRootsForOneFile

        void severalVcsRootsForOneFile​(java.lang.String vcsName,
                                       java.lang.String vcsPath,
                                       java.lang.String actuallyMapped,
                                       java.lang.String ignoredMappedPaths)