001    /**
002     * Copyright (c) 2000-2013 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.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 actionMapping, ActionForm actionForm,
036                            PortletConfig portletConfig, ResourceRequest resourceRequest,
037                            ResourceResponse resourceResponse)
038                    throws Exception {
039    
040                    PortletContext portletContext = portletConfig.getPortletContext();
041    
042                    PortletRequestDispatcher portletRequestDispatcher =
043                            portletContext.getRequestDispatcher(_SITE_URL_LAYOUTS_JSP);
044    
045                    portletRequestDispatcher.include(resourceRequest, resourceResponse);
046            }
047    
048            private static final String _SITE_URL_LAYOUTS_JSP =
049                    "/html/portlet/mobile_device_rules/action/site_url_layouts.jsp";
050    
051    }