Package scap.check

Examples of scap.check.CheckResults


      }
    } else {
      dictionaries = Collections.emptyList();
    }

    CheckResults results = interpreter.processChecks();

    for (CPEDictionary dictionary : dictionaries) {
      handleCheckResults(results, dictionary);
    }
View Full Code Here


    MutableXCCDFResults xccdfResults = document.newXCCDFResults(xccdfResultContext, options);
    document.visit(new ProcessorXCCDFVisitorHandler(checkInterpreter,
        xccdfResults));

    CheckResults checkResults;
    if (checkInterpreter != null) {
      checkResults = checkInterpreter.processChecks();
    } else {
      checkResults = CheckResults.EMPTY_CHECK_RESULTS;
    }
View Full Code Here

TOP

Related Classes of scap.check.CheckResults

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.