1 5 6 13 package org.exoplatform.services.portletcontainer.test.portlet; 14 15 import javax.portlet.*; 16 import java.io.IOException ; 17 18 public class HP implements Portlet{ 19 20 public void init(PortletConfig portletConfig) throws PortletException { 21 } 22 23 public void processAction(ActionRequest actionRequest, ActionResponse actionResponse) throws PortletException, IOException { 24 System.out.println("TESSSSSSSSSSSSSSSSSSSSSSSSSSSSSSST"); 25 } 26 27 public void render(RenderRequest renderRequest, RenderResponse renderResponse) throws PortletException, IOException { 28 } 29 30 public void destroy() { 31 } 32 } 33 | Popular Tags |