All extensions must implement this interface. Implementations must be called BurpExtender, in the package burp, must be declared public, and must provide a default (public, no-argument) constructor.
| 17 | * constructor. |
| 18 | */ |
| 19 | public interface IBurpExtender |
| 20 | { |
| 21 | /** |
| 22 | * This method is invoked when the extension is loaded. It registers an |
| 23 | * instance of the |
| 24 | * <code>IBurpExtenderCallbacks</code> interface, providing methods that may |
| 25 | * be invoked by the extension to perform various actions. |
| 26 | * |
| 27 | * @param callbacks An |
| 28 | * <code>IBurpExtenderCallbacks</code> object. |
| 29 | */ |
| 30 | void registerExtenderCallbacks(IBurpExtenderCallbacks callbacks); |
| 31 | } |
nothing calls this directly
no outgoing calls
no test coverage detected