Package gov.nist.scap.xccdf.util

Examples of gov.nist.scap.xccdf.util.ApplicationProperties


        + "s%3$s", rule.getId(), "", result.toUpperCase());
    System.out.println(output);
  }

  private static void logBuildProperties() {
        ApplicationProperties applicationProperties = new ApplicationProperties(XCCDFInterpreter.class);
        log.info(new StringBuilder()
      .append(applicationProperties.getApplicationName())
      .append(" v")
      .append(applicationProperties.getBuildVersion())
      .append(" build ")
      .append(applicationProperties.getBuildNumber())
      .toString());
        outputOsProperties();
  }
View Full Code Here

TOP

Related Classes of gov.nist.scap.xccdf.util.ApplicationProperties

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.