Package org.zaproxy.zap.view.HttpPanelManager

Examples of org.zaproxy.zap.view.HttpPanelManager.HttpPanelComponentFactory


  private void initializeWebSocketsForWorkPanel() {
    // Add "HttpPanel" components and views.
    HttpPanelManager manager = HttpPanelManager.getInstance();
   
    // component factory for outgoing and incoming messages with Text view
    HttpPanelComponentFactory componentFactory = new WebSocketComponentFactory();
    manager.addRequestComponentFactory(componentFactory);
    manager.addResponseComponentFactory(componentFactory);

    // use same factory for request & response,
    // as Hex payloads are accessed the same way
View Full Code Here

TOP

Related Classes of org.zaproxy.zap.view.HttpPanelManager.HttpPanelComponentFactory

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.