An object which handles the actual communication portion of page retrieval/submission. @author Mike Bowler @author Daniel Gredler @author Marc Guillemot @author Ahmed Ashour @author Ronald Brill
| 26 | * @author Ronald Brill |
| 27 | */ |
| 28 | public interface WebConnection extends AutoCloseable { |
| 29 | |
| 30 | /** |
| 31 | * Submits a request and retrieves a response. |
| 32 | * @param request the request |
| 33 | * @return the response to the request defined by the specified request |
| 34 | * @exception IOException if an IO error occurs |
| 35 | */ |
| 36 | WebResponse getResponse(WebRequest request) throws IOException; |
| 37 | |
| 38 | @Override |
| 39 | void close() throws IOException; |
| 40 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…