Class PaymentProtocol.PkiVerificationData

  • Enclosing class:
    PaymentProtocol

    public static class PaymentProtocol.PkiVerificationData
    extends java.lang.Object
    Information about the X.509 signature's issuer and subject.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      java.lang.String displayName
      Display name of the payment requestor, could be a domain name, email address, legal name, etc
      java.security.PublicKey merchantSigningKey
      SSL public key that was used to sign.
      java.security.cert.TrustAnchor rootAuthority
      Object representing the CA that verified the merchant's ID
      java.lang.String rootAuthorityName
      String representing the display name of the CA that verified the merchant's ID
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Field Detail

      • displayName

        public final java.lang.String displayName
        Display name of the payment requestor, could be a domain name, email address, legal name, etc
      • merchantSigningKey

        public final java.security.PublicKey merchantSigningKey
        SSL public key that was used to sign.
      • rootAuthority

        public final java.security.cert.TrustAnchor rootAuthority
        Object representing the CA that verified the merchant's ID
      • rootAuthorityName

        public final java.lang.String rootAuthorityName
        String representing the display name of the CA that verified the merchant's ID
    • Method Detail

      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object