001package de.deepamehta.plugins.files;
002
003import java.io.File;
004
005
006
007interface PathMapper {
008
009    /**
010     * Maps an absolute path to a repository path.
011     *
012     * @param   path    An absolute path.
013     */
014    String repoPath(File path);
015}