HaE For Java
This commit is contained in:
33
src/burp/ITempFile.java
Normal file
33
src/burp/ITempFile.java
Normal file
@@ -0,0 +1,33 @@
|
||||
package burp;
|
||||
|
||||
/*
|
||||
* @(#)ITempFile.java
|
||||
*
|
||||
* Copyright PortSwigger Ltd. All rights reserved.
|
||||
*
|
||||
* This code may be used to extend the functionality of Burp Suite Community 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 deprecated and no longer performs any action.
|
||||
*/
|
||||
@Deprecated
|
||||
void delete();
|
||||
}
|
||||
Reference in New Issue
Block a user