
org.zaproxy.zap.extension.XmlReporterExtension Maven / Gradle / Ivy
Go to download
The Zed Attack Proxy (ZAP) is an easy to use integrated penetration testing tool for finding vulnerabilities in web applications. It is designed to be used by people with a wide range of security experience and as such is ideal for developers and functional testers who are new to penetration testing. ZAP provides automated scanners as well as a set of tools that allow you to find security vulnerabilities manually.
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package org.zaproxy.zap.extension;
import org.parosproxy.paros.model.SiteNode;
/**
* This interface should be implemented by extensions that wish to write data to
* XML report. getXML() method should return well-formed XML fragment (without the
* {@code } declaration) . This method is called by ReportLastScan class
* @author alla
*/
public interface XmlReporterExtension {
String getXml(SiteNode site);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy