1 6 7 package javax.portlet; 8 9 10 41 public interface Portlet 42 { 43 44 45 73 74 public void init(PortletConfig config) throws PortletException; 75 76 77 78 79 115 public void processAction (ActionRequest request, ActionResponse response) 116 throws PortletException, java.io.IOException ; 117 118 119 120 139 140 public void render (RenderRequest request, RenderResponse response) 141 throws PortletException, java.io.IOException ; 142 143 144 163 164 public void destroy(); 165 } 166 | Popular Tags |