1 5 6 13 package org.exoplatform.test.mocks.portlet; 14 15 import javax.portlet.*; 16 import java.io.IOException ; 17 import java.util.Map ; 18 19 public class MockActionResponse extends MockPortletResponse implements ActionResponse { 20 21 public void setWindowState(WindowState windowState) throws WindowStateException { 22 } 23 24 public void setPortletMode(PortletMode portletMode) throws PortletModeException { 25 } 26 27 public void sendRedirect(String s) throws IOException { 28 } 29 30 public void setRenderParameters(Map map) { 31 } 32 33 public void setRenderParameter(String s, String s1) { 34 } 35 36 public void setRenderParameter(String s, String [] strings) { 37 } 38 } 39 | Popular Tags |