![JAR search and dependency download from the Maven repository](/logo.png)
org.apache.struts.actions.LocaleAction Maven / Gradle / Ivy
The newest version!
/*
* $Id: LocaleAction.java 471754 2006-11-06 14:55:09Z husted $
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.struts.actions;
import org.apache.commons.beanutils.PropertyUtils;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.apache.struts.Globals;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionForward;
import org.apache.struts.action.ActionMapping;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession;
import java.util.Locale;
/**
* Implementation of Action that changes the user's {@link
* java.util.Locale} and forwards to a page, based on request level parameters
* that are set (language, country, & page).
*/
public final class LocaleAction extends BaseAction {
/**
* Commons Logging instance.
*/
private Log log =
LogFactory.getFactory().getInstance(this.getClass().getName());
/**
* Change the user's {@link java.util.Locale} based on {@link
* ActionForm} properties.
This Action
looks for
* language
and country
properties on the given
* form, constructs an appropriate Locale object, and sets it as the
* Struts Locale for this user's session. Any ActionForm
,
* including a {@link org.apache.struts.action.DynaActionForm}, may be
* used.
If a page
property is also provided, then
* after setting the Locale, control is forwarded to that URI path.
* Otherwise, control is forwarded to "success".
*
* @param mapping The ActionMapping used to select this instance
* @param form The optional ActionForm bean for this request (if any)
* @param request The HTTP request we are processing
* @param response The HTTP response we are creating
* @return Action to forward to
* @throws Exception if an input/output error or servlet exception occurs
*/
public ActionForward execute(ActionMapping mapping, ActionForm form,
HttpServletRequest request, HttpServletResponse response)
throws Exception {
// Extract attributes we will need
HttpSession session = request.getSession();
Locale locale = getLocale(request);
String language = null;
String country = null;
String page = null;
try {
language =
(String) PropertyUtils.getSimpleProperty(form, "language");
country = (String) PropertyUtils.getSimpleProperty(form, "country");
page = (String) PropertyUtils.getSimpleProperty(form, "page");
} catch (Exception e) {
log.error(e.getMessage(), e);
}
boolean isLanguage = ((language != null) && (language.length() > 0));
boolean isCountry = ((country != null) && (country.length() > 0));
if ((isLanguage) && (isCountry)) {
locale = new java.util.Locale(language, country);
} else if (isLanguage) {
locale = new java.util.Locale(language, "");
}
session.setAttribute(Globals.LOCALE_KEY, locale);
if (null == page) {
return mapping.findForward("success");
} else {
return new ActionForward(page);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy