1 /*2 * Copyright 2001-2003 The eXo platform SARL All rights reserved.3 * Please look at license.txt in info directory for more license detail. 4 * 5 * Created on 13 janv. 20046 */7 package org.exoplatform.services.portletcontainer.pci;8 9 import javax.portlet.PortletURL;10 11 /**12 * @author Mestrallet Benjamin13 * benjmestrallet@users.sourceforge.net14 */15 public interface PortletURLFactory {16 17 public static final String RENDER = "render";18 public static final String ACTION = "action"; 19 20 public PortletURL createPortletURL(String Type);21 22 }23