Class SignedExchangeSignature


  • public class SignedExchangeSignature
    extends java.lang.Object
    Information about a signed exchange signature
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.util.List<java.lang.String> getCertificates()
      The encoded certificates.
      java.lang.String getCertSha256()
      The hex string of signed exchange signature cert sha256.
      java.lang.String getCertUrl()
      Signed exchange signature cert Url.
      MonotonicTime getDate()
      Signed exchange signature date.
      MonotonicTime getExpires()
      Signed exchange signature expires.
      java.lang.String getIntegrity()
      Signed exchange signature integrity.
      java.lang.String getLabel()
      Signed exchange signature label.
      java.lang.String getSignature()
      The hex string of signed exchange signature.
      java.lang.String getValidityUrl()
      Signed exchange signature validity Url.
      void setCertificates​(java.util.List<java.lang.String> certificates)
      The encoded certificates.
      void setCertSha256​(java.lang.String certSha256)
      The hex string of signed exchange signature cert sha256.
      void setCertUrl​(java.lang.String certUrl)
      Signed exchange signature cert Url.
      void setDate​(MonotonicTime date)
      Signed exchange signature date.
      void setExpires​(MonotonicTime expires)
      Signed exchange signature expires.
      void setIntegrity​(java.lang.String integrity)
      Signed exchange signature integrity.
      void setLabel​(java.lang.String label)
      Signed exchange signature label.
      void setSignature​(java.lang.String signature)
      The hex string of signed exchange signature.
      void setValidityUrl​(java.lang.String validityUrl)
      Signed exchange signature validity Url.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • getLabel

        public java.lang.String getLabel()
        Signed exchange signature label.
      • setLabel

        public void setLabel​(java.lang.String label)
        Signed exchange signature label.
      • getSignature

        public java.lang.String getSignature()
        The hex string of signed exchange signature.
      • setSignature

        public void setSignature​(java.lang.String signature)
        The hex string of signed exchange signature.
      • getIntegrity

        public java.lang.String getIntegrity()
        Signed exchange signature integrity.
      • setIntegrity

        public void setIntegrity​(java.lang.String integrity)
        Signed exchange signature integrity.
      • getCertUrl

        public java.lang.String getCertUrl()
        Signed exchange signature cert Url.
      • setCertUrl

        public void setCertUrl​(java.lang.String certUrl)
        Signed exchange signature cert Url.
      • getCertSha256

        public java.lang.String getCertSha256()
        The hex string of signed exchange signature cert sha256.
      • setCertSha256

        public void setCertSha256​(java.lang.String certSha256)
        The hex string of signed exchange signature cert sha256.
      • getValidityUrl

        public java.lang.String getValidityUrl()
        Signed exchange signature validity Url.
      • setValidityUrl

        public void setValidityUrl​(java.lang.String validityUrl)
        Signed exchange signature validity Url.
      • getDate

        public MonotonicTime getDate()
        Signed exchange signature date.
      • setDate

        public void setDate​(MonotonicTime date)
        Signed exchange signature date.
      • getExpires

        public MonotonicTime getExpires()
        Signed exchange signature expires.
      • setExpires

        public void setExpires​(MonotonicTime expires)
        Signed exchange signature expires.
      • getCertificates

        public java.util.List<java.lang.String> getCertificates()
        The encoded certificates.
      • setCertificates

        public void setCertificates​(java.util.List<java.lang.String> certificates)
        The encoded certificates.