Package gov.nist.scap.xccdf.document

Examples of gov.nist.scap.xccdf.document.Item


    Collection<? extends Item> items = benchmark.lookupCluster(idref);

    // begin MITRE
    if (items == null) {
    // end MITRE
      Item item = benchmark.lookupItem(idref);
      if (item == null) {
        throw (new ItemNotFoundException("item '" + idref
            + "' in select for Profile '" + profile.getId() + "'"));
      }
      // Do not check for requires and conflicts here. This operation
View Full Code Here

TOP

Related Classes of gov.nist.scap.xccdf.document.Item

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.