Sha256: f6ee48918297ae38ba7a9bfd610d95578ba1960803b9f9346d280fbc0b0e54ff
Contents?: true
Size: 650 Bytes
Versions: 9
Compression:
Stored size: 650 Bytes
Contents
package burp; import java.net.URL; public interface IHttpRequestResponse { public String getHost(); public int getPort(); public String getProtocol(); public void setHost(String host) throws Exception; public void setPort(int port) throws Exception; public void setProtocol(String protocol) throws Exception; public byte[] getRequest() throws Exception; public java.net.URL getUrl() throws Exception; public void setRequest(byte[] message) throws Exception; public byte[] getResponse() throws Exception; public void setResponse(byte[] message) throws Exception; public short getStatusCode() throws Exception; }
Version data entries
9 entries across 9 versions & 2 rubygems