Package scap.check

Examples of scap.check.CheckSystem


    // candidate list (in order). If the system given in the element's
    // @system attribute is supported by an available checking engine:
    List<XCCDFCheck> supportedChecks = new LinkedList<XCCDFCheck>();
    for (XCCDFCheck check : candidateChecks) {
      String system = check.getSystem();
      CheckSystem checkSystem = CheckSystemRegistry.lookupCheckSystem(system);
      if (checkSystem == null) {
        if (!unsupportedCheckSystems.contains(checkSystem)) {
          log.debug("unsupported check system " + system);
          unsupportedCheckSystems.add(system);
        }
View Full Code Here

TOP

Related Classes of scap.check.CheckSystem

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.