com.hedera.hashgraph.sdk.proto.TransactionOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdk-jdk7 Show documentation
Show all versions of sdk-jdk7 Show documentation
Hedera™ Hashgraph SDK for Java
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: transaction.proto
package com.hedera.hashgraph.sdk.proto;
public interface TransactionOrBuilder extends
// @@protoc_insertion_point(interface_extends:proto.Transaction)
com.google.protobuf.MessageLiteOrBuilder {
/**
*
**
* the body of the transaction, which needs to be signed
*
*
* .proto.TransactionBody body = 1 [deprecated = true];
* @deprecated proto.Transaction.body is deprecated.
* See transaction.proto;l=46
* @return Whether the body field is set.
*/
@java.lang.Deprecated boolean hasBody();
/**
*
**
* the body of the transaction, which needs to be signed
*
*
* .proto.TransactionBody body = 1 [deprecated = true];
* @deprecated proto.Transaction.body is deprecated.
* See transaction.proto;l=46
* @return The body.
*/
@java.lang.Deprecated com.hedera.hashgraph.sdk.proto.TransactionBody getBody();
/**
*
**
* The signatures on the body, to authorize the transaction; deprecated and to be succeeded by
* SignatureMap field
*
*
* .proto.SignatureList sigs = 2 [deprecated = true];
* @deprecated proto.Transaction.sigs is deprecated.
* See transaction.proto;l=52
* @return Whether the sigs field is set.
*/
@java.lang.Deprecated boolean hasSigs();
/**
*
**
* The signatures on the body, to authorize the transaction; deprecated and to be succeeded by
* SignatureMap field
*
*
* .proto.SignatureList sigs = 2 [deprecated = true];
* @deprecated proto.Transaction.sigs is deprecated.
* See transaction.proto;l=52
* @return The sigs.
*/
@java.lang.Deprecated com.hedera.hashgraph.sdk.proto.SignatureList getSigs();
/**
*
**
* The signatures on the body with the new format, to authorize the transaction
*
*
* .proto.SignatureMap sigMap = 3 [deprecated = true];
* @deprecated proto.Transaction.sigMap is deprecated.
* See transaction.proto;l=57
* @return Whether the sigMap field is set.
*/
@java.lang.Deprecated boolean hasSigMap();
/**
*
**
* The signatures on the body with the new format, to authorize the transaction
*
*
* .proto.SignatureMap sigMap = 3 [deprecated = true];
* @deprecated proto.Transaction.sigMap is deprecated.
* See transaction.proto;l=57
* @return The sigMap.
*/
@java.lang.Deprecated com.hedera.hashgraph.sdk.proto.SignatureMap getSigMap();
/**
*
**
* TransactionBody serialized into bytes, which needs to be signed
*
*
* bytes bodyBytes = 4 [deprecated = true];
* @deprecated proto.Transaction.bodyBytes is deprecated.
* See transaction.proto;l=62
* @return The bodyBytes.
*/
@java.lang.Deprecated com.google.protobuf.ByteString getBodyBytes();
/**
*
**
* SignedTransaction serialized into bytes
*
*
* bytes signedTransactionBytes = 5;
* @return The signedTransactionBytes.
*/
com.google.protobuf.ByteString getSignedTransactionBytes();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy