1 28 29 package HTTPClient; 30 31 import java.io.IOException ; 32 33 79 80 public interface HTTPClientModule extends HTTPClientModuleConstants 81 { 82 107 public int requestHandler(Request request, Response[] response) 108 throws IOException , ModuleException; 109 110 111 122 public void responsePhase1Handler(Response response, RoRequest request) 123 throws IOException , ModuleException; 124 125 155 public int responsePhase2Handler(Response response, Request request) 156 throws IOException , ModuleException; 157 158 159 171 public void responsePhase3Handler(Response response, RoRequest request) 172 throws IOException , ModuleException; 173 174 175 193 public void trailerHandler(Response response, RoRequest request) 194 throws IOException , ModuleException; 195 } 196 197 | Popular Tags |