Interface AttestationWorker

All Known Implementing Classes:
SecureBootWorker

public interface AttestationWorker
A worker to process and verify attestation results.
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    processRequest(org.apache.ibatis.session.SqlSession session, AttestationResult attestationResult)
    Process the attestation request of a given attestation result.
    boolean
    processVerification(org.apache.ibatis.session.SqlSession session, AttestationResult attestationResult)
    Process the attestation verification of a given attestation result.
  • Method Details

    • processRequest

      boolean processRequest(org.apache.ibatis.session.SqlSession session, AttestationResult attestationResult)
      Process the attestation request of a given attestation result.
      Parameters:
      session - the active mybatis database session
      attestationResult - the attestation result to process.
      Returns:
      true if the processing succeeded, false otherwise.
    • processVerification

      boolean processVerification(org.apache.ibatis.session.SqlSession session, AttestationResult attestationResult)
      Process the attestation verification of a given attestation result.
      Parameters:
      session - the active mybatis database session
      attestationResult - the attestation result to process.
      Returns:
      true if the processing succeeded, false otherwise.