All Downloads are FREE. Search and download functionalities are using the official Maven repository.

nablarch.fw.web.i18n.DirectoryBasedResourcePathRule Maven / Gradle / Ivy

There is a newer version: 2.2.0
Show newest version
package nablarch.fw.web.i18n;

/**
 * コンテキストルート直下のディレクトリを言語の切り替えに使用するクラス。
 * @author Kiyohito Itoh
 */
public class DirectoryBasedResourcePathRule extends ResourcePathRule {
    /**
     * {@inheritDoc}
     * 
     * 下記のパスを返す。
     * 
     *   pathFromContextRoot: "/aaa/bbb/ccc.css"
     *   language: "ja"
     *   
     *   戻り値: "/ja/aaa/bbb/ccc.css"
     * 
*/ @Override protected String createPathForLanguage(String pathFromContextRoot, String language) { return "/" + language + pathFromContextRoot; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy