001
014
015 package com.liferay.portlet;
016
017 import com.liferay.portal.kernel.portlet.LiferayPortletURL;
018
019 import javax.servlet.http.HttpServletRequest;
020
021
024 public class PortletURLFactoryUtil {
025
026 public static LiferayPortletURL create(
027 HttpServletRequest request, String portletName, long plid,
028 String lifecycle) {
029
030 return getPortletURLFactory().create(
031 request, portletName, plid, lifecycle);
032 }
033
034 public static PortletURLFactory getPortletURLFactory() {
035 return _portletURLFactory;
036 }
037
038 public void setPortletURLFactory(PortletURLFactory portletURLFactory) {
039 _portletURLFactory = portletURLFactory;
040 }
041
042 private static PortletURLFactory _portletURLFactory;
043
044 }