Package com.intel.mtwilson.datatypes

Examples of com.intel.mtwilson.datatypes.AttestationReport


   */
  @Override
  public List<PcrLogReport> getFailureReportData(String hostName,ApiClient attestationService) throws Exception {
    log.info("DemoPortalServicesImpl.getFailureReportData >>");
   
      AttestationReport report;
      try {
        report = attestationService.getAttestationReport(new Hostname(hostName));
       
      } catch (Exception e) {
        log.error(e.getMessage());
         throw ConnectionUtil.handleException(e);
      }
   
    return report.getPcrLogs();
  }
View Full Code Here

TOP

Related Classes of com.intel.mtwilson.datatypes.AttestationReport

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.