Interface SignatureOrBuilder

All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
All Known Implementing Classes:
Signature, Signature.Builder

@Generated @Deprecated public interface SignatureOrBuilder extends com.google.protobuf.MessageLiteOrBuilder
Deprecated.
  • Method Summary

    Modifier and Type
    Method
    Description
    com.google.protobuf.ByteString
    Deprecated.
    * Smart contract virtual signature (always length zero).
    com.google.protobuf.ByteString
    Deprecated.
    * ECDSA p-384 signature bytes.
    com.google.protobuf.ByteString
    Deprecated.
    * Ed25519 signature bytes.
    com.google.protobuf.ByteString
    Deprecated.
    * RSA-3072 signature bytes.
    Deprecated.
     
    Deprecated.
    * A list of M signatures, each corresponding to a Key in a KeyList of the same length.
    Deprecated.
    * A list of signatures for a single N-of-M threshold Key.
    boolean
    Deprecated.
    * Smart contract virtual signature (always length zero).
    boolean
    Deprecated.
    * ECDSA p-384 signature bytes.
    boolean
    Deprecated.
    * Ed25519 signature bytes.
    boolean
    Deprecated.
    * RSA-3072 signature bytes.
    boolean
    Deprecated.
    * A list of M signatures, each corresponding to a Key in a KeyList of the same length.
    boolean
    Deprecated.
    * A list of signatures for a single N-of-M threshold Key.

    Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

    getDefaultInstanceForType, isInitialized
  • Method Details

    • hasContract

      boolean hasContract()
      Deprecated.
       *
       Smart contract virtual signature (always length zero).
       
      bytes contract = 1;
      Returns:
      Whether the contract field is set.
    • getContract

      com.google.protobuf.ByteString getContract()
      Deprecated.
       *
       Smart contract virtual signature (always length zero).
       
      bytes contract = 1;
      Returns:
      The contract.
    • hasEd25519

      boolean hasEd25519()
      Deprecated.
       *
       Ed25519 signature bytes.
       
      bytes ed25519 = 2;
      Returns:
      Whether the ed25519 field is set.
    • getEd25519

      com.google.protobuf.ByteString getEd25519()
      Deprecated.
       *
       Ed25519 signature bytes.
       
      bytes ed25519 = 2;
      Returns:
      The ed25519.
    • hasRSA3072

      boolean hasRSA3072()
      Deprecated.
       *
       RSA-3072 signature bytes.
       
      bytes RSA_3072 = 3;
      Returns:
      Whether the rSA3072 field is set.
    • getRSA3072

      com.google.protobuf.ByteString getRSA3072()
      Deprecated.
       *
       RSA-3072 signature bytes.
       
      bytes RSA_3072 = 3;
      Returns:
      The rSA3072.
    • hasECDSA384

      boolean hasECDSA384()
      Deprecated.
       *
       ECDSA p-384 signature bytes.
       
      bytes ECDSA_384 = 4;
      Returns:
      Whether the eCDSA384 field is set.
    • getECDSA384

      com.google.protobuf.ByteString getECDSA384()
      Deprecated.
       *
       ECDSA p-384 signature bytes.
       
      bytes ECDSA_384 = 4;
      Returns:
      The eCDSA384.
    • hasThresholdSignature

      boolean hasThresholdSignature()
      Deprecated.
       *
       A list of signatures for a single N-of-M threshold Key. This must be
       a list of exactly M signatures, at least N of which are non-null.
       
      .proto.ThresholdSignature thresholdSignature = 5;
      Returns:
      Whether the thresholdSignature field is set.
    • getThresholdSignature

      ThresholdSignature getThresholdSignature()
      Deprecated.
       *
       A list of signatures for a single N-of-M threshold Key. This must be
       a list of exactly M signatures, at least N of which are non-null.
       
      .proto.ThresholdSignature thresholdSignature = 5;
      Returns:
      The thresholdSignature.
    • hasSignatureList

      boolean hasSignatureList()
      Deprecated.
       *
       A list of M signatures, each corresponding to a Key in a KeyList
       of the same length.
       
      .proto.SignatureList signatureList = 6;
      Returns:
      Whether the signatureList field is set.
    • getSignatureList

      SignatureList getSignatureList()
      Deprecated.
       *
       A list of M signatures, each corresponding to a Key in a KeyList
       of the same length.
       
      .proto.SignatureList signatureList = 6;
      Returns:
      The signatureList.
    • getSignatureCase

      Signature.SignatureCase getSignatureCase()
      Deprecated.