Package com.denimgroup.threadfix.importer.interop

Examples of com.denimgroup.threadfix.importer.interop.ChannelImporter.parseInput()


    log.info("Processing file " + fileName + " on channel "
        + applicationChannel.getChannelType().getName() + ".");
 
    importer.setFileName(fileName);
   
    Scan scan = importer.parseInput();
   
    if (scan == null) {
      log.warn("The " + applicationChannel.getChannelType().getName()
          + " import failed for file " + fileName + ".");
      return null;
View Full Code Here


    public Scan getScan(ScannerType type, File inputFile) {
        ChannelImporter importer = getImporter(type);

        importer.setFileName(inputFile.getAbsolutePath());

        return importer.parseInput();
    }

    @Autowired
    protected ChannelVulnerabilityDao channelVulnerabilityDao;
    @Autowired
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.