com.googlecode.mobilityrpc.protocol.protobuf
Interface ComponentRequestIdentifier.RequestIdentifierOrBuilder

All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
All Known Implementing Classes:
ComponentRequestIdentifier.RequestIdentifier, ComponentRequestIdentifier.RequestIdentifier.Builder
Enclosing class:
ComponentRequestIdentifier

public static interface ComponentRequestIdentifier.RequestIdentifierOrBuilder
extends com.google.protobuf.MessageOrBuilder


Method Summary
 ComponentUuid.UUID getRequestId()
          required .com.googlecode.mobilityrpc.protocol.protobuf.UUID request_id = 2;
 ComponentUuid.UUIDOrBuilder getRequestIdOrBuilder()
          required .com.googlecode.mobilityrpc.protocol.protobuf.UUID request_id = 2;
 String getRequestLabel()
          optional string request_label = 3 [default = "<no label>"];
 com.google.protobuf.ByteString getRequestLabelBytes()
          optional string request_label = 3 [default = "<no label>"];
 ComponentUuid.UUID getSessionId()
          required .com.googlecode.mobilityrpc.protocol.protobuf.UUID session_id = 1;
 ComponentUuid.UUIDOrBuilder getSessionIdOrBuilder()
          required .com.googlecode.mobilityrpc.protocol.protobuf.UUID session_id = 1;
 boolean hasRequestId()
          required .com.googlecode.mobilityrpc.protocol.protobuf.UUID request_id = 2;
 boolean hasRequestLabel()
          optional string request_label = 3 [default = "<no label>"];
 boolean hasSessionId()
          required .com.googlecode.mobilityrpc.protocol.protobuf.UUID session_id = 1;
 
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
 
Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder
isInitialized
 

Method Detail

hasSessionId

boolean hasSessionId()
required .com.googlecode.mobilityrpc.protocol.protobuf.UUID session_id = 1;
 A UUID which identifies the relevant class loader to use on remote machines
 for deserializing objects and caching classes
 This is usually generated as a UUID on the first/initiating client,
 but could be persistent/constant for some applications
 


getSessionId

ComponentUuid.UUID getSessionId()
required .com.googlecode.mobilityrpc.protocol.protobuf.UUID session_id = 1;
 A UUID which identifies the relevant class loader to use on remote machines
 for deserializing objects and caching classes
 This is usually generated as a UUID on the first/initiating client,
 but could be persistent/constant for some applications
 


getSessionIdOrBuilder

ComponentUuid.UUIDOrBuilder getSessionIdOrBuilder()
required .com.googlecode.mobilityrpc.protocol.protobuf.UUID session_id = 1;
 A UUID which identifies the relevant class loader to use on remote machines
 for deserializing objects and caching classes
 This is usually generated as a UUID on the first/initiating client,
 but could be persistent/constant for some applications
 


hasRequestId

boolean hasRequestId()
required .com.googlecode.mobilityrpc.protocol.protobuf.UUID request_id = 2;
 A UUID generated by the client for each request it sends, which will allows it
 to identify the relevant request object when the UUID is echoed back to the client
 by a remote machine in an execution response message on completion of the request
 


getRequestId

ComponentUuid.UUID getRequestId()
required .com.googlecode.mobilityrpc.protocol.protobuf.UUID request_id = 2;
 A UUID generated by the client for each request it sends, which will allows it
 to identify the relevant request object when the UUID is echoed back to the client
 by a remote machine in an execution response message on completion of the request
 


getRequestIdOrBuilder

ComponentUuid.UUIDOrBuilder getRequestIdOrBuilder()
required .com.googlecode.mobilityrpc.protocol.protobuf.UUID request_id = 2;
 A UUID generated by the client for each request it sends, which will allows it
 to identify the relevant request object when the UUID is echoed back to the client
 by a remote machine in an execution response message on completion of the request
 


hasRequestLabel

boolean hasRequestLabel()
optional string request_label = 3 [default = "<no label>"];
 An optional arbitrary string generated by the client which describes the execution request,
 for debugging purposes on both client and remote machine
 


getRequestLabel

String getRequestLabel()
optional string request_label = 3 [default = "<no label>"];
 An optional arbitrary string generated by the client which describes the execution request,
 for debugging purposes on both client and remote machine
 


getRequestLabelBytes

com.google.protobuf.ByteString getRequestLabelBytes()
optional string request_label = 3 [default = "<no label>"];
 An optional arbitrary string generated by the client which describes the execution request,
 for debugging purposes on both client and remote machine
 



Copyright © 2016. All rights reserved.