001    /**
002     * Copyright (c) 2000-2012 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.mobiledevicerules.action;
016    
017    import com.liferay.portal.struts.PortletAction;
018    
019    import javax.portlet.PortletConfig;
020    import javax.portlet.PortletContext;
021    import javax.portlet.PortletRequestDispatcher;
022    import javax.portlet.ResourceRequest;
023    import javax.portlet.ResourceResponse;
024    
025    import org.apache.struts.action.ActionForm;
026    import org.apache.struts.action.ActionMapping;
027    
028    /**
029     * @author Edward Han
030     */
031    public class SiteURLLayoutsAction extends PortletAction {
032    
033            @Override
034            public void serveResource(
035                            ActionMapping mapping, ActionForm form, PortletConfig portletConfig,
036                            ResourceRequest resourceRequest, ResourceResponse resourceResponse)
037                    throws Exception {
038    
039                    PortletContext portletContext = portletConfig.getPortletContext();
040    
041                    PortletRequestDispatcher portletRequestDispatcher =
042                            portletContext.getRequestDispatcher(_SITE_URL_LAYOUTS_JSP);
043    
044                    portletRequestDispatcher.include(resourceRequest, resourceResponse);
045            }
046    
047            private static final String _SITE_URL_LAYOUTS_JSP =
048                    "/html/portlet/mobile_device_rules/action/site_url_layouts.jsp";
049    
050    }