1 17 18 package org.apache.geronimo.console.jmsmanager.handlers; 19 20 import java.io.IOException ; 21 22 import javax.portlet.ActionRequest; 23 import javax.portlet.ActionResponse; 24 import javax.portlet.PortletException; 25 26 public interface PortletResponseHandler { 27 28 public void processAction(ActionRequest request, ActionResponse response) 29 throws IOException , PortletException; 30 31 } 32 | Popular Tags |