1 48 49 50 package com.caucho.portal.generic; 51 52 import javax.portlet.ActionRequest; 53 import javax.portlet.ActionResponse; 54 import javax.portlet.Portlet; 55 import javax.portlet.PortletException; 56 import java.io.IOException ; 57 58 60 public interface Action 61 { 62 65 public boolean isTarget(); 66 67 public void processAction(Portlet portlet) 68 throws PortletException, IOException ; 69 70 public Window getWindow(); 71 72 public String getNamespace(); 73 74 public ActionRequest getActionRequest(); 75 76 public ActionResponse getActionResponse(); 77 78 public void finish() 79 throws PortletException, IOException ; 80 81 } 82 | Popular Tags |