001    /**
002     * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
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    }