KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > blandware > atleap > webapp > action > core > contentLocale > ViewContentLocaleAction


1 /*
2  * Copyright 2004 Blandware (http://www.blandware.com)
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */

16 package com.blandware.atleap.webapp.action.core.contentLocale;
17
18 import com.blandware.atleap.model.core.ContentLocale;
19 import com.blandware.atleap.webapp.action.core.BaseAction;
20 import com.blandware.atleap.webapp.form.ContentLocaleForm;
21 import com.blandware.atleap.webapp.util.core.LocaleUtil;
22 import com.blandware.atleap.webapp.util.core.WebappConstants;
23 import org.apache.struts.action.ActionForm;
24 import org.apache.struts.action.ActionForward;
25 import org.apache.struts.action.ActionMapping;
26 import org.apache.struts.action.ActionMessage;
27 import org.apache.struts.action.ActionMessages;
28
29 import javax.servlet.http.HttpServletRequest JavaDoc;
30 import javax.servlet.http.HttpServletResponse JavaDoc;
31 import java.util.List JavaDoc;
32
33 /**
34  * <p>Exposes bean to request to view its properties on JSP page (content locale
35  * is to be viewed)
36  * </p>
37  * <p><a HREF="ViewContentLocaleAction.java.htm"><i>View Source</i></a></p>
38  * <p/>
39  *
40  * @author Sergey Zubtcovskii <a HREF="mailto:sergey.zubtcovskii@blandware.com">&lt;sergey.zubtcovskii@blandware.com&gt;</a>
41  * @version $Revision: 1.13 $ $Date: 2006/03/10 17:10:20 $
42  * @struts.action path="/core/contentLocale/view"
43  * name="contentLocaleForm"
44  * scope="request"
45  * validate="false"
46  * roles="core-contentLocale-view"
47  * @struts.action-forward name="listContentLocales"
48  * path="/core/contentLocale/list.do"
49  * redirect="true"
50  * @struts.action-forward name="viewContentLocale"
51  * path=".core.contentLocale.view"
52  */

53 public final class ViewContentLocaleAction extends BaseAction {
54     /**
55      * @param mapping The ActionMapping used to select this instance
56      * @param form The optional ActionForm bean for this request (if any)
57      * @param request The HTTP request we are proceeding
58      * @param response The HTTP response we are creating
59      * @return an ActionForward instance describing where and how
60      * control should be forwarded, or null if response
61      * has already been completed
62      */

63     public ActionForward execute(ActionMapping mapping, ActionForm form,
64                                  HttpServletRequest JavaDoc request, HttpServletResponse JavaDoc response) throws Exception JavaDoc {
65         ContentLocaleForm contentLocaleForm = (ContentLocaleForm) form;
66         String JavaDoc contentLocaleIdentifier = null;
67         if ( contentLocaleForm.getIdentifier() != null ) {
68             contentLocaleIdentifier = contentLocaleForm.getIdentifier();
69         } else {
70             if ( log.isWarnEnabled() ) {
71                 log.warn("Missing content locale identifier. Returning to list...");
72             }
73             return mapping.findForward("listContentLocales");
74         }
75
76         ContentLocale contentLocale = LocaleUtil.getInstance(servlet.getServletContext()).retrieveContentLocale(contentLocaleIdentifier);
77         if ( contentLocale == null ) {
78             // content locale not found. it might be deleted by someone else
79
ActionMessages errors = new ActionMessages();
80             errors.add("contentLocaleNotFound", new ActionMessage("core.contentLocale.errors.notFound"));
81             saveErrors(request, errors);
82             return mapping.findForward("listContentLocales");
83         }
84
85         // get list of all existent locales
86
List JavaDoc contentLocales = LocaleUtil.getInstance(servlet.getServletContext()).getAvailableLocales();
87         request.getSession().setAttribute(WebappConstants.CONTENT_LOCALES_COLLECTION_KEY, contentLocales);
88
89         request.setAttribute("contentLocale", contentLocale);
90         return mapping.findForward("viewContentLocale");
91     }
92 }
Popular Tags