1 //2 // ____.3 // __/\ ______| |__/\. _______4 // __ .____| | \ | +----+ \5 // _______| /--| | | - \ _ | : - \_________6 // \\______: :---| : : | : | \________>7 // |__\---\_____________:______: :____|____:_____\8 // /_____|9 //10 // . . . i n j a h i a w e t r u s t . . .11 //12 13 package org.jahia.utils;14 15 /**16 * <p>Title: File path resolver</p>17 * <p>Description: Resolves all the paths as disk paths, basically performing18 * no transformation on the path and returning it as it is.</p>19 * <p>Copyright: Copyright (c) 2004</p>20 * <p>Company: Jahia Ltd</p>21 * @author Serge Huber22 * @version 1.023 */24 public class FilePathResolver implements PathResolver {25 26 public FilePathResolver() {27 }28 29 public String resolvePath(String relativePath) {30 return relativePath;31 }32 33 }34