Sha256: 2cafdd00a2579b317c051d80d484fc0083a7b336058d07813e5f88ab63c8eccf
Contents?: true
Size: 909 Bytes
Versions: 8
Compression:
Stored size: 909 Bytes
Contents
package burp; /* * @(#)ITempFile.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 hold details of a temporary file that has been * created via a call to * <code>IBurpExtenderCallbacks.saveToTempFile()</code>. * */ public interface ITempFile { /** * This method is used to retrieve the contents of the buffer that was saved * in the temporary file. * * @return The contents of the buffer that was saved in the temporary file. */ byte[] getBuffer(); /** * This method is used to permanently delete the temporary file when it is * no longer required. */ void delete(); }
Version data entries
8 entries across 8 versions & 1 rubygems