Sha256: 2b3cb2f34e9458ddb06690e5f31f953646e1be5a4b3f69f78f6d06d984f4c26f
Contents?: true
Size: 867 Bytes
Versions: 8
Compression:
Stored size: 867 Bytes
Contents
package burp; /* * @(#)IHttpRequestResponsePersisted.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 for an * <code>IHttpRequestResponse</code> object whose request and response messages * have been saved to temporary files using * <code>IBurpExtenderCallbacks.saveBuffersToTempFiles()</code>. */ public interface IHttpRequestResponsePersisted extends IHttpRequestResponse { /** * This method is used to permanently delete the saved temporary files. It * will no longer be possible to retrieve the request or response for this * item. */ void deleteTempFiles(); }
Version data entries
8 entries across 8 versions & 1 rubygems