1 38 package com.gargoylesoftware.htmlunit; 39 40 import java.io.IOException ; 41 import java.io.InputStream ; 42 import java.net.URL ; 43 import java.util.List ; 44 45 52 public interface WebResponse { 53 58 int getStatusCode(); 59 60 61 66 String getStatusMessage(); 67 68 69 74 String getContentType(); 75 76 77 82 String getContentAsString(); 83 84 85 91 InputStream getContentAsStream() 92 throws IOException ; 93 94 95 100 URL getUrl(); 101 102 103 108 List getResponseHeaders(); 109 110 111 117 String getResponseHeaderValue( final String headerName ); 118 119 120 124 long getLoadTimeInMilliSeconds(); 125 126 130 String getContentCharSet(); 131 132 136 byte[] getResponseBody(); 137 } 138 139 | Popular Tags |