001    /**
002     * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
003     *
004     * The contents of this file are subject to the terms of the Liferay Enterprise
005     * Subscription License ("License"). You may not use this file except in
006     * compliance with the License. You can obtain a copy of the License by
007     * contacting Liferay, Inc. See the License for the specific language governing
008     * permissions and limitations under the License, including but not limited to
009     * distribution rights of the Software.
010     *
011     *
012     *
013     */
014    
015    package com.liferay.portlet.announcements.action;
016    
017    import com.liferay.portal.struts.PortletAction;
018    import com.liferay.portal.util.PortletKeys;
019    import com.liferay.portal.util.WebKeys;
020    
021    import javax.portlet.PortletConfig;
022    import javax.portlet.RenderRequest;
023    import javax.portlet.RenderResponse;
024    
025    import org.apache.struts.action.ActionForm;
026    import org.apache.struts.action.ActionForward;
027    import org.apache.struts.action.ActionMapping;
028    
029    /**
030     * @author Thiago Moreira
031     * @author Raymond Augé
032     */
033    public class ViewAction extends PortletAction {
034    
035            public ActionForward render(
036                            ActionMapping mapping, ActionForm form, PortletConfig portletConfig,
037                            RenderRequest renderRequest, RenderResponse renderResponse)
038                    throws Exception {
039    
040                    if (portletConfig.getPortletName().equals(PortletKeys.ALERTS)) {
041                            renderRequest.setAttribute(WebKeys.PORTLET_DECORATE, Boolean.FALSE);
042                    }
043    
044                    return mapping.findForward("portlet.announcements.view");
045            }
046    
047    }