Sha256: 4ad1243a3a5c53ec759757bc49d0e5cc3cd8e7fd052d722d760c62aebcbc7031

Contents?: true

Size: 1.49 KB

Versions: 8

Compression:

Stored size: 1.49 KB

Contents

package burp;

/*
 * @(#)IMessageEditorTabFactory.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.
 */
/**
 * Extensions can implement this interface and then call
 * <code>IBurpExtenderCallbacks.registerMessageEditorTabFactory()</code> to
 * register a factory for custom message editor tabs. This allows extensions to
 * provide custom rendering or editing of HTTP messages, within Burp's own HTTP
 * editor.
 */
public interface IMessageEditorTabFactory
{
    /**
     * Burp will call this method once for each HTTP message editor, and the
     * factory should provide a new instance of an
     * <code>IMessageEditorTab</code> object.
     *
     * @param controller An
     * <code>IMessageEditorController</code> object, which the new tab can query
     * to retrieve details about the currently displayed message. This may be
     * <code>null</code> for extension-invoked message editors where the
     * extension has not provided an editor controller.
     * @param editable Indicates whether the hosting editor is editable or
     * read-only.
     * @return A new
     * <code>IMessageEditorTab</code> object for use within the message editor.
     */
    IMessageEditorTab createNewInstance(IMessageEditorController controller,
            boolean editable);
}

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
buby-1.6.0-java ext/burp_interfaces/burp/IMessageEditorTabFactory.java
buby-1.5.2-java ext/burp_interfaces/burp/IMessageEditorTabFactory.java
buby-1.5.1-java ext/burp_interfaces/burp/IMessageEditorTabFactory.java
buby-1.5.0-java ext/burp_interfaces/burp/IMessageEditorTabFactory.java
buby-1.5.0.pre4-java ext/burp_interfaces/burp/IMessageEditorTabFactory.java
buby-1.5.0.pre3-java ext/burp_interfaces/burp/IMessageEditorTabFactory.java
buby-1.5.0.pre2-java ext/burp_interfaces/burp/IMessageEditorTabFactory.java
buby-1.5.0.pre1-java ext/burp_interfaces/burp/IMessageEditorTabFactory.java