com.interface21.web.servlet.i18n
Class CookieLocaleResolver
java.lang.Object
|
+--com.interface21.web.servlet.i18n.CookieLocaleResolver
- All Implemented Interfaces:
- LocaleResolver
- public class CookieLocaleResolver
- extends java.lang.Object
- implements LocaleResolver
Implementation of LocaleResolver that uses a cookie sent back to the user
in case of a custom setting, with a fallback to the accept header locale.
This is especially useful for stateless applications without user sessions.
Custom controllers can thus override the user's locale by calling setLocale,
e.g. responding to a certain locale change request.
- Since:
- 27.02.2003
- Author:
- Juergen Hoeller
|
Method Summary |
int |
getCookieMaxAge()
|
java.lang.String |
getCookieName()
|
java.util.Locale |
resolveLocale(javax.servlet.http.HttpServletRequest request)
Resolve the current locale via the given request.
|
void |
setCookieMaxAge(int cookieMaxAge)
Use the given maximum age, specified in seconds, for locale cookies.
|
void |
setCookieName(java.lang.String cookieName)
Use the given name for locale cookies. |
void |
setLocale(javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response,
java.util.Locale locale)
Set the current locale to the given one. |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
LOCALE_REQUEST_ATTRIBUTE_NAME
public static final java.lang.String LOCALE_REQUEST_ATTRIBUTE_NAME
DEFAULT_COOKIE_NAME
public static final java.lang.String DEFAULT_COOKIE_NAME
DEFAULT_COOKIE_MAX_AGE
public static final int DEFAULT_COOKIE_MAX_AGE
CookieLocaleResolver
public CookieLocaleResolver()
setCookieName
public void setCookieName(java.lang.String cookieName)
- Use the given name for locale cookies.
getCookieName
public java.lang.String getCookieName()
setCookieMaxAge
public void setCookieMaxAge(int cookieMaxAge)
- Use the given maximum age, specified in seconds, for locale cookies.
Useful special value: -1 ... not persistent, deleted when client shuts down
getCookieMaxAge
public int getCookieMaxAge()
resolveLocale
public java.util.Locale resolveLocale(javax.servlet.http.HttpServletRequest request)
- Description copied from interface:
LocaleResolver
- Resolve the current locale via the given request.
Should return a default locale as fallback in any case.
- Specified by:
resolveLocale in interface LocaleResolver
- Following copied from interface:
com.interface21.web.servlet.LocaleResolver
- Parameters:
request - request to be used for resolution- Returns:
- the current locale
setLocale
public void setLocale(javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response,
java.util.Locale locale)
- Description copied from interface:
LocaleResolver
- Set the current locale to the given one.
- Specified by:
setLocale in interface LocaleResolver
- Following copied from interface:
com.interface21.web.servlet.LocaleResolver
- Parameters:
request - request to be used for locale modificationresponse - response to be used for locale modificationlocale - the new locale
Rod Johnson and Spring contributors 2001-2003.