1 16 package org.directwebremoting.extend; 17 18 import java.io.IOException ; 19 20 import javax.servlet.http.HttpServletRequest ; 21 import javax.servlet.http.HttpServletResponse ; 22 23 29 public interface Marshaller 30 { 31 40 Calls marshallInbound(HttpServletRequest request, HttpServletResponse response) throws IOException , ServerException; 41 42 49 void marshallOutbound(Replies replies, HttpServletRequest request, HttpServletResponse response) throws IOException ; 50 51 58 void marshallException(HttpServletRequest request, HttpServletResponse response, Exception ex) throws IOException ; 59 60 65 boolean isConvertable(Class paramType); 66 } 67 | Popular Tags |