KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jahia > utils > FilePathResolver


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 performing
18  * 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 Huber
22  * @version 1.0
23  */

24 public class FilePathResolver implements PathResolver {
25
26     public FilePathResolver() {
27     }
28
29     public String JavaDoc resolvePath(String JavaDoc relativePath) {
30         return relativePath;
31     }
32
33 }
34
Popular Tags