forked from mwielgoszewski/jython-burp-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathITempFile.java
More file actions
executable file
·33 lines (31 loc) · 876 Bytes
/
ITempFile.java
File metadata and controls
executable file
·33 lines (31 loc) · 876 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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();
}