Examples of XCCDFCheck


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

            if (checkType.isSetCheckContent()) {
              throw new ComplexCheckException(CheckedItem.Result.NOTCHECKED,
                  "In-line check content not supported");
            }

            XCCDFCheck check = RuleImpl.newCheck(document, checkType);
              addCheckingUnit(check);
            } else if (xmlObject instanceof ComplexCheckType) {
              ComplexCheck check = new ComplexCheckImpl(document, (ComplexCheckType)xmlObject);
              addCheckingUnit(check);
            }
View Full Code Here

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

            if (checkType.isSetCheckContent()) {
              throw new ComplexCheckException(CheckedItem.Result.NOTCHECKED,
                  "In-line check content not supported");
            }

            XCCDFCheck check = RuleImpl.newCheck(document, checkType);
              addCheckingUnit(check);
            } else if (xmlObject instanceof ComplexCheckType) {
              ComplexCheck check = new ComplexCheckImpl(document, (ComplexCheckType)xmlObject);
              addCheckingUnit(check);
            }
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.