Sha256: 2acc4af91af63505135f8a4d6bb279fa7598ecfb3b04d4805115a5917943ceba
Contents?: true
Size: 1011 Bytes
Versions: 8
Compression:
Stored size: 1011 Bytes
Contents
package burp; /* * @(#)IHttpService.java * * Copyright PortSwigger Ltd. All rights reserved. * * This code may be used to extend the functionality of Burp Suite Free Edition * and Burp Suite Professional, provided that this usage does not violate the * license terms for those products. */ /** * This interface is used to provide details about an HTTP service, to which * HTTP requests can be sent. */ public interface IHttpService { /** * This method returns the hostname or IP address for the service. * * @return The hostname or IP address for the service. */ String getHost(); /** * This method returns the port number for the service. * * @return The port number for the service. */ int getPort(); /** * This method returns the protocol for the service. * * @return The protocol for the service. Expected values are "http" or * "https". */ String getProtocol(); }
Version data entries
8 entries across 8 versions & 1 rubygems