Examples of RuleResultType


Examples of gov.nist.checklists.xccdf.x11.RuleResultType

    this.testResultData = testResultData;
  }

  @Override
  protected RuleResultType generateRuleResultBase(RuleResult result) {
    RuleResultType retval = testResultData.addNewRuleResult();

    Rule rule = result.getRule();

        // Attributes
    retval.setIdref(rule.getId());
    retval.setRole(RuleImpl.mapRole(rule.getRole()));
    retval.setSeverity(RuleImpl.mapSeverity(rule.getSeverity()));
    retval.setTime(Calendar.getInstance());

    Version version = rule.getVersion();
    if (version != null) {
      retval.setVersion(version.getValue());
    }

    retval.setWeight(rule.getWeight());

    for (Ident ident : rule.getIdents()) {
      IdentType node = retval.addNewIdent();
      node.setSystem(ident.getSystem().toString());
      node.setStringValue(ident.getValue());
    }

        // TODO: P5: support fix
View Full Code Here

Examples of gov.nist.checklists.xccdf.x12.RuleResultType

    this.testResultData = testResultData;
  }

  @Override
  protected RuleResultType generateRuleResultBase(RuleResult result) {
    RuleResultType retval = testResultData.addNewRuleResult();

    Rule rule = result.getRule();

        // Attributes
    retval.setIdref(rule.getId());
    retval.setRole(RuleImpl.mapRole(rule.getRole()));
    retval.setSeverity(RuleImpl.mapSeverity(rule.getSeverity()));
    retval.setTime(Calendar.getInstance());

    Version version = rule.getVersion();
    if (version != null) {
      retval.setVersion(version.getValue());
    }

    retval.setWeight(rule.getWeight());

    for (Ident ident : rule.getIdents()) {
      IdentType node = retval.addNewIdent();
      node.setSystem(ident.getSystem().toString());
      node.setStringValue(ident.getValue());
    }

        // TODO: P5: support fix
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.