Interface Rpc.GetRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Rpc.GetRequest,Rpc.GetRequest.Builder
- Enclosing class:
- Rpc
public static interface Rpc.GetRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetAttribute()* Name of the attribute.com.google.protobuf.ByteStringgetAttributeBytes()* Name of the attribute.java.lang.StringgetEntity()* Name of the entity.com.google.protobuf.ByteStringgetEntityBytes()* Name of the entity.java.lang.StringgetKey()* Key of the entity.com.google.protobuf.ByteStringgetKeyBytes()* Key of the entity.java.lang.StringgetTransactionId()* ID of transaction that is part of this request (if any).com.google.protobuf.ByteStringgetTransactionIdBytes()* ID of transaction that is part of this request (if any).-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getEntity
java.lang.String getEntity()
* Name of the entity.
string entity = 1;- Returns:
- The entity.
-
getEntityBytes
com.google.protobuf.ByteString getEntityBytes()
* Name of the entity.
string entity = 1;- Returns:
- The bytes for entity.
-
getKey
java.lang.String getKey()
* Key of the entity.
string key = 2;- Returns:
- The key.
-
getKeyBytes
com.google.protobuf.ByteString getKeyBytes()
* Key of the entity.
string key = 2;- Returns:
- The bytes for key.
-
getAttribute
java.lang.String getAttribute()
* Name of the attribute.
string attribute = 3;- Returns:
- The attribute.
-
getAttributeBytes
com.google.protobuf.ByteString getAttributeBytes()
* Name of the attribute.
string attribute = 3;- Returns:
- The bytes for attribute.
-
getTransactionId
java.lang.String getTransactionId()
* ID of transaction that is part of this request (if any). If empty, the request is not part of any ongoing transaction.
string transactionId = 4;- Returns:
- The transactionId.
-
getTransactionIdBytes
com.google.protobuf.ByteString getTransactionIdBytes()
* ID of transaction that is part of this request (if any). If empty, the request is not part of any ongoing transaction.
string transactionId = 4;- Returns:
- The bytes for transactionId.
-
-