1 33 34 package net.myvietnam.mvncore.util; 35 36 import java.util.Locale ; 37 38 import javax.servlet.ServletRequest ; 39 40 import net.myvietnam.mvncore.MVNCoreGlobal; 41 import net.myvietnam.mvncore.web.GenericRequest; 42 43 public class I18nUtil { 44 45 public static void setLocaleInRequest(ServletRequest request, Locale locale) { 46 request.setAttribute(MVNCoreGlobal.MVNCORE_REQUEST_LOCALE, locale); 47 } 48 49 public static Locale getLocaleInRequest(ServletRequest request) { 50 return (Locale )request.getAttribute(MVNCoreGlobal.MVNCORE_REQUEST_LOCALE); 51 } 52 53 public static void setLocaleInRequest(GenericRequest request, Locale locale) { 54 request.setAttribute(MVNCoreGlobal.MVNCORE_REQUEST_LOCALE, locale); 55 } 56 57 public static Locale getLocaleInRequest(GenericRequest request) { 58 return (Locale )request.getAttribute(MVNCoreGlobal.MVNCORE_REQUEST_LOCALE); 59 } 60 61 } 62 | Popular Tags |