类 Proof


public class Proof extends Object
证明结构
  • 构造器详细资料

    • Proof

      public Proof()
    • Proof

      public Proof(String verificationMethod)
      证明结构
      参数:
      verificationMethod - 签名公钥
    • Proof

      public Proof(String type, String created, String proofPurpose, String verificationMethod)
      证明结构
      参数:
      type - 签名算法
      created - 签名时间
      proofPurpose - 签名目的
      verificationMethod - 签名公钥
    • Proof

      public Proof(String type, String created, String proofPurpose, String verificationMethod, String proofValue)
      证明结构
      参数:
      type - 签名算法
      created - 签名时间
      proofPurpose - 签名目的
      verificationMethod - 签名公钥
      proofValue - 签名值
  • 方法详细资料

    • getType

      public String getType()
    • setType

      public void setType(String type)
    • getCreated

      public String getCreated()
    • setCreated

      public void setCreated(String created)
    • getProofPurpose

      public String getProofPurpose()
    • setProofPurpose

      public void setProofPurpose(String proofPurpose)
    • getVerificationMethod

      public String getVerificationMethod()
    • setVerificationMethod

      public void setVerificationMethod(String verificationMethod)
    • getProofValue

      public String getProofValue()
    • setProofValue

      public void setProofValue(String proofValue)
    • getExcludedFields

      public List<String> getExcludedFields()
    • setExcludedFields

      public void setExcludedFields(List<String> excludedFields)
    • getSignedFields

      public List<String> getSignedFields()
    • setSignedFields

      public void setSignedFields(List<String> signedFields)
    • toString

      public String toString()
      覆盖:
      toString 在类中 Object