Package org.zaproxy.zap.view.HttpPanelManager

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


    manager.addRequestComponentFactory(componentFactory);
    manager.addResponseComponentFactory(componentFactory);

    // use same factory for request & response,
    // as Hex payloads are accessed the same way
    HttpPanelViewFactory viewFactory = new WebSocketHexViewFactory();
    manager.addRequestViewFactory(WebSocketComponent.NAME, viewFactory);
    manager.addResponseViewFactory(WebSocketComponent.NAME, viewFactory);
   
    // add the default Hex view for binary-opcode messages
    HttpPanelDefaultViewSelectorFactory viewSelectorFactory = new HexDefaultViewSelectorFactory();
View Full Code Here

TOP

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

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.