KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > exoplatform > services > portletcontainer > test > portlet > PortletWithPortalAccess


1 package org.exoplatform.services.portletcontainer.test.portlet;
2
3 import java.io.IOException JavaDoc;
4 import javax.portlet.ActionRequest;
5 import javax.portlet.ActionResponse;
6 import javax.portlet.GenericPortlet;
7 import javax.portlet.PortletException;
8
9 /**
10  * Created by the Exo Development team.
11  * Author : Mestrallet Benjamin
12  * benjamin.mestrallet@exoplatform.com
13  */

14 public class PortletWithPortalAccess extends GenericPortlet{
15
16   public void processAction(ActionRequest actionRequest, ActionResponse actionResponse)
17       throws PortletException, IOException JavaDoc {
18     actionResponse.setRenderParameter("status", "Everything is ok");
19   }
20
21 }
22
Popular Tags