KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > exoplatform > services > portletcontainer > pci > PortletURLFactory


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. 2004
6  */

7 package org.exoplatform.services.portletcontainer.pci;
8
9 import javax.portlet.PortletURL;
10
11 /**
12  * @author Mestrallet Benjamin
13  * benjmestrallet@users.sourceforge.net
14  */

15 public interface PortletURLFactory {
16   
17   public static final String JavaDoc RENDER = "render";
18   public static final String JavaDoc ACTION = "action";
19
20   public PortletURL createPortletURL(String JavaDoc Type);
21
22 }
23
Popular Tags