Package gov.nist.scap.xccdf.check

Examples of gov.nist.scap.xccdf.check.DefaultXCCDFCheck


    }

    Set<ValueCheckExport> exports = getCheckExports(document, checkType);
    Set<CheckImport> imports = getCheckImports(document, checkType);

    DefaultXCCDFCheck check = new DefaultXCCDFCheck(document.getSourceContext(), checkType.getSystem(), checkContent, checkType.getSelector());
   
    check.setExports(exports);
    check.setImports(imports);
    check.setMultiCheck(false);
    check.setNegate(false);
    return check;
  }
View Full Code Here


    }

    Set<ValueCheckExport> exports = getCheckExports(document, checkType);
    Set<CheckImport> imports = getCheckImports(document, checkType);

    DefaultXCCDFCheck check = new DefaultXCCDFCheck(document.getSourceContext(), checkType.getSystem(), checkContent, checkType.getSelector());
    check.setExports(exports);
    check.setImports(imports);
    check.setMultiCheck(checkType.getMultiCheck());
    check.setNegate(checkType.getNegate());
    return check;
  }
View Full Code Here

TOP

Related Classes of gov.nist.scap.xccdf.check.DefaultXCCDFCheck

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.