Show
Ignore:
Timestamp:
2008-04-10 17:32:00 (9 months ago)
Author:
th-schwarz
Message:

solved rewrite/restructure SessionData, svn:2081

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • FCKeditor.Java/branches/2.4/java-core/src/main/java/net/fckeditor/handlers/ConnectorHandler.java

    r1881 r1905  
    2323import javax.servlet.http.HttpServletRequest; 
    2424 
    25 import net.fckeditor.SessionData; 
     25import net.fckeditor.requestcycle.UserPathBuilder; 
    2626 
    2727/** 
    28  * Handler for some base properties. 
     28 * Handler for some base properties.<br> 
     29 * It's a kind of wrapper to some basic properties handled by the {@link PropertiesLoader}. 
    2930 *  
    3031 * @version $Id$ 
     
    3536     * Getter for the base dir (using for user files). 
    3637     *  
    37      * @return {@link SessionData#getUserFilesPath(HttpServletRequest)} or the default base dir, if 
    38      *         {@link SessionData}} isn't set. 
     38     * @return {@link UserPathBuilder#getUserFilesPath(HttpServletRequest)} or the default base dir, if 
     39     *         {@link UserPathBuilder}} isn't set. 
    3940     */ 
    4041    public static String getUserFilesPath(final HttpServletRequest servletRequest) { 
    41         String userFilePath = SessionDataHandler.getUserFilePath(servletRequest); 
     42        String userFilePath = RequestCycleHandler.getUserFilePath(servletRequest); 
    4243        return (userFilePath != null) ? userFilePath : getDefaultUserFilesPath(); 
    4344    }