1 package de.matthias_burbach.mosaique.core.model; 2 3 /*** 4 * Maps relative file paths to absolute paths in the file system. 5 * Is used to find Tiles definition files and JSPs in the file system. 6 * 7 * @author Matthias Burbach 8 */ 9 public interface PathFinder { 10 /*** 11 * @param relativePath The relative path to map to an absolute path. 12 * @return The absolute path. 13 */ 14 String findAbsolutePath(String relativePath); 15 }