Package com.denimgroup.threadfix.data

Examples of com.denimgroup.threadfix.data.ScanImportStatus


  @Nonnull
    @Override
  public ScanCheckResultBean checkFile() {
        try (InputStream sampleFileInputStream = getSampleFileInputStream()) {

            ScanImportStatus returnValue = null;

            if (sampleFileInputStream == null) {
                log.error("Sample file input stream was null. Returning null.");
                return new ScanCheckResultBean(ScanImportStatus.WRONG_FORMAT_ERROR);
            }
View Full Code Here


        else if (findingCount < 1)
          return new ScanCheckResultBean(ScanImportStatus.EMPTY_SCAN_ERROR);

        testDate = getTestDate(indexHtml);

        ScanImportStatus scanImportStatus = checkTestDate();

        return new ScanCheckResultBean(scanImportStatus, testDate);

      } finally {
        deleteZipFile();
View Full Code Here

TOP

Related Classes of com.denimgroup.threadfix.data.ScanImportStatus

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.