2010-06-10 11:39:26 +02:00
|
|
|
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
|
|
|
// source: RemoteProtocol.proto
|
|
|
|
|
|
2010-10-26 12:49:25 +02:00
|
|
|
package akka.remote.protocol;
|
2010-06-10 11:39:26 +02:00
|
|
|
|
|
|
|
|
public final class RemoteProtocol {
|
|
|
|
|
private RemoteProtocol() {}
|
|
|
|
|
public static void registerAllExtensions(
|
|
|
|
|
com.google.protobuf.ExtensionRegistry registry) {
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public enum CommandType
|
|
|
|
|
implements com.google.protobuf.ProtocolMessageEnum {
|
|
|
|
|
SHUTDOWN(0, 1),
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public final int getNumber() { return value; }
|
|
|
|
|
|
|
|
|
|
public static CommandType valueOf(int value) {
|
|
|
|
|
switch (value) {
|
|
|
|
|
case 1: return SHUTDOWN;
|
|
|
|
|
default: return null;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static com.google.protobuf.Internal.EnumLiteMap<CommandType>
|
|
|
|
|
internalGetValueMap() {
|
|
|
|
|
return internalValueMap;
|
|
|
|
|
}
|
|
|
|
|
private static com.google.protobuf.Internal.EnumLiteMap<CommandType>
|
|
|
|
|
internalValueMap =
|
|
|
|
|
new com.google.protobuf.Internal.EnumLiteMap<CommandType>() {
|
|
|
|
|
public CommandType findValueByNumber(int number) {
|
|
|
|
|
return CommandType.valueOf(number)
|
|
|
|
|
; }
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
public final com.google.protobuf.Descriptors.EnumValueDescriptor
|
|
|
|
|
getValueDescriptor() {
|
|
|
|
|
return getDescriptor().getValues().get(index);
|
|
|
|
|
}
|
|
|
|
|
public final com.google.protobuf.Descriptors.EnumDescriptor
|
|
|
|
|
getDescriptorForType() {
|
|
|
|
|
return getDescriptor();
|
|
|
|
|
}
|
|
|
|
|
public static final com.google.protobuf.Descriptors.EnumDescriptor
|
|
|
|
|
getDescriptor() {
|
|
|
|
|
return akka.remote.protocol.RemoteProtocol.getDescriptor().getEnumTypes().get(0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static final CommandType[] VALUES = {
|
|
|
|
|
SHUTDOWN,
|
|
|
|
|
};
|
|
|
|
|
public static CommandType valueOf(
|
|
|
|
|
com.google.protobuf.Descriptors.EnumValueDescriptor desc) {
|
|
|
|
|
if (desc.getType() != getDescriptor()) {
|
|
|
|
|
throw new java.lang.IllegalArgumentException(
|
|
|
|
|
"EnumValueDescriptor is not for this type.");
|
|
|
|
|
}
|
|
|
|
|
return VALUES[desc.getIndex()];
|
|
|
|
|
}
|
|
|
|
|
private final int index;
|
|
|
|
|
private final int value;
|
|
|
|
|
private CommandType(int index, int value) {
|
|
|
|
|
this.index = index;
|
|
|
|
|
this.value = value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static {
|
|
|
|
|
akka.remote.protocol.RemoteProtocol.getDescriptor();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// @@protoc_insertion_point(enum_scope:CommandType)
|
|
|
|
|
}
|
|
|
|
|
|
2010-07-26 18:47:25 +02:00
|
|
|
public enum ActorType
|
|
|
|
|
implements com.google.protobuf.ProtocolMessageEnum {
|
|
|
|
|
SCALA_ACTOR(0, 1),
|
|
|
|
|
JAVA_ACTOR(1, 2),
|
|
|
|
|
TYPED_ACTOR(2, 3),
|
|
|
|
|
;
|
2010-09-06 21:07:27 +02:00
|
|
|
|
|
|
|
|
|
2010-07-26 18:47:25 +02:00
|
|
|
public final int getNumber() { return value; }
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-07-26 18:47:25 +02:00
|
|
|
public static ActorType valueOf(int value) {
|
|
|
|
|
switch (value) {
|
|
|
|
|
case 1: return SCALA_ACTOR;
|
|
|
|
|
case 2: return JAVA_ACTOR;
|
|
|
|
|
case 3: return TYPED_ACTOR;
|
|
|
|
|
default: return null;
|
|
|
|
|
}
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-07-26 18:47:25 +02:00
|
|
|
public static com.google.protobuf.Internal.EnumLiteMap<ActorType>
|
|
|
|
|
internalGetValueMap() {
|
|
|
|
|
return internalValueMap;
|
|
|
|
|
}
|
|
|
|
|
private static com.google.protobuf.Internal.EnumLiteMap<ActorType>
|
|
|
|
|
internalValueMap =
|
|
|
|
|
new com.google.protobuf.Internal.EnumLiteMap<ActorType>() {
|
|
|
|
|
public ActorType findValueByNumber(int number) {
|
|
|
|
|
return ActorType.valueOf(number)
|
|
|
|
|
; }
|
|
|
|
|
};
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-07-26 18:47:25 +02:00
|
|
|
public final com.google.protobuf.Descriptors.EnumValueDescriptor
|
|
|
|
|
getValueDescriptor() {
|
|
|
|
|
return getDescriptor().getValues().get(index);
|
|
|
|
|
}
|
|
|
|
|
public final com.google.protobuf.Descriptors.EnumDescriptor
|
|
|
|
|
getDescriptorForType() {
|
|
|
|
|
return getDescriptor();
|
|
|
|
|
}
|
|
|
|
|
public static final com.google.protobuf.Descriptors.EnumDescriptor
|
|
|
|
|
getDescriptor() {
|
2011-03-05 14:48:37 +01:00
|
|
|
return akka.remote.protocol.RemoteProtocol.getDescriptor().getEnumTypes().get(1);
|
2010-07-26 18:47:25 +02:00
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-07-26 18:47:25 +02:00
|
|
|
private static final ActorType[] VALUES = {
|
2010-09-06 21:07:27 +02:00
|
|
|
SCALA_ACTOR, JAVA_ACTOR, TYPED_ACTOR,
|
2010-07-26 18:47:25 +02:00
|
|
|
};
|
|
|
|
|
public static ActorType valueOf(
|
|
|
|
|
com.google.protobuf.Descriptors.EnumValueDescriptor desc) {
|
|
|
|
|
if (desc.getType() != getDescriptor()) {
|
|
|
|
|
throw new java.lang.IllegalArgumentException(
|
|
|
|
|
"EnumValueDescriptor is not for this type.");
|
|
|
|
|
}
|
|
|
|
|
return VALUES[desc.getIndex()];
|
|
|
|
|
}
|
|
|
|
|
private final int index;
|
|
|
|
|
private final int value;
|
|
|
|
|
private ActorType(int index, int value) {
|
|
|
|
|
this.index = index;
|
|
|
|
|
this.value = value;
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-07-26 18:47:25 +02:00
|
|
|
static {
|
2010-10-26 12:49:25 +02:00
|
|
|
akka.remote.protocol.RemoteProtocol.getDescriptor();
|
2010-07-26 18:47:25 +02:00
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-07-26 18:47:25 +02:00
|
|
|
// @@protoc_insertion_point(enum_scope:ActorType)
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-10 16:00:17 +02:00
|
|
|
public enum SerializationSchemeType
|
2010-06-10 11:39:26 +02:00
|
|
|
implements com.google.protobuf.ProtocolMessageEnum {
|
|
|
|
|
JAVA(0, 1),
|
|
|
|
|
SBINARY(1, 2),
|
|
|
|
|
SCALA_JSON(2, 3),
|
|
|
|
|
JAVA_JSON(3, 4),
|
|
|
|
|
PROTOBUF(4, 5),
|
|
|
|
|
;
|
2010-09-06 21:07:27 +02:00
|
|
|
|
|
|
|
|
|
2010-06-10 11:39:26 +02:00
|
|
|
public final int getNumber() { return value; }
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-10 16:00:17 +02:00
|
|
|
public static SerializationSchemeType valueOf(int value) {
|
2010-06-10 11:39:26 +02:00
|
|
|
switch (value) {
|
|
|
|
|
case 1: return JAVA;
|
|
|
|
|
case 2: return SBINARY;
|
|
|
|
|
case 3: return SCALA_JSON;
|
|
|
|
|
case 4: return JAVA_JSON;
|
|
|
|
|
case 5: return PROTOBUF;
|
|
|
|
|
default: return null;
|
|
|
|
|
}
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-10 16:00:17 +02:00
|
|
|
public static com.google.protobuf.Internal.EnumLiteMap<SerializationSchemeType>
|
2010-06-10 11:39:26 +02:00
|
|
|
internalGetValueMap() {
|
|
|
|
|
return internalValueMap;
|
|
|
|
|
}
|
2010-06-10 16:00:17 +02:00
|
|
|
private static com.google.protobuf.Internal.EnumLiteMap<SerializationSchemeType>
|
2010-06-10 11:39:26 +02:00
|
|
|
internalValueMap =
|
2010-06-10 16:00:17 +02:00
|
|
|
new com.google.protobuf.Internal.EnumLiteMap<SerializationSchemeType>() {
|
|
|
|
|
public SerializationSchemeType findValueByNumber(int number) {
|
|
|
|
|
return SerializationSchemeType.valueOf(number)
|
2010-06-10 11:39:26 +02:00
|
|
|
; }
|
|
|
|
|
};
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-10 11:39:26 +02:00
|
|
|
public final com.google.protobuf.Descriptors.EnumValueDescriptor
|
|
|
|
|
getValueDescriptor() {
|
|
|
|
|
return getDescriptor().getValues().get(index);
|
|
|
|
|
}
|
|
|
|
|
public final com.google.protobuf.Descriptors.EnumDescriptor
|
|
|
|
|
getDescriptorForType() {
|
|
|
|
|
return getDescriptor();
|
|
|
|
|
}
|
|
|
|
|
public static final com.google.protobuf.Descriptors.EnumDescriptor
|
|
|
|
|
getDescriptor() {
|
2011-03-05 14:48:37 +01:00
|
|
|
return akka.remote.protocol.RemoteProtocol.getDescriptor().getEnumTypes().get(2);
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-10 16:00:17 +02:00
|
|
|
private static final SerializationSchemeType[] VALUES = {
|
2010-09-06 21:07:27 +02:00
|
|
|
JAVA, SBINARY, SCALA_JSON, JAVA_JSON, PROTOBUF,
|
2010-06-10 11:39:26 +02:00
|
|
|
};
|
2010-06-10 16:00:17 +02:00
|
|
|
public static SerializationSchemeType valueOf(
|
2010-06-10 11:39:26 +02:00
|
|
|
com.google.protobuf.Descriptors.EnumValueDescriptor desc) {
|
|
|
|
|
if (desc.getType() != getDescriptor()) {
|
|
|
|
|
throw new java.lang.IllegalArgumentException(
|
|
|
|
|
"EnumValueDescriptor is not for this type.");
|
|
|
|
|
}
|
|
|
|
|
return VALUES[desc.getIndex()];
|
|
|
|
|
}
|
|
|
|
|
private final int index;
|
|
|
|
|
private final int value;
|
2010-06-10 16:00:17 +02:00
|
|
|
private SerializationSchemeType(int index, int value) {
|
2010-06-10 11:39:26 +02:00
|
|
|
this.index = index;
|
|
|
|
|
this.value = value;
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-10 11:39:26 +02:00
|
|
|
static {
|
2010-10-26 12:49:25 +02:00
|
|
|
akka.remote.protocol.RemoteProtocol.getDescriptor();
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-10 16:00:17 +02:00
|
|
|
// @@protoc_insertion_point(enum_scope:SerializationSchemeType)
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-10 16:00:17 +02:00
|
|
|
public enum LifeCycleType
|
2010-06-10 11:39:26 +02:00
|
|
|
implements com.google.protobuf.ProtocolMessageEnum {
|
|
|
|
|
PERMANENT(0, 1),
|
|
|
|
|
TEMPORARY(1, 2),
|
|
|
|
|
;
|
2010-09-06 21:07:27 +02:00
|
|
|
|
|
|
|
|
|
2010-06-10 11:39:26 +02:00
|
|
|
public final int getNumber() { return value; }
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-10 16:00:17 +02:00
|
|
|
public static LifeCycleType valueOf(int value) {
|
2010-06-10 11:39:26 +02:00
|
|
|
switch (value) {
|
|
|
|
|
case 1: return PERMANENT;
|
|
|
|
|
case 2: return TEMPORARY;
|
|
|
|
|
default: return null;
|
|
|
|
|
}
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-10 16:00:17 +02:00
|
|
|
public static com.google.protobuf.Internal.EnumLiteMap<LifeCycleType>
|
2010-06-10 11:39:26 +02:00
|
|
|
internalGetValueMap() {
|
|
|
|
|
return internalValueMap;
|
|
|
|
|
}
|
2010-06-10 16:00:17 +02:00
|
|
|
private static com.google.protobuf.Internal.EnumLiteMap<LifeCycleType>
|
2010-06-10 11:39:26 +02:00
|
|
|
internalValueMap =
|
2010-06-10 16:00:17 +02:00
|
|
|
new com.google.protobuf.Internal.EnumLiteMap<LifeCycleType>() {
|
|
|
|
|
public LifeCycleType findValueByNumber(int number) {
|
|
|
|
|
return LifeCycleType.valueOf(number)
|
2010-06-10 11:39:26 +02:00
|
|
|
; }
|
|
|
|
|
};
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-10 11:39:26 +02:00
|
|
|
public final com.google.protobuf.Descriptors.EnumValueDescriptor
|
|
|
|
|
getValueDescriptor() {
|
|
|
|
|
return getDescriptor().getValues().get(index);
|
|
|
|
|
}
|
|
|
|
|
public final com.google.protobuf.Descriptors.EnumDescriptor
|
|
|
|
|
getDescriptorForType() {
|
|
|
|
|
return getDescriptor();
|
|
|
|
|
}
|
|
|
|
|
public static final com.google.protobuf.Descriptors.EnumDescriptor
|
|
|
|
|
getDescriptor() {
|
2011-03-05 14:48:37 +01:00
|
|
|
return akka.remote.protocol.RemoteProtocol.getDescriptor().getEnumTypes().get(3);
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-10 16:00:17 +02:00
|
|
|
private static final LifeCycleType[] VALUES = {
|
2010-09-06 21:07:27 +02:00
|
|
|
PERMANENT, TEMPORARY,
|
2010-06-10 11:39:26 +02:00
|
|
|
};
|
2010-06-10 16:00:17 +02:00
|
|
|
public static LifeCycleType valueOf(
|
2010-06-10 11:39:26 +02:00
|
|
|
com.google.protobuf.Descriptors.EnumValueDescriptor desc) {
|
|
|
|
|
if (desc.getType() != getDescriptor()) {
|
|
|
|
|
throw new java.lang.IllegalArgumentException(
|
|
|
|
|
"EnumValueDescriptor is not for this type.");
|
|
|
|
|
}
|
|
|
|
|
return VALUES[desc.getIndex()];
|
|
|
|
|
}
|
|
|
|
|
private final int index;
|
|
|
|
|
private final int value;
|
2010-06-10 16:00:17 +02:00
|
|
|
private LifeCycleType(int index, int value) {
|
2010-06-10 11:39:26 +02:00
|
|
|
this.index = index;
|
|
|
|
|
this.value = value;
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-10 11:39:26 +02:00
|
|
|
static {
|
2010-10-26 12:49:25 +02:00
|
|
|
akka.remote.protocol.RemoteProtocol.getDescriptor();
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-10 16:00:17 +02:00
|
|
|
// @@protoc_insertion_point(enum_scope:LifeCycleType)
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
public static final class AkkaRemoteProtocol extends
|
2010-06-10 16:00:17 +02:00
|
|
|
com.google.protobuf.GeneratedMessage {
|
2011-03-05 14:48:37 +01:00
|
|
|
// Use AkkaRemoteProtocol.newBuilder() to construct.
|
|
|
|
|
private AkkaRemoteProtocol() {
|
2010-06-10 16:00:17 +02:00
|
|
|
initFields();
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
private AkkaRemoteProtocol(boolean noInit) {}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
private static final AkkaRemoteProtocol defaultInstance;
|
|
|
|
|
public static AkkaRemoteProtocol getDefaultInstance() {
|
2010-06-10 16:00:17 +02:00
|
|
|
return defaultInstance;
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
public AkkaRemoteProtocol getDefaultInstanceForType() {
|
2010-06-10 16:00:17 +02:00
|
|
|
return defaultInstance;
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-10 16:00:17 +02:00
|
|
|
public static final com.google.protobuf.Descriptors.Descriptor
|
|
|
|
|
getDescriptor() {
|
2011-03-05 14:48:37 +01:00
|
|
|
return akka.remote.protocol.RemoteProtocol.internal_static_AkkaRemoteProtocol_descriptor;
|
2010-06-10 16:00:17 +02:00
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-10 16:00:17 +02:00
|
|
|
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
|
|
|
|
|
internalGetFieldAccessorTable() {
|
2011-03-05 14:48:37 +01:00
|
|
|
return akka.remote.protocol.RemoteProtocol.internal_static_AkkaRemoteProtocol_fieldAccessorTable;
|
2010-06-10 16:00:17 +02:00
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
// optional .RemoteMessageProtocol message = 1;
|
|
|
|
|
public static final int MESSAGE_FIELD_NUMBER = 1;
|
|
|
|
|
private boolean hasMessage;
|
|
|
|
|
private akka.remote.protocol.RemoteProtocol.RemoteMessageProtocol message_;
|
|
|
|
|
public boolean hasMessage() { return hasMessage; }
|
|
|
|
|
public akka.remote.protocol.RemoteProtocol.RemoteMessageProtocol getMessage() { return message_; }
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
// optional .RemoteControlProtocol instruction = 2;
|
|
|
|
|
public static final int INSTRUCTION_FIELD_NUMBER = 2;
|
|
|
|
|
private boolean hasInstruction;
|
|
|
|
|
private akka.remote.protocol.RemoteProtocol.RemoteControlProtocol instruction_;
|
|
|
|
|
public boolean hasInstruction() { return hasInstruction; }
|
|
|
|
|
public akka.remote.protocol.RemoteProtocol.RemoteControlProtocol getInstruction() { return instruction_; }
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-10 16:00:17 +02:00
|
|
|
private void initFields() {
|
2011-03-05 14:48:37 +01:00
|
|
|
message_ = akka.remote.protocol.RemoteProtocol.RemoteMessageProtocol.getDefaultInstance();
|
|
|
|
|
instruction_ = akka.remote.protocol.RemoteProtocol.RemoteControlProtocol.getDefaultInstance();
|
2010-06-10 16:00:17 +02:00
|
|
|
}
|
|
|
|
|
public final boolean isInitialized() {
|
2011-03-05 14:48:37 +01:00
|
|
|
if (hasMessage()) {
|
|
|
|
|
if (!getMessage().isInitialized()) return false;
|
|
|
|
|
}
|
|
|
|
|
if (hasInstruction()) {
|
|
|
|
|
if (!getInstruction().isInitialized()) return false;
|
|
|
|
|
}
|
2010-06-10 16:00:17 +02:00
|
|
|
return true;
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-10 16:00:17 +02:00
|
|
|
public void writeTo(com.google.protobuf.CodedOutputStream output)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
getSerializedSize();
|
2011-03-05 14:48:37 +01:00
|
|
|
if (hasMessage()) {
|
|
|
|
|
output.writeMessage(1, getMessage());
|
2010-06-22 07:22:47 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
if (hasInstruction()) {
|
|
|
|
|
output.writeMessage(2, getInstruction());
|
2010-06-10 16:00:17 +02:00
|
|
|
}
|
|
|
|
|
getUnknownFields().writeTo(output);
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-10 16:00:17 +02:00
|
|
|
private int memoizedSerializedSize = -1;
|
|
|
|
|
public int getSerializedSize() {
|
|
|
|
|
int size = memoizedSerializedSize;
|
|
|
|
|
if (size != -1) return size;
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-10 16:00:17 +02:00
|
|
|
size = 0;
|
2011-03-05 14:48:37 +01:00
|
|
|
if (hasMessage()) {
|
2010-06-10 16:00:17 +02:00
|
|
|
size += com.google.protobuf.CodedOutputStream
|
2011-03-05 14:48:37 +01:00
|
|
|
.computeMessageSize(1, getMessage());
|
2010-06-22 07:22:47 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
if (hasInstruction()) {
|
2010-06-22 07:22:47 +02:00
|
|
|
size += com.google.protobuf.CodedOutputStream
|
2011-03-05 14:48:37 +01:00
|
|
|
.computeMessageSize(2, getInstruction());
|
2010-06-10 16:00:17 +02:00
|
|
|
}
|
|
|
|
|
size += getUnknownFields().getSerializedSize();
|
|
|
|
|
memoizedSerializedSize = size;
|
|
|
|
|
return size;
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.AkkaRemoteProtocol parseFrom(
|
2010-06-10 16:00:17 +02:00
|
|
|
com.google.protobuf.ByteString data)
|
|
|
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
|
|
|
return newBuilder().mergeFrom(data).buildParsed();
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.AkkaRemoteProtocol parseFrom(
|
2010-06-10 16:00:17 +02:00
|
|
|
com.google.protobuf.ByteString data,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
|
|
|
return newBuilder().mergeFrom(data, extensionRegistry)
|
|
|
|
|
.buildParsed();
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.AkkaRemoteProtocol parseFrom(byte[] data)
|
2010-06-10 16:00:17 +02:00
|
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
|
|
|
return newBuilder().mergeFrom(data).buildParsed();
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.AkkaRemoteProtocol parseFrom(
|
2010-06-10 16:00:17 +02:00
|
|
|
byte[] data,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
|
|
|
return newBuilder().mergeFrom(data, extensionRegistry)
|
|
|
|
|
.buildParsed();
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.AkkaRemoteProtocol parseFrom(java.io.InputStream input)
|
2010-06-10 16:00:17 +02:00
|
|
|
throws java.io.IOException {
|
|
|
|
|
return newBuilder().mergeFrom(input).buildParsed();
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.AkkaRemoteProtocol parseFrom(
|
2010-06-10 16:00:17 +02:00
|
|
|
java.io.InputStream input,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
return newBuilder().mergeFrom(input, extensionRegistry)
|
|
|
|
|
.buildParsed();
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.AkkaRemoteProtocol parseDelimitedFrom(java.io.InputStream input)
|
2010-06-10 16:00:17 +02:00
|
|
|
throws java.io.IOException {
|
|
|
|
|
Builder builder = newBuilder();
|
|
|
|
|
if (builder.mergeDelimitedFrom(input)) {
|
|
|
|
|
return builder.buildParsed();
|
|
|
|
|
} else {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.AkkaRemoteProtocol parseDelimitedFrom(
|
2010-06-10 16:00:17 +02:00
|
|
|
java.io.InputStream input,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
Builder builder = newBuilder();
|
|
|
|
|
if (builder.mergeDelimitedFrom(input, extensionRegistry)) {
|
|
|
|
|
return builder.buildParsed();
|
|
|
|
|
} else {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.AkkaRemoteProtocol parseFrom(
|
2010-06-10 16:00:17 +02:00
|
|
|
com.google.protobuf.CodedInputStream input)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
return newBuilder().mergeFrom(input).buildParsed();
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.AkkaRemoteProtocol parseFrom(
|
2010-06-10 16:00:17 +02:00
|
|
|
com.google.protobuf.CodedInputStream input,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
return newBuilder().mergeFrom(input, extensionRegistry)
|
|
|
|
|
.buildParsed();
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-10 16:00:17 +02:00
|
|
|
public static Builder newBuilder() { return Builder.create(); }
|
|
|
|
|
public Builder newBuilderForType() { return newBuilder(); }
|
2011-03-05 14:48:37 +01:00
|
|
|
public static Builder newBuilder(akka.remote.protocol.RemoteProtocol.AkkaRemoteProtocol prototype) {
|
2010-06-10 16:00:17 +02:00
|
|
|
return newBuilder().mergeFrom(prototype);
|
|
|
|
|
}
|
|
|
|
|
public Builder toBuilder() { return newBuilder(this); }
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-10 16:00:17 +02:00
|
|
|
public static final class Builder extends
|
|
|
|
|
com.google.protobuf.GeneratedMessage.Builder<Builder> {
|
2011-03-05 14:48:37 +01:00
|
|
|
private akka.remote.protocol.RemoteProtocol.AkkaRemoteProtocol result;
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
// Construct using akka.remote.protocol.RemoteProtocol.AkkaRemoteProtocol.newBuilder()
|
2010-06-10 16:00:17 +02:00
|
|
|
private Builder() {}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-10 16:00:17 +02:00
|
|
|
private static Builder create() {
|
|
|
|
|
Builder builder = new Builder();
|
2011-03-05 14:48:37 +01:00
|
|
|
builder.result = new akka.remote.protocol.RemoteProtocol.AkkaRemoteProtocol();
|
2010-06-10 16:00:17 +02:00
|
|
|
return builder;
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
protected akka.remote.protocol.RemoteProtocol.AkkaRemoteProtocol internalGetResult() {
|
2010-06-10 16:00:17 +02:00
|
|
|
return result;
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-10 16:00:17 +02:00
|
|
|
public Builder clear() {
|
|
|
|
|
if (result == null) {
|
|
|
|
|
throw new IllegalStateException(
|
|
|
|
|
"Cannot call clear() after build().");
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
result = new akka.remote.protocol.RemoteProtocol.AkkaRemoteProtocol();
|
2010-06-10 16:00:17 +02:00
|
|
|
return this;
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-10 16:00:17 +02:00
|
|
|
public Builder clone() {
|
|
|
|
|
return create().mergeFrom(result);
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-10 16:00:17 +02:00
|
|
|
public com.google.protobuf.Descriptors.Descriptor
|
|
|
|
|
getDescriptorForType() {
|
2011-03-05 14:48:37 +01:00
|
|
|
return akka.remote.protocol.RemoteProtocol.AkkaRemoteProtocol.getDescriptor();
|
2010-06-10 16:00:17 +02:00
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
public akka.remote.protocol.RemoteProtocol.AkkaRemoteProtocol getDefaultInstanceForType() {
|
|
|
|
|
return akka.remote.protocol.RemoteProtocol.AkkaRemoteProtocol.getDefaultInstance();
|
2010-06-10 16:00:17 +02:00
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-10 16:00:17 +02:00
|
|
|
public boolean isInitialized() {
|
|
|
|
|
return result.isInitialized();
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public akka.remote.protocol.RemoteProtocol.AkkaRemoteProtocol build() {
|
2010-06-10 16:00:17 +02:00
|
|
|
if (result != null && !isInitialized()) {
|
|
|
|
|
throw newUninitializedMessageException(result);
|
|
|
|
|
}
|
|
|
|
|
return buildPartial();
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
private akka.remote.protocol.RemoteProtocol.AkkaRemoteProtocol buildParsed()
|
2010-06-10 16:00:17 +02:00
|
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
|
|
|
if (!isInitialized()) {
|
|
|
|
|
throw newUninitializedMessageException(
|
|
|
|
|
result).asInvalidProtocolBufferException();
|
|
|
|
|
}
|
|
|
|
|
return buildPartial();
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
public akka.remote.protocol.RemoteProtocol.AkkaRemoteProtocol buildPartial() {
|
2010-06-10 16:00:17 +02:00
|
|
|
if (result == null) {
|
|
|
|
|
throw new IllegalStateException(
|
|
|
|
|
"build() has already been called on this Builder.");
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
akka.remote.protocol.RemoteProtocol.AkkaRemoteProtocol returnMe = result;
|
2010-06-10 16:00:17 +02:00
|
|
|
result = null;
|
|
|
|
|
return returnMe;
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-10 16:00:17 +02:00
|
|
|
public Builder mergeFrom(com.google.protobuf.Message other) {
|
2011-03-05 14:48:37 +01:00
|
|
|
if (other instanceof akka.remote.protocol.RemoteProtocol.AkkaRemoteProtocol) {
|
|
|
|
|
return mergeFrom((akka.remote.protocol.RemoteProtocol.AkkaRemoteProtocol)other);
|
2010-06-10 16:00:17 +02:00
|
|
|
} else {
|
|
|
|
|
super.mergeFrom(other);
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
public Builder mergeFrom(akka.remote.protocol.RemoteProtocol.AkkaRemoteProtocol other) {
|
|
|
|
|
if (other == akka.remote.protocol.RemoteProtocol.AkkaRemoteProtocol.getDefaultInstance()) return this;
|
|
|
|
|
if (other.hasMessage()) {
|
|
|
|
|
mergeMessage(other.getMessage());
|
2010-06-22 07:22:47 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
if (other.hasInstruction()) {
|
|
|
|
|
mergeInstruction(other.getInstruction());
|
2010-06-10 16:00:17 +02:00
|
|
|
}
|
|
|
|
|
this.mergeUnknownFields(other.getUnknownFields());
|
|
|
|
|
return this;
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-10 16:00:17 +02:00
|
|
|
public Builder mergeFrom(
|
|
|
|
|
com.google.protobuf.CodedInputStream input,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
com.google.protobuf.UnknownFieldSet.Builder unknownFields =
|
|
|
|
|
com.google.protobuf.UnknownFieldSet.newBuilder(
|
|
|
|
|
this.getUnknownFields());
|
|
|
|
|
while (true) {
|
|
|
|
|
int tag = input.readTag();
|
|
|
|
|
switch (tag) {
|
|
|
|
|
case 0:
|
|
|
|
|
this.setUnknownFields(unknownFields.build());
|
|
|
|
|
return this;
|
|
|
|
|
default: {
|
|
|
|
|
if (!parseUnknownField(input, unknownFields,
|
|
|
|
|
extensionRegistry, tag)) {
|
|
|
|
|
this.setUnknownFields(unknownFields.build());
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
2010-06-22 07:22:47 +02:00
|
|
|
case 10: {
|
2011-03-05 14:48:37 +01:00
|
|
|
akka.remote.protocol.RemoteProtocol.RemoteMessageProtocol.Builder subBuilder = akka.remote.protocol.RemoteProtocol.RemoteMessageProtocol.newBuilder();
|
|
|
|
|
if (hasMessage()) {
|
|
|
|
|
subBuilder.mergeFrom(getMessage());
|
|
|
|
|
}
|
|
|
|
|
input.readMessage(subBuilder, extensionRegistry);
|
|
|
|
|
setMessage(subBuilder.buildPartial());
|
2010-06-10 16:00:17 +02:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case 18: {
|
2011-03-05 14:48:37 +01:00
|
|
|
akka.remote.protocol.RemoteProtocol.RemoteControlProtocol.Builder subBuilder = akka.remote.protocol.RemoteProtocol.RemoteControlProtocol.newBuilder();
|
|
|
|
|
if (hasInstruction()) {
|
|
|
|
|
subBuilder.mergeFrom(getInstruction());
|
2010-06-22 07:22:47 +02:00
|
|
|
}
|
|
|
|
|
input.readMessage(subBuilder, extensionRegistry);
|
2011-03-05 14:48:37 +01:00
|
|
|
setInstruction(subBuilder.buildPartial());
|
2010-06-10 16:00:17 +02:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
|
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
// optional .RemoteMessageProtocol message = 1;
|
|
|
|
|
public boolean hasMessage() {
|
|
|
|
|
return result.hasMessage();
|
2010-06-10 16:00:17 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public akka.remote.protocol.RemoteProtocol.RemoteMessageProtocol getMessage() {
|
|
|
|
|
return result.getMessage();
|
2010-06-10 16:00:17 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public Builder setMessage(akka.remote.protocol.RemoteProtocol.RemoteMessageProtocol value) {
|
2010-06-10 16:00:17 +02:00
|
|
|
if (value == null) {
|
2011-03-05 14:48:37 +01:00
|
|
|
throw new NullPointerException();
|
|
|
|
|
}
|
|
|
|
|
result.hasMessage = true;
|
|
|
|
|
result.message_ = value;
|
2010-06-10 16:00:17 +02:00
|
|
|
return this;
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public Builder setMessage(akka.remote.protocol.RemoteProtocol.RemoteMessageProtocol.Builder builderForValue) {
|
|
|
|
|
result.hasMessage = true;
|
|
|
|
|
result.message_ = builderForValue.build();
|
2010-06-10 16:00:17 +02:00
|
|
|
return this;
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public Builder mergeMessage(akka.remote.protocol.RemoteProtocol.RemoteMessageProtocol value) {
|
|
|
|
|
if (result.hasMessage() &&
|
|
|
|
|
result.message_ != akka.remote.protocol.RemoteProtocol.RemoteMessageProtocol.getDefaultInstance()) {
|
|
|
|
|
result.message_ =
|
|
|
|
|
akka.remote.protocol.RemoteProtocol.RemoteMessageProtocol.newBuilder(result.message_).mergeFrom(value).buildPartial();
|
|
|
|
|
} else {
|
|
|
|
|
result.message_ = value;
|
|
|
|
|
}
|
|
|
|
|
result.hasMessage = true;
|
2010-06-10 16:00:17 +02:00
|
|
|
return this;
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public Builder clearMessage() {
|
|
|
|
|
result.hasMessage = false;
|
|
|
|
|
result.message_ = akka.remote.protocol.RemoteProtocol.RemoteMessageProtocol.getDefaultInstance();
|
2010-06-10 16:00:17 +02:00
|
|
|
return this;
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
// optional .RemoteControlProtocol instruction = 2;
|
|
|
|
|
public boolean hasInstruction() {
|
|
|
|
|
return result.hasInstruction();
|
2010-06-10 16:00:17 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public akka.remote.protocol.RemoteProtocol.RemoteControlProtocol getInstruction() {
|
|
|
|
|
return result.getInstruction();
|
2010-06-10 16:00:17 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public Builder setInstruction(akka.remote.protocol.RemoteProtocol.RemoteControlProtocol value) {
|
2010-06-10 16:00:17 +02:00
|
|
|
if (value == null) {
|
2010-06-22 07:22:47 +02:00
|
|
|
throw new NullPointerException();
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
result.hasInstruction = true;
|
|
|
|
|
result.instruction_ = value;
|
2010-06-22 07:22:47 +02:00
|
|
|
return this;
|
2010-06-10 16:00:17 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public Builder setInstruction(akka.remote.protocol.RemoteProtocol.RemoteControlProtocol.Builder builderForValue) {
|
|
|
|
|
result.hasInstruction = true;
|
|
|
|
|
result.instruction_ = builderForValue.build();
|
2010-06-22 07:22:47 +02:00
|
|
|
return this;
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public Builder mergeInstruction(akka.remote.protocol.RemoteProtocol.RemoteControlProtocol value) {
|
|
|
|
|
if (result.hasInstruction() &&
|
|
|
|
|
result.instruction_ != akka.remote.protocol.RemoteProtocol.RemoteControlProtocol.getDefaultInstance()) {
|
|
|
|
|
result.instruction_ =
|
|
|
|
|
akka.remote.protocol.RemoteProtocol.RemoteControlProtocol.newBuilder(result.instruction_).mergeFrom(value).buildPartial();
|
2010-06-22 07:22:47 +02:00
|
|
|
} else {
|
2011-03-05 14:48:37 +01:00
|
|
|
result.instruction_ = value;
|
2010-06-22 07:22:47 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
result.hasInstruction = true;
|
2010-06-22 07:22:47 +02:00
|
|
|
return this;
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public Builder clearInstruction() {
|
|
|
|
|
result.hasInstruction = false;
|
|
|
|
|
result.instruction_ = akka.remote.protocol.RemoteProtocol.RemoteControlProtocol.getDefaultInstance();
|
2010-06-10 16:00:17 +02:00
|
|
|
return this;
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
// @@protoc_insertion_point(builder_scope:AkkaRemoteProtocol)
|
2010-06-10 16:00:17 +02:00
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-10 16:00:17 +02:00
|
|
|
static {
|
2011-03-05 14:48:37 +01:00
|
|
|
defaultInstance = new AkkaRemoteProtocol(true);
|
2010-10-26 12:49:25 +02:00
|
|
|
akka.remote.protocol.RemoteProtocol.internalForceInit();
|
2010-06-10 16:00:17 +02:00
|
|
|
defaultInstance.initFields();
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
// @@protoc_insertion_point(class_scope:AkkaRemoteProtocol)
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
public static final class RemoteMessageProtocol extends
|
2010-09-17 09:56:36 +02:00
|
|
|
com.google.protobuf.GeneratedMessage {
|
2011-03-05 14:48:37 +01:00
|
|
|
// Use RemoteMessageProtocol.newBuilder() to construct.
|
|
|
|
|
private RemoteMessageProtocol() {
|
2010-09-17 09:56:36 +02:00
|
|
|
initFields();
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
private RemoteMessageProtocol(boolean noInit) {}
|
2010-09-17 09:56:36 +02:00
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
private static final RemoteMessageProtocol defaultInstance;
|
|
|
|
|
public static RemoteMessageProtocol getDefaultInstance() {
|
2010-09-17 09:56:36 +02:00
|
|
|
return defaultInstance;
|
|
|
|
|
}
|
|
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
public RemoteMessageProtocol getDefaultInstanceForType() {
|
2010-09-17 09:56:36 +02:00
|
|
|
return defaultInstance;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static final com.google.protobuf.Descriptors.Descriptor
|
|
|
|
|
getDescriptor() {
|
2011-03-05 14:48:37 +01:00
|
|
|
return akka.remote.protocol.RemoteProtocol.internal_static_RemoteMessageProtocol_descriptor;
|
2010-09-17 09:56:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
|
|
|
|
|
internalGetFieldAccessorTable() {
|
2011-03-05 14:48:37 +01:00
|
|
|
return akka.remote.protocol.RemoteProtocol.internal_static_RemoteMessageProtocol_fieldAccessorTable;
|
2010-09-17 09:56:36 +02:00
|
|
|
}
|
|
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
// required .UuidProtocol uuid = 1;
|
|
|
|
|
public static final int UUID_FIELD_NUMBER = 1;
|
|
|
|
|
private boolean hasUuid;
|
|
|
|
|
private akka.remote.protocol.RemoteProtocol.UuidProtocol uuid_;
|
|
|
|
|
public boolean hasUuid() { return hasUuid; }
|
|
|
|
|
public akka.remote.protocol.RemoteProtocol.UuidProtocol getUuid() { return uuid_; }
|
2010-09-17 09:56:36 +02:00
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
// required .ActorInfoProtocol actorInfo = 2;
|
|
|
|
|
public static final int ACTORINFO_FIELD_NUMBER = 2;
|
|
|
|
|
private boolean hasActorInfo;
|
|
|
|
|
private akka.remote.protocol.RemoteProtocol.ActorInfoProtocol actorInfo_;
|
|
|
|
|
public boolean hasActorInfo() { return hasActorInfo; }
|
|
|
|
|
public akka.remote.protocol.RemoteProtocol.ActorInfoProtocol getActorInfo() { return actorInfo_; }
|
|
|
|
|
|
|
|
|
|
// required bool oneWay = 3;
|
|
|
|
|
public static final int ONEWAY_FIELD_NUMBER = 3;
|
|
|
|
|
private boolean hasOneWay;
|
|
|
|
|
private boolean oneWay_ = false;
|
|
|
|
|
public boolean hasOneWay() { return hasOneWay; }
|
|
|
|
|
public boolean getOneWay() { return oneWay_; }
|
|
|
|
|
|
|
|
|
|
// optional .MessageProtocol message = 4;
|
|
|
|
|
public static final int MESSAGE_FIELD_NUMBER = 4;
|
|
|
|
|
private boolean hasMessage;
|
|
|
|
|
private akka.remote.protocol.RemoteProtocol.MessageProtocol message_;
|
|
|
|
|
public boolean hasMessage() { return hasMessage; }
|
|
|
|
|
public akka.remote.protocol.RemoteProtocol.MessageProtocol getMessage() { return message_; }
|
|
|
|
|
|
|
|
|
|
// optional .ExceptionProtocol exception = 5;
|
|
|
|
|
public static final int EXCEPTION_FIELD_NUMBER = 5;
|
|
|
|
|
private boolean hasException;
|
|
|
|
|
private akka.remote.protocol.RemoteProtocol.ExceptionProtocol exception_;
|
|
|
|
|
public boolean hasException() { return hasException; }
|
|
|
|
|
public akka.remote.protocol.RemoteProtocol.ExceptionProtocol getException() { return exception_; }
|
|
|
|
|
|
|
|
|
|
// optional .UuidProtocol supervisorUuid = 6;
|
|
|
|
|
public static final int SUPERVISORUUID_FIELD_NUMBER = 6;
|
|
|
|
|
private boolean hasSupervisorUuid;
|
|
|
|
|
private akka.remote.protocol.RemoteProtocol.UuidProtocol supervisorUuid_;
|
|
|
|
|
public boolean hasSupervisorUuid() { return hasSupervisorUuid; }
|
|
|
|
|
public akka.remote.protocol.RemoteProtocol.UuidProtocol getSupervisorUuid() { return supervisorUuid_; }
|
|
|
|
|
|
|
|
|
|
// optional .RemoteActorRefProtocol sender = 7;
|
|
|
|
|
public static final int SENDER_FIELD_NUMBER = 7;
|
|
|
|
|
private boolean hasSender;
|
|
|
|
|
private akka.remote.protocol.RemoteProtocol.RemoteActorRefProtocol sender_;
|
|
|
|
|
public boolean hasSender() { return hasSender; }
|
|
|
|
|
public akka.remote.protocol.RemoteProtocol.RemoteActorRefProtocol getSender() { return sender_; }
|
|
|
|
|
|
|
|
|
|
// repeated .MetadataEntryProtocol metadata = 8;
|
|
|
|
|
public static final int METADATA_FIELD_NUMBER = 8;
|
|
|
|
|
private java.util.List<akka.remote.protocol.RemoteProtocol.MetadataEntryProtocol> metadata_ =
|
|
|
|
|
java.util.Collections.emptyList();
|
|
|
|
|
public java.util.List<akka.remote.protocol.RemoteProtocol.MetadataEntryProtocol> getMetadataList() {
|
|
|
|
|
return metadata_;
|
|
|
|
|
}
|
|
|
|
|
public int getMetadataCount() { return metadata_.size(); }
|
|
|
|
|
public akka.remote.protocol.RemoteProtocol.MetadataEntryProtocol getMetadata(int index) {
|
|
|
|
|
return metadata_.get(index);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// optional string cookie = 9;
|
|
|
|
|
public static final int COOKIE_FIELD_NUMBER = 9;
|
|
|
|
|
private boolean hasCookie;
|
|
|
|
|
private java.lang.String cookie_ = "";
|
|
|
|
|
public boolean hasCookie() { return hasCookie; }
|
|
|
|
|
public java.lang.String getCookie() { return cookie_; }
|
2010-09-17 09:56:36 +02:00
|
|
|
|
|
|
|
|
private void initFields() {
|
2011-03-05 14:48:37 +01:00
|
|
|
uuid_ = akka.remote.protocol.RemoteProtocol.UuidProtocol.getDefaultInstance();
|
|
|
|
|
actorInfo_ = akka.remote.protocol.RemoteProtocol.ActorInfoProtocol.getDefaultInstance();
|
|
|
|
|
message_ = akka.remote.protocol.RemoteProtocol.MessageProtocol.getDefaultInstance();
|
|
|
|
|
exception_ = akka.remote.protocol.RemoteProtocol.ExceptionProtocol.getDefaultInstance();
|
|
|
|
|
supervisorUuid_ = akka.remote.protocol.RemoteProtocol.UuidProtocol.getDefaultInstance();
|
|
|
|
|
sender_ = akka.remote.protocol.RemoteProtocol.RemoteActorRefProtocol.getDefaultInstance();
|
2010-09-17 09:56:36 +02:00
|
|
|
}
|
|
|
|
|
public final boolean isInitialized() {
|
2011-03-05 14:48:37 +01:00
|
|
|
if (!hasUuid) return false;
|
|
|
|
|
if (!hasActorInfo) return false;
|
|
|
|
|
if (!hasOneWay) return false;
|
|
|
|
|
if (!getUuid().isInitialized()) return false;
|
|
|
|
|
if (!getActorInfo().isInitialized()) return false;
|
|
|
|
|
if (hasMessage()) {
|
|
|
|
|
if (!getMessage().isInitialized()) return false;
|
|
|
|
|
}
|
|
|
|
|
if (hasException()) {
|
|
|
|
|
if (!getException().isInitialized()) return false;
|
|
|
|
|
}
|
|
|
|
|
if (hasSupervisorUuid()) {
|
|
|
|
|
if (!getSupervisorUuid().isInitialized()) return false;
|
|
|
|
|
}
|
|
|
|
|
if (hasSender()) {
|
|
|
|
|
if (!getSender().isInitialized()) return false;
|
|
|
|
|
}
|
|
|
|
|
for (akka.remote.protocol.RemoteProtocol.MetadataEntryProtocol element : getMetadataList()) {
|
|
|
|
|
if (!element.isInitialized()) return false;
|
|
|
|
|
}
|
2010-09-17 09:56:36 +02:00
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void writeTo(com.google.protobuf.CodedOutputStream output)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
getSerializedSize();
|
2011-03-05 14:48:37 +01:00
|
|
|
if (hasUuid()) {
|
|
|
|
|
output.writeMessage(1, getUuid());
|
2010-09-17 09:56:36 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
if (hasActorInfo()) {
|
|
|
|
|
output.writeMessage(2, getActorInfo());
|
|
|
|
|
}
|
|
|
|
|
if (hasOneWay()) {
|
|
|
|
|
output.writeBool(3, getOneWay());
|
|
|
|
|
}
|
|
|
|
|
if (hasMessage()) {
|
|
|
|
|
output.writeMessage(4, getMessage());
|
|
|
|
|
}
|
|
|
|
|
if (hasException()) {
|
|
|
|
|
output.writeMessage(5, getException());
|
|
|
|
|
}
|
|
|
|
|
if (hasSupervisorUuid()) {
|
|
|
|
|
output.writeMessage(6, getSupervisorUuid());
|
|
|
|
|
}
|
|
|
|
|
if (hasSender()) {
|
|
|
|
|
output.writeMessage(7, getSender());
|
|
|
|
|
}
|
|
|
|
|
for (akka.remote.protocol.RemoteProtocol.MetadataEntryProtocol element : getMetadataList()) {
|
|
|
|
|
output.writeMessage(8, element);
|
|
|
|
|
}
|
|
|
|
|
if (hasCookie()) {
|
|
|
|
|
output.writeString(9, getCookie());
|
2010-09-17 09:56:36 +02:00
|
|
|
}
|
|
|
|
|
getUnknownFields().writeTo(output);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private int memoizedSerializedSize = -1;
|
|
|
|
|
public int getSerializedSize() {
|
|
|
|
|
int size = memoizedSerializedSize;
|
|
|
|
|
if (size != -1) return size;
|
|
|
|
|
|
|
|
|
|
size = 0;
|
2011-03-05 14:48:37 +01:00
|
|
|
if (hasUuid()) {
|
2010-09-17 09:56:36 +02:00
|
|
|
size += com.google.protobuf.CodedOutputStream
|
2011-03-05 14:48:37 +01:00
|
|
|
.computeMessageSize(1, getUuid());
|
2010-09-17 09:56:36 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
if (hasActorInfo()) {
|
2010-09-17 09:56:36 +02:00
|
|
|
size += com.google.protobuf.CodedOutputStream
|
2011-03-05 14:48:37 +01:00
|
|
|
.computeMessageSize(2, getActorInfo());
|
|
|
|
|
}
|
|
|
|
|
if (hasOneWay()) {
|
|
|
|
|
size += com.google.protobuf.CodedOutputStream
|
|
|
|
|
.computeBoolSize(3, getOneWay());
|
|
|
|
|
}
|
|
|
|
|
if (hasMessage()) {
|
|
|
|
|
size += com.google.protobuf.CodedOutputStream
|
|
|
|
|
.computeMessageSize(4, getMessage());
|
|
|
|
|
}
|
|
|
|
|
if (hasException()) {
|
|
|
|
|
size += com.google.protobuf.CodedOutputStream
|
|
|
|
|
.computeMessageSize(5, getException());
|
|
|
|
|
}
|
|
|
|
|
if (hasSupervisorUuid()) {
|
|
|
|
|
size += com.google.protobuf.CodedOutputStream
|
|
|
|
|
.computeMessageSize(6, getSupervisorUuid());
|
|
|
|
|
}
|
|
|
|
|
if (hasSender()) {
|
|
|
|
|
size += com.google.protobuf.CodedOutputStream
|
|
|
|
|
.computeMessageSize(7, getSender());
|
|
|
|
|
}
|
|
|
|
|
for (akka.remote.protocol.RemoteProtocol.MetadataEntryProtocol element : getMetadataList()) {
|
|
|
|
|
size += com.google.protobuf.CodedOutputStream
|
|
|
|
|
.computeMessageSize(8, element);
|
|
|
|
|
}
|
|
|
|
|
if (hasCookie()) {
|
|
|
|
|
size += com.google.protobuf.CodedOutputStream
|
|
|
|
|
.computeStringSize(9, getCookie());
|
2010-09-17 09:56:36 +02:00
|
|
|
}
|
|
|
|
|
size += getUnknownFields().getSerializedSize();
|
|
|
|
|
memoizedSerializedSize = size;
|
|
|
|
|
return size;
|
|
|
|
|
}
|
|
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.RemoteMessageProtocol parseFrom(
|
2010-09-17 09:56:36 +02:00
|
|
|
com.google.protobuf.ByteString data)
|
|
|
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
|
|
|
return newBuilder().mergeFrom(data).buildParsed();
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.RemoteMessageProtocol parseFrom(
|
2010-09-17 09:56:36 +02:00
|
|
|
com.google.protobuf.ByteString data,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
|
|
|
return newBuilder().mergeFrom(data, extensionRegistry)
|
|
|
|
|
.buildParsed();
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.RemoteMessageProtocol parseFrom(byte[] data)
|
2010-09-17 09:56:36 +02:00
|
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
|
|
|
return newBuilder().mergeFrom(data).buildParsed();
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.RemoteMessageProtocol parseFrom(
|
2010-09-17 09:56:36 +02:00
|
|
|
byte[] data,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
|
|
|
return newBuilder().mergeFrom(data, extensionRegistry)
|
|
|
|
|
.buildParsed();
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.RemoteMessageProtocol parseFrom(java.io.InputStream input)
|
2010-09-17 09:56:36 +02:00
|
|
|
throws java.io.IOException {
|
|
|
|
|
return newBuilder().mergeFrom(input).buildParsed();
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.RemoteMessageProtocol parseFrom(
|
2010-09-17 09:56:36 +02:00
|
|
|
java.io.InputStream input,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
return newBuilder().mergeFrom(input, extensionRegistry)
|
|
|
|
|
.buildParsed();
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.RemoteMessageProtocol parseDelimitedFrom(java.io.InputStream input)
|
2010-09-17 09:56:36 +02:00
|
|
|
throws java.io.IOException {
|
|
|
|
|
Builder builder = newBuilder();
|
|
|
|
|
if (builder.mergeDelimitedFrom(input)) {
|
|
|
|
|
return builder.buildParsed();
|
|
|
|
|
} else {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.RemoteMessageProtocol parseDelimitedFrom(
|
2010-09-17 09:56:36 +02:00
|
|
|
java.io.InputStream input,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
Builder builder = newBuilder();
|
|
|
|
|
if (builder.mergeDelimitedFrom(input, extensionRegistry)) {
|
|
|
|
|
return builder.buildParsed();
|
|
|
|
|
} else {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.RemoteMessageProtocol parseFrom(
|
2010-09-17 09:56:36 +02:00
|
|
|
com.google.protobuf.CodedInputStream input)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
return newBuilder().mergeFrom(input).buildParsed();
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.RemoteMessageProtocol parseFrom(
|
2010-09-17 09:56:36 +02:00
|
|
|
com.google.protobuf.CodedInputStream input,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
return newBuilder().mergeFrom(input, extensionRegistry)
|
|
|
|
|
.buildParsed();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static Builder newBuilder() { return Builder.create(); }
|
|
|
|
|
public Builder newBuilderForType() { return newBuilder(); }
|
2011-03-05 14:48:37 +01:00
|
|
|
public static Builder newBuilder(akka.remote.protocol.RemoteProtocol.RemoteMessageProtocol prototype) {
|
2010-09-17 09:56:36 +02:00
|
|
|
return newBuilder().mergeFrom(prototype);
|
|
|
|
|
}
|
|
|
|
|
public Builder toBuilder() { return newBuilder(this); }
|
|
|
|
|
|
|
|
|
|
public static final class Builder extends
|
|
|
|
|
com.google.protobuf.GeneratedMessage.Builder<Builder> {
|
2011-03-05 14:48:37 +01:00
|
|
|
private akka.remote.protocol.RemoteProtocol.RemoteMessageProtocol result;
|
2010-09-17 09:56:36 +02:00
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
// Construct using akka.remote.protocol.RemoteProtocol.RemoteMessageProtocol.newBuilder()
|
2010-09-17 09:56:36 +02:00
|
|
|
private Builder() {}
|
|
|
|
|
|
|
|
|
|
private static Builder create() {
|
|
|
|
|
Builder builder = new Builder();
|
2011-03-05 14:48:37 +01:00
|
|
|
builder.result = new akka.remote.protocol.RemoteProtocol.RemoteMessageProtocol();
|
2010-09-17 09:56:36 +02:00
|
|
|
return builder;
|
|
|
|
|
}
|
|
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
protected akka.remote.protocol.RemoteProtocol.RemoteMessageProtocol internalGetResult() {
|
2010-09-17 09:56:36 +02:00
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Builder clear() {
|
|
|
|
|
if (result == null) {
|
|
|
|
|
throw new IllegalStateException(
|
|
|
|
|
"Cannot call clear() after build().");
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
result = new akka.remote.protocol.RemoteProtocol.RemoteMessageProtocol();
|
2010-09-17 09:56:36 +02:00
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Builder clone() {
|
|
|
|
|
return create().mergeFrom(result);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public com.google.protobuf.Descriptors.Descriptor
|
|
|
|
|
getDescriptorForType() {
|
2011-03-05 14:48:37 +01:00
|
|
|
return akka.remote.protocol.RemoteProtocol.RemoteMessageProtocol.getDescriptor();
|
2010-09-17 09:56:36 +02:00
|
|
|
}
|
|
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
public akka.remote.protocol.RemoteProtocol.RemoteMessageProtocol getDefaultInstanceForType() {
|
|
|
|
|
return akka.remote.protocol.RemoteProtocol.RemoteMessageProtocol.getDefaultInstance();
|
2010-09-17 09:56:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public boolean isInitialized() {
|
|
|
|
|
return result.isInitialized();
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public akka.remote.protocol.RemoteProtocol.RemoteMessageProtocol build() {
|
2010-09-17 09:56:36 +02:00
|
|
|
if (result != null && !isInitialized()) {
|
|
|
|
|
throw newUninitializedMessageException(result);
|
|
|
|
|
}
|
|
|
|
|
return buildPartial();
|
|
|
|
|
}
|
|
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
private akka.remote.protocol.RemoteProtocol.RemoteMessageProtocol buildParsed()
|
2010-09-17 09:56:36 +02:00
|
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
|
|
|
if (!isInitialized()) {
|
|
|
|
|
throw newUninitializedMessageException(
|
|
|
|
|
result).asInvalidProtocolBufferException();
|
|
|
|
|
}
|
|
|
|
|
return buildPartial();
|
|
|
|
|
}
|
|
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
public akka.remote.protocol.RemoteProtocol.RemoteMessageProtocol buildPartial() {
|
2010-09-17 09:56:36 +02:00
|
|
|
if (result == null) {
|
|
|
|
|
throw new IllegalStateException(
|
|
|
|
|
"build() has already been called on this Builder.");
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
if (result.metadata_ != java.util.Collections.EMPTY_LIST) {
|
|
|
|
|
result.metadata_ =
|
|
|
|
|
java.util.Collections.unmodifiableList(result.metadata_);
|
|
|
|
|
}
|
|
|
|
|
akka.remote.protocol.RemoteProtocol.RemoteMessageProtocol returnMe = result;
|
|
|
|
|
result = null;
|
|
|
|
|
return returnMe;
|
|
|
|
|
}
|
2010-09-17 09:56:36 +02:00
|
|
|
|
|
|
|
|
public Builder mergeFrom(com.google.protobuf.Message other) {
|
2011-03-05 14:48:37 +01:00
|
|
|
if (other instanceof akka.remote.protocol.RemoteProtocol.RemoteMessageProtocol) {
|
|
|
|
|
return mergeFrom((akka.remote.protocol.RemoteProtocol.RemoteMessageProtocol)other);
|
2010-09-17 09:56:36 +02:00
|
|
|
} else {
|
|
|
|
|
super.mergeFrom(other);
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
public Builder mergeFrom(akka.remote.protocol.RemoteProtocol.RemoteMessageProtocol other) {
|
|
|
|
|
if (other == akka.remote.protocol.RemoteProtocol.RemoteMessageProtocol.getDefaultInstance()) return this;
|
|
|
|
|
if (other.hasUuid()) {
|
|
|
|
|
mergeUuid(other.getUuid());
|
2010-09-17 09:56:36 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
if (other.hasActorInfo()) {
|
|
|
|
|
mergeActorInfo(other.getActorInfo());
|
|
|
|
|
}
|
|
|
|
|
if (other.hasOneWay()) {
|
|
|
|
|
setOneWay(other.getOneWay());
|
|
|
|
|
}
|
|
|
|
|
if (other.hasMessage()) {
|
|
|
|
|
mergeMessage(other.getMessage());
|
|
|
|
|
}
|
|
|
|
|
if (other.hasException()) {
|
|
|
|
|
mergeException(other.getException());
|
|
|
|
|
}
|
|
|
|
|
if (other.hasSupervisorUuid()) {
|
|
|
|
|
mergeSupervisorUuid(other.getSupervisorUuid());
|
|
|
|
|
}
|
|
|
|
|
if (other.hasSender()) {
|
|
|
|
|
mergeSender(other.getSender());
|
|
|
|
|
}
|
|
|
|
|
if (!other.metadata_.isEmpty()) {
|
|
|
|
|
if (result.metadata_.isEmpty()) {
|
|
|
|
|
result.metadata_ = new java.util.ArrayList<akka.remote.protocol.RemoteProtocol.MetadataEntryProtocol>();
|
|
|
|
|
}
|
|
|
|
|
result.metadata_.addAll(other.metadata_);
|
|
|
|
|
}
|
|
|
|
|
if (other.hasCookie()) {
|
|
|
|
|
setCookie(other.getCookie());
|
2010-09-17 09:56:36 +02:00
|
|
|
}
|
|
|
|
|
this.mergeUnknownFields(other.getUnknownFields());
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Builder mergeFrom(
|
|
|
|
|
com.google.protobuf.CodedInputStream input,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
com.google.protobuf.UnknownFieldSet.Builder unknownFields =
|
|
|
|
|
com.google.protobuf.UnknownFieldSet.newBuilder(
|
|
|
|
|
this.getUnknownFields());
|
|
|
|
|
while (true) {
|
|
|
|
|
int tag = input.readTag();
|
|
|
|
|
switch (tag) {
|
|
|
|
|
case 0:
|
|
|
|
|
this.setUnknownFields(unknownFields.build());
|
|
|
|
|
return this;
|
|
|
|
|
default: {
|
|
|
|
|
if (!parseUnknownField(input, unknownFields,
|
|
|
|
|
extensionRegistry, tag)) {
|
|
|
|
|
this.setUnknownFields(unknownFields.build());
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case 10: {
|
2011-03-05 14:48:37 +01:00
|
|
|
akka.remote.protocol.RemoteProtocol.UuidProtocol.Builder subBuilder = akka.remote.protocol.RemoteProtocol.UuidProtocol.newBuilder();
|
|
|
|
|
if (hasUuid()) {
|
|
|
|
|
subBuilder.mergeFrom(getUuid());
|
2010-09-17 09:56:36 +02:00
|
|
|
}
|
|
|
|
|
input.readMessage(subBuilder, extensionRegistry);
|
2011-03-05 14:48:37 +01:00
|
|
|
setUuid(subBuilder.buildPartial());
|
2010-09-17 09:56:36 +02:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case 18: {
|
2011-03-05 14:48:37 +01:00
|
|
|
akka.remote.protocol.RemoteProtocol.ActorInfoProtocol.Builder subBuilder = akka.remote.protocol.RemoteProtocol.ActorInfoProtocol.newBuilder();
|
|
|
|
|
if (hasActorInfo()) {
|
|
|
|
|
subBuilder.mergeFrom(getActorInfo());
|
|
|
|
|
}
|
|
|
|
|
input.readMessage(subBuilder, extensionRegistry);
|
|
|
|
|
setActorInfo(subBuilder.buildPartial());
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case 24: {
|
|
|
|
|
setOneWay(input.readBool());
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case 34: {
|
|
|
|
|
akka.remote.protocol.RemoteProtocol.MessageProtocol.Builder subBuilder = akka.remote.protocol.RemoteProtocol.MessageProtocol.newBuilder();
|
|
|
|
|
if (hasMessage()) {
|
|
|
|
|
subBuilder.mergeFrom(getMessage());
|
|
|
|
|
}
|
|
|
|
|
input.readMessage(subBuilder, extensionRegistry);
|
|
|
|
|
setMessage(subBuilder.buildPartial());
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case 42: {
|
|
|
|
|
akka.remote.protocol.RemoteProtocol.ExceptionProtocol.Builder subBuilder = akka.remote.protocol.RemoteProtocol.ExceptionProtocol.newBuilder();
|
|
|
|
|
if (hasException()) {
|
|
|
|
|
subBuilder.mergeFrom(getException());
|
|
|
|
|
}
|
|
|
|
|
input.readMessage(subBuilder, extensionRegistry);
|
|
|
|
|
setException(subBuilder.buildPartial());
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case 50: {
|
|
|
|
|
akka.remote.protocol.RemoteProtocol.UuidProtocol.Builder subBuilder = akka.remote.protocol.RemoteProtocol.UuidProtocol.newBuilder();
|
|
|
|
|
if (hasSupervisorUuid()) {
|
|
|
|
|
subBuilder.mergeFrom(getSupervisorUuid());
|
|
|
|
|
}
|
|
|
|
|
input.readMessage(subBuilder, extensionRegistry);
|
|
|
|
|
setSupervisorUuid(subBuilder.buildPartial());
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case 58: {
|
|
|
|
|
akka.remote.protocol.RemoteProtocol.RemoteActorRefProtocol.Builder subBuilder = akka.remote.protocol.RemoteProtocol.RemoteActorRefProtocol.newBuilder();
|
|
|
|
|
if (hasSender()) {
|
|
|
|
|
subBuilder.mergeFrom(getSender());
|
|
|
|
|
}
|
|
|
|
|
input.readMessage(subBuilder, extensionRegistry);
|
|
|
|
|
setSender(subBuilder.buildPartial());
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case 66: {
|
|
|
|
|
akka.remote.protocol.RemoteProtocol.MetadataEntryProtocol.Builder subBuilder = akka.remote.protocol.RemoteProtocol.MetadataEntryProtocol.newBuilder();
|
|
|
|
|
input.readMessage(subBuilder, extensionRegistry);
|
|
|
|
|
addMetadata(subBuilder.buildPartial());
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case 74: {
|
|
|
|
|
setCookie(input.readString());
|
2010-09-17 09:56:36 +02:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
// required .UuidProtocol uuid = 1;
|
|
|
|
|
public boolean hasUuid() {
|
|
|
|
|
return result.hasUuid();
|
2010-09-17 09:56:36 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public akka.remote.protocol.RemoteProtocol.UuidProtocol getUuid() {
|
|
|
|
|
return result.getUuid();
|
2010-09-17 09:56:36 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public Builder setUuid(akka.remote.protocol.RemoteProtocol.UuidProtocol value) {
|
2010-09-17 09:56:36 +02:00
|
|
|
if (value == null) {
|
|
|
|
|
throw new NullPointerException();
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
result.hasUuid = true;
|
|
|
|
|
result.uuid_ = value;
|
2010-09-17 09:56:36 +02:00
|
|
|
return this;
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public Builder setUuid(akka.remote.protocol.RemoteProtocol.UuidProtocol.Builder builderForValue) {
|
|
|
|
|
result.hasUuid = true;
|
|
|
|
|
result.uuid_ = builderForValue.build();
|
2010-09-17 09:56:36 +02:00
|
|
|
return this;
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public Builder mergeUuid(akka.remote.protocol.RemoteProtocol.UuidProtocol value) {
|
|
|
|
|
if (result.hasUuid() &&
|
|
|
|
|
result.uuid_ != akka.remote.protocol.RemoteProtocol.UuidProtocol.getDefaultInstance()) {
|
|
|
|
|
result.uuid_ =
|
|
|
|
|
akka.remote.protocol.RemoteProtocol.UuidProtocol.newBuilder(result.uuid_).mergeFrom(value).buildPartial();
|
2010-09-17 09:56:36 +02:00
|
|
|
} else {
|
2011-03-05 14:48:37 +01:00
|
|
|
result.uuid_ = value;
|
2010-09-17 09:56:36 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
result.hasUuid = true;
|
2010-09-17 09:56:36 +02:00
|
|
|
return this;
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public Builder clearUuid() {
|
|
|
|
|
result.hasUuid = false;
|
|
|
|
|
result.uuid_ = akka.remote.protocol.RemoteProtocol.UuidProtocol.getDefaultInstance();
|
2010-09-17 09:56:36 +02:00
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
// required .ActorInfoProtocol actorInfo = 2;
|
|
|
|
|
public boolean hasActorInfo() {
|
|
|
|
|
return result.hasActorInfo();
|
2010-09-17 09:56:36 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public akka.remote.protocol.RemoteProtocol.ActorInfoProtocol getActorInfo() {
|
|
|
|
|
return result.getActorInfo();
|
2010-09-17 09:56:36 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public Builder setActorInfo(akka.remote.protocol.RemoteProtocol.ActorInfoProtocol value) {
|
2010-09-17 09:56:36 +02:00
|
|
|
if (value == null) {
|
2011-03-05 14:48:37 +01:00
|
|
|
throw new NullPointerException();
|
|
|
|
|
}
|
|
|
|
|
result.hasActorInfo = true;
|
|
|
|
|
result.actorInfo_ = value;
|
2010-09-17 09:56:36 +02:00
|
|
|
return this;
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public Builder setActorInfo(akka.remote.protocol.RemoteProtocol.ActorInfoProtocol.Builder builderForValue) {
|
|
|
|
|
result.hasActorInfo = true;
|
|
|
|
|
result.actorInfo_ = builderForValue.build();
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
public Builder mergeActorInfo(akka.remote.protocol.RemoteProtocol.ActorInfoProtocol value) {
|
|
|
|
|
if (result.hasActorInfo() &&
|
|
|
|
|
result.actorInfo_ != akka.remote.protocol.RemoteProtocol.ActorInfoProtocol.getDefaultInstance()) {
|
|
|
|
|
result.actorInfo_ =
|
|
|
|
|
akka.remote.protocol.RemoteProtocol.ActorInfoProtocol.newBuilder(result.actorInfo_).mergeFrom(value).buildPartial();
|
|
|
|
|
} else {
|
|
|
|
|
result.actorInfo_ = value;
|
|
|
|
|
}
|
|
|
|
|
result.hasActorInfo = true;
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
public Builder clearActorInfo() {
|
|
|
|
|
result.hasActorInfo = false;
|
|
|
|
|
result.actorInfo_ = akka.remote.protocol.RemoteProtocol.ActorInfoProtocol.getDefaultInstance();
|
2010-09-17 09:56:36 +02:00
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
// required bool oneWay = 3;
|
|
|
|
|
public boolean hasOneWay() {
|
|
|
|
|
return result.hasOneWay();
|
2010-06-22 07:22:47 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public boolean getOneWay() {
|
|
|
|
|
return result.getOneWay();
|
2010-06-22 07:22:47 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public Builder setOneWay(boolean value) {
|
|
|
|
|
result.hasOneWay = true;
|
|
|
|
|
result.oneWay_ = value;
|
|
|
|
|
return this;
|
2010-06-24 08:48:48 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public Builder clearOneWay() {
|
|
|
|
|
result.hasOneWay = false;
|
|
|
|
|
result.oneWay_ = false;
|
|
|
|
|
return this;
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
|
|
|
|
|
// optional .MessageProtocol message = 4;
|
|
|
|
|
public boolean hasMessage() {
|
|
|
|
|
return result.hasMessage();
|
2010-06-22 07:22:47 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public akka.remote.protocol.RemoteProtocol.MessageProtocol getMessage() {
|
|
|
|
|
return result.getMessage();
|
2010-06-22 07:22:47 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public Builder setMessage(akka.remote.protocol.RemoteProtocol.MessageProtocol value) {
|
|
|
|
|
if (value == null) {
|
|
|
|
|
throw new NullPointerException();
|
|
|
|
|
}
|
|
|
|
|
result.hasMessage = true;
|
|
|
|
|
result.message_ = value;
|
|
|
|
|
return this;
|
2010-06-22 10:02:19 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public Builder setMessage(akka.remote.protocol.RemoteProtocol.MessageProtocol.Builder builderForValue) {
|
|
|
|
|
result.hasMessage = true;
|
|
|
|
|
result.message_ = builderForValue.build();
|
|
|
|
|
return this;
|
2010-06-22 07:22:47 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public Builder mergeMessage(akka.remote.protocol.RemoteProtocol.MessageProtocol value) {
|
|
|
|
|
if (result.hasMessage() &&
|
|
|
|
|
result.message_ != akka.remote.protocol.RemoteProtocol.MessageProtocol.getDefaultInstance()) {
|
|
|
|
|
result.message_ =
|
|
|
|
|
akka.remote.protocol.RemoteProtocol.MessageProtocol.newBuilder(result.message_).mergeFrom(value).buildPartial();
|
|
|
|
|
} else {
|
|
|
|
|
result.message_ = value;
|
|
|
|
|
}
|
|
|
|
|
result.hasMessage = true;
|
|
|
|
|
return this;
|
2010-06-22 07:22:47 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public Builder clearMessage() {
|
|
|
|
|
result.hasMessage = false;
|
|
|
|
|
result.message_ = akka.remote.protocol.RemoteProtocol.MessageProtocol.getDefaultInstance();
|
|
|
|
|
return this;
|
2010-06-22 07:22:47 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
|
|
|
|
|
// optional .ExceptionProtocol exception = 5;
|
|
|
|
|
public boolean hasException() {
|
|
|
|
|
return result.hasException();
|
2010-07-14 15:35:07 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public akka.remote.protocol.RemoteProtocol.ExceptionProtocol getException() {
|
|
|
|
|
return result.getException();
|
2010-06-22 07:22:47 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public Builder setException(akka.remote.protocol.RemoteProtocol.ExceptionProtocol value) {
|
|
|
|
|
if (value == null) {
|
|
|
|
|
throw new NullPointerException();
|
|
|
|
|
}
|
|
|
|
|
result.hasException = true;
|
|
|
|
|
result.exception_ = value;
|
|
|
|
|
return this;
|
2010-06-22 07:22:47 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public Builder setException(akka.remote.protocol.RemoteProtocol.ExceptionProtocol.Builder builderForValue) {
|
|
|
|
|
result.hasException = true;
|
|
|
|
|
result.exception_ = builderForValue.build();
|
|
|
|
|
return this;
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public Builder mergeException(akka.remote.protocol.RemoteProtocol.ExceptionProtocol value) {
|
|
|
|
|
if (result.hasException() &&
|
|
|
|
|
result.exception_ != akka.remote.protocol.RemoteProtocol.ExceptionProtocol.getDefaultInstance()) {
|
|
|
|
|
result.exception_ =
|
|
|
|
|
akka.remote.protocol.RemoteProtocol.ExceptionProtocol.newBuilder(result.exception_).mergeFrom(value).buildPartial();
|
|
|
|
|
} else {
|
|
|
|
|
result.exception_ = value;
|
|
|
|
|
}
|
|
|
|
|
result.hasException = true;
|
|
|
|
|
return this;
|
2010-06-24 08:48:48 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public Builder clearException() {
|
|
|
|
|
result.hasException = false;
|
|
|
|
|
result.exception_ = akka.remote.protocol.RemoteProtocol.ExceptionProtocol.getDefaultInstance();
|
|
|
|
|
return this;
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
|
|
|
|
|
// optional .UuidProtocol supervisorUuid = 6;
|
|
|
|
|
public boolean hasSupervisorUuid() {
|
|
|
|
|
return result.hasSupervisorUuid();
|
2010-06-22 07:22:47 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public akka.remote.protocol.RemoteProtocol.UuidProtocol getSupervisorUuid() {
|
|
|
|
|
return result.getSupervisorUuid();
|
2010-06-22 07:22:47 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public Builder setSupervisorUuid(akka.remote.protocol.RemoteProtocol.UuidProtocol value) {
|
|
|
|
|
if (value == null) {
|
|
|
|
|
throw new NullPointerException();
|
|
|
|
|
}
|
|
|
|
|
result.hasSupervisorUuid = true;
|
|
|
|
|
result.supervisorUuid_ = value;
|
|
|
|
|
return this;
|
2010-06-22 07:22:47 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public Builder setSupervisorUuid(akka.remote.protocol.RemoteProtocol.UuidProtocol.Builder builderForValue) {
|
|
|
|
|
result.hasSupervisorUuid = true;
|
|
|
|
|
result.supervisorUuid_ = builderForValue.build();
|
|
|
|
|
return this;
|
2010-06-22 07:22:47 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public Builder mergeSupervisorUuid(akka.remote.protocol.RemoteProtocol.UuidProtocol value) {
|
|
|
|
|
if (result.hasSupervisorUuid() &&
|
|
|
|
|
result.supervisorUuid_ != akka.remote.protocol.RemoteProtocol.UuidProtocol.getDefaultInstance()) {
|
|
|
|
|
result.supervisorUuid_ =
|
|
|
|
|
akka.remote.protocol.RemoteProtocol.UuidProtocol.newBuilder(result.supervisorUuid_).mergeFrom(value).buildPartial();
|
|
|
|
|
} else {
|
|
|
|
|
result.supervisorUuid_ = value;
|
|
|
|
|
}
|
|
|
|
|
result.hasSupervisorUuid = true;
|
|
|
|
|
return this;
|
2010-06-22 07:22:47 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public Builder clearSupervisorUuid() {
|
|
|
|
|
result.hasSupervisorUuid = false;
|
|
|
|
|
result.supervisorUuid_ = akka.remote.protocol.RemoteProtocol.UuidProtocol.getDefaultInstance();
|
|
|
|
|
return this;
|
2010-06-22 07:22:47 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
|
|
|
|
|
// optional .RemoteActorRefProtocol sender = 7;
|
|
|
|
|
public boolean hasSender() {
|
|
|
|
|
return result.hasSender();
|
2010-07-14 15:35:07 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public akka.remote.protocol.RemoteProtocol.RemoteActorRefProtocol getSender() {
|
|
|
|
|
return result.getSender();
|
|
|
|
|
}
|
|
|
|
|
public Builder setSender(akka.remote.protocol.RemoteProtocol.RemoteActorRefProtocol value) {
|
|
|
|
|
if (value == null) {
|
|
|
|
|
throw new NullPointerException();
|
|
|
|
|
}
|
|
|
|
|
result.hasSender = true;
|
|
|
|
|
result.sender_ = value;
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
public Builder setSender(akka.remote.protocol.RemoteProtocol.RemoteActorRefProtocol.Builder builderForValue) {
|
|
|
|
|
result.hasSender = true;
|
|
|
|
|
result.sender_ = builderForValue.build();
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
public Builder mergeSender(akka.remote.protocol.RemoteProtocol.RemoteActorRefProtocol value) {
|
|
|
|
|
if (result.hasSender() &&
|
|
|
|
|
result.sender_ != akka.remote.protocol.RemoteProtocol.RemoteActorRefProtocol.getDefaultInstance()) {
|
|
|
|
|
result.sender_ =
|
|
|
|
|
akka.remote.protocol.RemoteProtocol.RemoteActorRefProtocol.newBuilder(result.sender_).mergeFrom(value).buildPartial();
|
|
|
|
|
} else {
|
|
|
|
|
result.sender_ = value;
|
|
|
|
|
}
|
|
|
|
|
result.hasSender = true;
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
public Builder clearSender() {
|
|
|
|
|
result.hasSender = false;
|
|
|
|
|
result.sender_ = akka.remote.protocol.RemoteProtocol.RemoteActorRefProtocol.getDefaultInstance();
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// repeated .MetadataEntryProtocol metadata = 8;
|
|
|
|
|
public java.util.List<akka.remote.protocol.RemoteProtocol.MetadataEntryProtocol> getMetadataList() {
|
|
|
|
|
return java.util.Collections.unmodifiableList(result.metadata_);
|
|
|
|
|
}
|
|
|
|
|
public int getMetadataCount() {
|
|
|
|
|
return result.getMetadataCount();
|
|
|
|
|
}
|
|
|
|
|
public akka.remote.protocol.RemoteProtocol.MetadataEntryProtocol getMetadata(int index) {
|
|
|
|
|
return result.getMetadata(index);
|
|
|
|
|
}
|
|
|
|
|
public Builder setMetadata(int index, akka.remote.protocol.RemoteProtocol.MetadataEntryProtocol value) {
|
|
|
|
|
if (value == null) {
|
|
|
|
|
throw new NullPointerException();
|
|
|
|
|
}
|
|
|
|
|
result.metadata_.set(index, value);
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
public Builder setMetadata(int index, akka.remote.protocol.RemoteProtocol.MetadataEntryProtocol.Builder builderForValue) {
|
|
|
|
|
result.metadata_.set(index, builderForValue.build());
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
public Builder addMetadata(akka.remote.protocol.RemoteProtocol.MetadataEntryProtocol value) {
|
|
|
|
|
if (value == null) {
|
|
|
|
|
throw new NullPointerException();
|
|
|
|
|
}
|
|
|
|
|
if (result.metadata_.isEmpty()) {
|
|
|
|
|
result.metadata_ = new java.util.ArrayList<akka.remote.protocol.RemoteProtocol.MetadataEntryProtocol>();
|
|
|
|
|
}
|
|
|
|
|
result.metadata_.add(value);
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
public Builder addMetadata(akka.remote.protocol.RemoteProtocol.MetadataEntryProtocol.Builder builderForValue) {
|
|
|
|
|
if (result.metadata_.isEmpty()) {
|
|
|
|
|
result.metadata_ = new java.util.ArrayList<akka.remote.protocol.RemoteProtocol.MetadataEntryProtocol>();
|
|
|
|
|
}
|
|
|
|
|
result.metadata_.add(builderForValue.build());
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
public Builder addAllMetadata(
|
|
|
|
|
java.lang.Iterable<? extends akka.remote.protocol.RemoteProtocol.MetadataEntryProtocol> values) {
|
|
|
|
|
if (result.metadata_.isEmpty()) {
|
|
|
|
|
result.metadata_ = new java.util.ArrayList<akka.remote.protocol.RemoteProtocol.MetadataEntryProtocol>();
|
|
|
|
|
}
|
|
|
|
|
super.addAll(values, result.metadata_);
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
public Builder clearMetadata() {
|
|
|
|
|
result.metadata_ = java.util.Collections.emptyList();
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// optional string cookie = 9;
|
|
|
|
|
public boolean hasCookie() {
|
|
|
|
|
return result.hasCookie();
|
|
|
|
|
}
|
|
|
|
|
public java.lang.String getCookie() {
|
|
|
|
|
return result.getCookie();
|
|
|
|
|
}
|
|
|
|
|
public Builder setCookie(java.lang.String value) {
|
|
|
|
|
if (value == null) {
|
|
|
|
|
throw new NullPointerException();
|
|
|
|
|
}
|
|
|
|
|
result.hasCookie = true;
|
|
|
|
|
result.cookie_ = value;
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
public Builder clearCookie() {
|
|
|
|
|
result.hasCookie = false;
|
|
|
|
|
result.cookie_ = getDefaultInstance().getCookie();
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// @@protoc_insertion_point(builder_scope:RemoteMessageProtocol)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static {
|
|
|
|
|
defaultInstance = new RemoteMessageProtocol(true);
|
|
|
|
|
akka.remote.protocol.RemoteProtocol.internalForceInit();
|
|
|
|
|
defaultInstance.initFields();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// @@protoc_insertion_point(class_scope:RemoteMessageProtocol)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static final class RemoteControlProtocol extends
|
|
|
|
|
com.google.protobuf.GeneratedMessage {
|
|
|
|
|
// Use RemoteControlProtocol.newBuilder() to construct.
|
|
|
|
|
private RemoteControlProtocol() {
|
|
|
|
|
initFields();
|
|
|
|
|
}
|
|
|
|
|
private RemoteControlProtocol(boolean noInit) {}
|
|
|
|
|
|
|
|
|
|
private static final RemoteControlProtocol defaultInstance;
|
|
|
|
|
public static RemoteControlProtocol getDefaultInstance() {
|
|
|
|
|
return defaultInstance;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public RemoteControlProtocol getDefaultInstanceForType() {
|
|
|
|
|
return defaultInstance;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static final com.google.protobuf.Descriptors.Descriptor
|
|
|
|
|
getDescriptor() {
|
|
|
|
|
return akka.remote.protocol.RemoteProtocol.internal_static_RemoteControlProtocol_descriptor;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
|
|
|
|
|
internalGetFieldAccessorTable() {
|
|
|
|
|
return akka.remote.protocol.RemoteProtocol.internal_static_RemoteControlProtocol_fieldAccessorTable;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// optional string cookie = 1;
|
|
|
|
|
public static final int COOKIE_FIELD_NUMBER = 1;
|
|
|
|
|
private boolean hasCookie;
|
|
|
|
|
private java.lang.String cookie_ = "";
|
|
|
|
|
public boolean hasCookie() { return hasCookie; }
|
|
|
|
|
public java.lang.String getCookie() { return cookie_; }
|
|
|
|
|
|
|
|
|
|
// required .CommandType commandType = 2;
|
|
|
|
|
public static final int COMMANDTYPE_FIELD_NUMBER = 2;
|
|
|
|
|
private boolean hasCommandType;
|
|
|
|
|
private akka.remote.protocol.RemoteProtocol.CommandType commandType_;
|
|
|
|
|
public boolean hasCommandType() { return hasCommandType; }
|
|
|
|
|
public akka.remote.protocol.RemoteProtocol.CommandType getCommandType() { return commandType_; }
|
|
|
|
|
|
|
|
|
|
private void initFields() {
|
|
|
|
|
commandType_ = akka.remote.protocol.RemoteProtocol.CommandType.SHUTDOWN;
|
|
|
|
|
}
|
|
|
|
|
public final boolean isInitialized() {
|
|
|
|
|
if (!hasCommandType) return false;
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void writeTo(com.google.protobuf.CodedOutputStream output)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
getSerializedSize();
|
|
|
|
|
if (hasCookie()) {
|
|
|
|
|
output.writeString(1, getCookie());
|
|
|
|
|
}
|
|
|
|
|
if (hasCommandType()) {
|
|
|
|
|
output.writeEnum(2, getCommandType().getNumber());
|
|
|
|
|
}
|
|
|
|
|
getUnknownFields().writeTo(output);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private int memoizedSerializedSize = -1;
|
|
|
|
|
public int getSerializedSize() {
|
|
|
|
|
int size = memoizedSerializedSize;
|
|
|
|
|
if (size != -1) return size;
|
|
|
|
|
|
|
|
|
|
size = 0;
|
|
|
|
|
if (hasCookie()) {
|
2010-06-22 07:22:47 +02:00
|
|
|
size += com.google.protobuf.CodedOutputStream
|
2011-03-05 14:48:37 +01:00
|
|
|
.computeStringSize(1, getCookie());
|
2010-06-22 07:22:47 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
if (hasCommandType()) {
|
2010-06-22 07:22:47 +02:00
|
|
|
size += com.google.protobuf.CodedOutputStream
|
2011-03-05 14:48:37 +01:00
|
|
|
.computeEnumSize(2, getCommandType().getNumber());
|
2010-06-22 07:22:47 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
size += getUnknownFields().getSerializedSize();
|
|
|
|
|
memoizedSerializedSize = size;
|
|
|
|
|
return size;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static akka.remote.protocol.RemoteProtocol.RemoteControlProtocol parseFrom(
|
|
|
|
|
com.google.protobuf.ByteString data)
|
|
|
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
|
|
|
return newBuilder().mergeFrom(data).buildParsed();
|
|
|
|
|
}
|
|
|
|
|
public static akka.remote.protocol.RemoteProtocol.RemoteControlProtocol parseFrom(
|
|
|
|
|
com.google.protobuf.ByteString data,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
|
|
|
return newBuilder().mergeFrom(data, extensionRegistry)
|
|
|
|
|
.buildParsed();
|
|
|
|
|
}
|
|
|
|
|
public static akka.remote.protocol.RemoteProtocol.RemoteControlProtocol parseFrom(byte[] data)
|
|
|
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
|
|
|
return newBuilder().mergeFrom(data).buildParsed();
|
|
|
|
|
}
|
|
|
|
|
public static akka.remote.protocol.RemoteProtocol.RemoteControlProtocol parseFrom(
|
|
|
|
|
byte[] data,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
|
|
|
return newBuilder().mergeFrom(data, extensionRegistry)
|
|
|
|
|
.buildParsed();
|
|
|
|
|
}
|
|
|
|
|
public static akka.remote.protocol.RemoteProtocol.RemoteControlProtocol parseFrom(java.io.InputStream input)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
return newBuilder().mergeFrom(input).buildParsed();
|
|
|
|
|
}
|
|
|
|
|
public static akka.remote.protocol.RemoteProtocol.RemoteControlProtocol parseFrom(
|
|
|
|
|
java.io.InputStream input,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
return newBuilder().mergeFrom(input, extensionRegistry)
|
|
|
|
|
.buildParsed();
|
|
|
|
|
}
|
|
|
|
|
public static akka.remote.protocol.RemoteProtocol.RemoteControlProtocol parseDelimitedFrom(java.io.InputStream input)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
Builder builder = newBuilder();
|
|
|
|
|
if (builder.mergeDelimitedFrom(input)) {
|
|
|
|
|
return builder.buildParsed();
|
|
|
|
|
} else {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
public static akka.remote.protocol.RemoteProtocol.RemoteControlProtocol parseDelimitedFrom(
|
|
|
|
|
java.io.InputStream input,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
Builder builder = newBuilder();
|
|
|
|
|
if (builder.mergeDelimitedFrom(input, extensionRegistry)) {
|
|
|
|
|
return builder.buildParsed();
|
|
|
|
|
} else {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
public static akka.remote.protocol.RemoteProtocol.RemoteControlProtocol parseFrom(
|
|
|
|
|
com.google.protobuf.CodedInputStream input)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
return newBuilder().mergeFrom(input).buildParsed();
|
|
|
|
|
}
|
|
|
|
|
public static akka.remote.protocol.RemoteProtocol.RemoteControlProtocol parseFrom(
|
|
|
|
|
com.google.protobuf.CodedInputStream input,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
return newBuilder().mergeFrom(input, extensionRegistry)
|
|
|
|
|
.buildParsed();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static Builder newBuilder() { return Builder.create(); }
|
|
|
|
|
public Builder newBuilderForType() { return newBuilder(); }
|
|
|
|
|
public static Builder newBuilder(akka.remote.protocol.RemoteProtocol.RemoteControlProtocol prototype) {
|
|
|
|
|
return newBuilder().mergeFrom(prototype);
|
|
|
|
|
}
|
|
|
|
|
public Builder toBuilder() { return newBuilder(this); }
|
|
|
|
|
|
|
|
|
|
public static final class Builder extends
|
|
|
|
|
com.google.protobuf.GeneratedMessage.Builder<Builder> {
|
|
|
|
|
private akka.remote.protocol.RemoteProtocol.RemoteControlProtocol result;
|
|
|
|
|
|
|
|
|
|
// Construct using akka.remote.protocol.RemoteProtocol.RemoteControlProtocol.newBuilder()
|
|
|
|
|
private Builder() {}
|
|
|
|
|
|
|
|
|
|
private static Builder create() {
|
|
|
|
|
Builder builder = new Builder();
|
|
|
|
|
builder.result = new akka.remote.protocol.RemoteProtocol.RemoteControlProtocol();
|
|
|
|
|
return builder;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected akka.remote.protocol.RemoteProtocol.RemoteControlProtocol internalGetResult() {
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Builder clear() {
|
|
|
|
|
if (result == null) {
|
|
|
|
|
throw new IllegalStateException(
|
|
|
|
|
"Cannot call clear() after build().");
|
|
|
|
|
}
|
|
|
|
|
result = new akka.remote.protocol.RemoteProtocol.RemoteControlProtocol();
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Builder clone() {
|
|
|
|
|
return create().mergeFrom(result);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public com.google.protobuf.Descriptors.Descriptor
|
|
|
|
|
getDescriptorForType() {
|
|
|
|
|
return akka.remote.protocol.RemoteProtocol.RemoteControlProtocol.getDescriptor();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public akka.remote.protocol.RemoteProtocol.RemoteControlProtocol getDefaultInstanceForType() {
|
|
|
|
|
return akka.remote.protocol.RemoteProtocol.RemoteControlProtocol.getDefaultInstance();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public boolean isInitialized() {
|
|
|
|
|
return result.isInitialized();
|
|
|
|
|
}
|
|
|
|
|
public akka.remote.protocol.RemoteProtocol.RemoteControlProtocol build() {
|
|
|
|
|
if (result != null && !isInitialized()) {
|
|
|
|
|
throw newUninitializedMessageException(result);
|
|
|
|
|
}
|
|
|
|
|
return buildPartial();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private akka.remote.protocol.RemoteProtocol.RemoteControlProtocol buildParsed()
|
|
|
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
|
|
|
if (!isInitialized()) {
|
|
|
|
|
throw newUninitializedMessageException(
|
|
|
|
|
result).asInvalidProtocolBufferException();
|
|
|
|
|
}
|
|
|
|
|
return buildPartial();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public akka.remote.protocol.RemoteProtocol.RemoteControlProtocol buildPartial() {
|
|
|
|
|
if (result == null) {
|
|
|
|
|
throw new IllegalStateException(
|
|
|
|
|
"build() has already been called on this Builder.");
|
|
|
|
|
}
|
|
|
|
|
akka.remote.protocol.RemoteProtocol.RemoteControlProtocol returnMe = result;
|
|
|
|
|
result = null;
|
|
|
|
|
return returnMe;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Builder mergeFrom(com.google.protobuf.Message other) {
|
|
|
|
|
if (other instanceof akka.remote.protocol.RemoteProtocol.RemoteControlProtocol) {
|
|
|
|
|
return mergeFrom((akka.remote.protocol.RemoteProtocol.RemoteControlProtocol)other);
|
|
|
|
|
} else {
|
|
|
|
|
super.mergeFrom(other);
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Builder mergeFrom(akka.remote.protocol.RemoteProtocol.RemoteControlProtocol other) {
|
|
|
|
|
if (other == akka.remote.protocol.RemoteProtocol.RemoteControlProtocol.getDefaultInstance()) return this;
|
|
|
|
|
if (other.hasCookie()) {
|
|
|
|
|
setCookie(other.getCookie());
|
|
|
|
|
}
|
|
|
|
|
if (other.hasCommandType()) {
|
|
|
|
|
setCommandType(other.getCommandType());
|
|
|
|
|
}
|
|
|
|
|
this.mergeUnknownFields(other.getUnknownFields());
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Builder mergeFrom(
|
|
|
|
|
com.google.protobuf.CodedInputStream input,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
com.google.protobuf.UnknownFieldSet.Builder unknownFields =
|
|
|
|
|
com.google.protobuf.UnknownFieldSet.newBuilder(
|
|
|
|
|
this.getUnknownFields());
|
|
|
|
|
while (true) {
|
|
|
|
|
int tag = input.readTag();
|
|
|
|
|
switch (tag) {
|
|
|
|
|
case 0:
|
|
|
|
|
this.setUnknownFields(unknownFields.build());
|
|
|
|
|
return this;
|
|
|
|
|
default: {
|
|
|
|
|
if (!parseUnknownField(input, unknownFields,
|
|
|
|
|
extensionRegistry, tag)) {
|
|
|
|
|
this.setUnknownFields(unknownFields.build());
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case 10: {
|
|
|
|
|
setCookie(input.readString());
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case 16: {
|
|
|
|
|
int rawValue = input.readEnum();
|
|
|
|
|
akka.remote.protocol.RemoteProtocol.CommandType value = akka.remote.protocol.RemoteProtocol.CommandType.valueOf(rawValue);
|
|
|
|
|
if (value == null) {
|
|
|
|
|
unknownFields.mergeVarintField(2, rawValue);
|
|
|
|
|
} else {
|
|
|
|
|
setCommandType(value);
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// optional string cookie = 1;
|
|
|
|
|
public boolean hasCookie() {
|
|
|
|
|
return result.hasCookie();
|
|
|
|
|
}
|
|
|
|
|
public java.lang.String getCookie() {
|
|
|
|
|
return result.getCookie();
|
|
|
|
|
}
|
|
|
|
|
public Builder setCookie(java.lang.String value) {
|
|
|
|
|
if (value == null) {
|
|
|
|
|
throw new NullPointerException();
|
|
|
|
|
}
|
|
|
|
|
result.hasCookie = true;
|
|
|
|
|
result.cookie_ = value;
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
public Builder clearCookie() {
|
|
|
|
|
result.hasCookie = false;
|
|
|
|
|
result.cookie_ = getDefaultInstance().getCookie();
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// required .CommandType commandType = 2;
|
|
|
|
|
public boolean hasCommandType() {
|
|
|
|
|
return result.hasCommandType();
|
|
|
|
|
}
|
|
|
|
|
public akka.remote.protocol.RemoteProtocol.CommandType getCommandType() {
|
|
|
|
|
return result.getCommandType();
|
|
|
|
|
}
|
|
|
|
|
public Builder setCommandType(akka.remote.protocol.RemoteProtocol.CommandType value) {
|
|
|
|
|
if (value == null) {
|
|
|
|
|
throw new NullPointerException();
|
|
|
|
|
}
|
|
|
|
|
result.hasCommandType = true;
|
|
|
|
|
result.commandType_ = value;
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
public Builder clearCommandType() {
|
|
|
|
|
result.hasCommandType = false;
|
|
|
|
|
result.commandType_ = akka.remote.protocol.RemoteProtocol.CommandType.SHUTDOWN;
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// @@protoc_insertion_point(builder_scope:RemoteControlProtocol)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static {
|
|
|
|
|
defaultInstance = new RemoteControlProtocol(true);
|
|
|
|
|
akka.remote.protocol.RemoteProtocol.internalForceInit();
|
|
|
|
|
defaultInstance.initFields();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// @@protoc_insertion_point(class_scope:RemoteControlProtocol)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static final class RemoteActorRefProtocol extends
|
|
|
|
|
com.google.protobuf.GeneratedMessage {
|
|
|
|
|
// Use RemoteActorRefProtocol.newBuilder() to construct.
|
|
|
|
|
private RemoteActorRefProtocol() {
|
|
|
|
|
initFields();
|
|
|
|
|
}
|
|
|
|
|
private RemoteActorRefProtocol(boolean noInit) {}
|
|
|
|
|
|
|
|
|
|
private static final RemoteActorRefProtocol defaultInstance;
|
|
|
|
|
public static RemoteActorRefProtocol getDefaultInstance() {
|
|
|
|
|
return defaultInstance;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public RemoteActorRefProtocol getDefaultInstanceForType() {
|
|
|
|
|
return defaultInstance;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static final com.google.protobuf.Descriptors.Descriptor
|
|
|
|
|
getDescriptor() {
|
|
|
|
|
return akka.remote.protocol.RemoteProtocol.internal_static_RemoteActorRefProtocol_descriptor;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
|
|
|
|
|
internalGetFieldAccessorTable() {
|
|
|
|
|
return akka.remote.protocol.RemoteProtocol.internal_static_RemoteActorRefProtocol_fieldAccessorTable;
|
|
|
|
|
}
|
|
|
|
|
|
2011-04-08 15:29:14 +02:00
|
|
|
// required string address = 1;
|
|
|
|
|
public static final int ADDRESS_FIELD_NUMBER = 1;
|
|
|
|
|
private boolean hasAddress;
|
|
|
|
|
private java.lang.String address_ = "";
|
|
|
|
|
public boolean hasAddress() { return hasAddress; }
|
|
|
|
|
public java.lang.String getAddress() { return address_; }
|
2011-03-05 14:48:37 +01:00
|
|
|
|
2011-04-29 15:47:56 +02:00
|
|
|
// optional uint64 timeout = 2;
|
|
|
|
|
public static final int TIMEOUT_FIELD_NUMBER = 2;
|
2011-03-05 14:48:37 +01:00
|
|
|
private boolean hasTimeout;
|
|
|
|
|
private long timeout_ = 0L;
|
|
|
|
|
public boolean hasTimeout() { return hasTimeout; }
|
|
|
|
|
public long getTimeout() { return timeout_; }
|
|
|
|
|
|
|
|
|
|
private void initFields() {
|
|
|
|
|
}
|
|
|
|
|
public final boolean isInitialized() {
|
2011-04-08 15:29:14 +02:00
|
|
|
if (!hasAddress) return false;
|
2011-03-05 14:48:37 +01:00
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void writeTo(com.google.protobuf.CodedOutputStream output)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
getSerializedSize();
|
2011-04-08 15:29:14 +02:00
|
|
|
if (hasAddress()) {
|
|
|
|
|
output.writeString(1, getAddress());
|
2011-03-05 14:48:37 +01:00
|
|
|
}
|
|
|
|
|
if (hasTimeout()) {
|
2011-04-29 15:47:56 +02:00
|
|
|
output.writeUInt64(2, getTimeout());
|
2011-03-05 14:48:37 +01:00
|
|
|
}
|
|
|
|
|
getUnknownFields().writeTo(output);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private int memoizedSerializedSize = -1;
|
|
|
|
|
public int getSerializedSize() {
|
|
|
|
|
int size = memoizedSerializedSize;
|
|
|
|
|
if (size != -1) return size;
|
|
|
|
|
|
|
|
|
|
size = 0;
|
2011-04-08 15:29:14 +02:00
|
|
|
if (hasAddress()) {
|
2011-03-05 14:48:37 +01:00
|
|
|
size += com.google.protobuf.CodedOutputStream
|
2011-04-08 15:29:14 +02:00
|
|
|
.computeStringSize(1, getAddress());
|
2011-03-05 14:48:37 +01:00
|
|
|
}
|
|
|
|
|
if (hasTimeout()) {
|
|
|
|
|
size += com.google.protobuf.CodedOutputStream
|
2011-04-29 15:47:56 +02:00
|
|
|
.computeUInt64Size(2, getTimeout());
|
2011-03-05 14:48:37 +01:00
|
|
|
}
|
|
|
|
|
size += getUnknownFields().getSerializedSize();
|
|
|
|
|
memoizedSerializedSize = size;
|
|
|
|
|
return size;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static akka.remote.protocol.RemoteProtocol.RemoteActorRefProtocol parseFrom(
|
|
|
|
|
com.google.protobuf.ByteString data)
|
|
|
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
|
|
|
return newBuilder().mergeFrom(data).buildParsed();
|
|
|
|
|
}
|
|
|
|
|
public static akka.remote.protocol.RemoteProtocol.RemoteActorRefProtocol parseFrom(
|
|
|
|
|
com.google.protobuf.ByteString data,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
|
|
|
return newBuilder().mergeFrom(data, extensionRegistry)
|
|
|
|
|
.buildParsed();
|
|
|
|
|
}
|
|
|
|
|
public static akka.remote.protocol.RemoteProtocol.RemoteActorRefProtocol parseFrom(byte[] data)
|
|
|
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
|
|
|
return newBuilder().mergeFrom(data).buildParsed();
|
|
|
|
|
}
|
|
|
|
|
public static akka.remote.protocol.RemoteProtocol.RemoteActorRefProtocol parseFrom(
|
|
|
|
|
byte[] data,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
|
|
|
return newBuilder().mergeFrom(data, extensionRegistry)
|
|
|
|
|
.buildParsed();
|
|
|
|
|
}
|
|
|
|
|
public static akka.remote.protocol.RemoteProtocol.RemoteActorRefProtocol parseFrom(java.io.InputStream input)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
return newBuilder().mergeFrom(input).buildParsed();
|
|
|
|
|
}
|
|
|
|
|
public static akka.remote.protocol.RemoteProtocol.RemoteActorRefProtocol parseFrom(
|
|
|
|
|
java.io.InputStream input,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
return newBuilder().mergeFrom(input, extensionRegistry)
|
|
|
|
|
.buildParsed();
|
|
|
|
|
}
|
|
|
|
|
public static akka.remote.protocol.RemoteProtocol.RemoteActorRefProtocol parseDelimitedFrom(java.io.InputStream input)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
Builder builder = newBuilder();
|
|
|
|
|
if (builder.mergeDelimitedFrom(input)) {
|
|
|
|
|
return builder.buildParsed();
|
|
|
|
|
} else {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
public static akka.remote.protocol.RemoteProtocol.RemoteActorRefProtocol parseDelimitedFrom(
|
|
|
|
|
java.io.InputStream input,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
Builder builder = newBuilder();
|
|
|
|
|
if (builder.mergeDelimitedFrom(input, extensionRegistry)) {
|
|
|
|
|
return builder.buildParsed();
|
|
|
|
|
} else {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
public static akka.remote.protocol.RemoteProtocol.RemoteActorRefProtocol parseFrom(
|
|
|
|
|
com.google.protobuf.CodedInputStream input)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
return newBuilder().mergeFrom(input).buildParsed();
|
|
|
|
|
}
|
|
|
|
|
public static akka.remote.protocol.RemoteProtocol.RemoteActorRefProtocol parseFrom(
|
|
|
|
|
com.google.protobuf.CodedInputStream input,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
return newBuilder().mergeFrom(input, extensionRegistry)
|
|
|
|
|
.buildParsed();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static Builder newBuilder() { return Builder.create(); }
|
|
|
|
|
public Builder newBuilderForType() { return newBuilder(); }
|
|
|
|
|
public static Builder newBuilder(akka.remote.protocol.RemoteProtocol.RemoteActorRefProtocol prototype) {
|
|
|
|
|
return newBuilder().mergeFrom(prototype);
|
|
|
|
|
}
|
|
|
|
|
public Builder toBuilder() { return newBuilder(this); }
|
|
|
|
|
|
|
|
|
|
public static final class Builder extends
|
|
|
|
|
com.google.protobuf.GeneratedMessage.Builder<Builder> {
|
|
|
|
|
private akka.remote.protocol.RemoteProtocol.RemoteActorRefProtocol result;
|
|
|
|
|
|
|
|
|
|
// Construct using akka.remote.protocol.RemoteProtocol.RemoteActorRefProtocol.newBuilder()
|
|
|
|
|
private Builder() {}
|
|
|
|
|
|
|
|
|
|
private static Builder create() {
|
|
|
|
|
Builder builder = new Builder();
|
|
|
|
|
builder.result = new akka.remote.protocol.RemoteProtocol.RemoteActorRefProtocol();
|
|
|
|
|
return builder;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected akka.remote.protocol.RemoteProtocol.RemoteActorRefProtocol internalGetResult() {
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Builder clear() {
|
|
|
|
|
if (result == null) {
|
|
|
|
|
throw new IllegalStateException(
|
|
|
|
|
"Cannot call clear() after build().");
|
|
|
|
|
}
|
|
|
|
|
result = new akka.remote.protocol.RemoteProtocol.RemoteActorRefProtocol();
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Builder clone() {
|
|
|
|
|
return create().mergeFrom(result);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public com.google.protobuf.Descriptors.Descriptor
|
|
|
|
|
getDescriptorForType() {
|
|
|
|
|
return akka.remote.protocol.RemoteProtocol.RemoteActorRefProtocol.getDescriptor();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public akka.remote.protocol.RemoteProtocol.RemoteActorRefProtocol getDefaultInstanceForType() {
|
|
|
|
|
return akka.remote.protocol.RemoteProtocol.RemoteActorRefProtocol.getDefaultInstance();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public boolean isInitialized() {
|
|
|
|
|
return result.isInitialized();
|
|
|
|
|
}
|
|
|
|
|
public akka.remote.protocol.RemoteProtocol.RemoteActorRefProtocol build() {
|
|
|
|
|
if (result != null && !isInitialized()) {
|
|
|
|
|
throw newUninitializedMessageException(result);
|
|
|
|
|
}
|
|
|
|
|
return buildPartial();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private akka.remote.protocol.RemoteProtocol.RemoteActorRefProtocol buildParsed()
|
|
|
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
|
|
|
if (!isInitialized()) {
|
|
|
|
|
throw newUninitializedMessageException(
|
|
|
|
|
result).asInvalidProtocolBufferException();
|
|
|
|
|
}
|
|
|
|
|
return buildPartial();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public akka.remote.protocol.RemoteProtocol.RemoteActorRefProtocol buildPartial() {
|
|
|
|
|
if (result == null) {
|
|
|
|
|
throw new IllegalStateException(
|
|
|
|
|
"build() has already been called on this Builder.");
|
|
|
|
|
}
|
|
|
|
|
akka.remote.protocol.RemoteProtocol.RemoteActorRefProtocol returnMe = result;
|
|
|
|
|
result = null;
|
|
|
|
|
return returnMe;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Builder mergeFrom(com.google.protobuf.Message other) {
|
|
|
|
|
if (other instanceof akka.remote.protocol.RemoteProtocol.RemoteActorRefProtocol) {
|
|
|
|
|
return mergeFrom((akka.remote.protocol.RemoteProtocol.RemoteActorRefProtocol)other);
|
|
|
|
|
} else {
|
|
|
|
|
super.mergeFrom(other);
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Builder mergeFrom(akka.remote.protocol.RemoteProtocol.RemoteActorRefProtocol other) {
|
|
|
|
|
if (other == akka.remote.protocol.RemoteProtocol.RemoteActorRefProtocol.getDefaultInstance()) return this;
|
2011-04-08 15:29:14 +02:00
|
|
|
if (other.hasAddress()) {
|
|
|
|
|
setAddress(other.getAddress());
|
2011-03-05 14:48:37 +01:00
|
|
|
}
|
|
|
|
|
if (other.hasTimeout()) {
|
|
|
|
|
setTimeout(other.getTimeout());
|
|
|
|
|
}
|
|
|
|
|
this.mergeUnknownFields(other.getUnknownFields());
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Builder mergeFrom(
|
|
|
|
|
com.google.protobuf.CodedInputStream input,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
com.google.protobuf.UnknownFieldSet.Builder unknownFields =
|
|
|
|
|
com.google.protobuf.UnknownFieldSet.newBuilder(
|
|
|
|
|
this.getUnknownFields());
|
|
|
|
|
while (true) {
|
|
|
|
|
int tag = input.readTag();
|
|
|
|
|
switch (tag) {
|
|
|
|
|
case 0:
|
|
|
|
|
this.setUnknownFields(unknownFields.build());
|
|
|
|
|
return this;
|
|
|
|
|
default: {
|
|
|
|
|
if (!parseUnknownField(input, unknownFields,
|
|
|
|
|
extensionRegistry, tag)) {
|
|
|
|
|
this.setUnknownFields(unknownFields.build());
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case 10: {
|
2011-04-08 15:29:14 +02:00
|
|
|
setAddress(input.readString());
|
2011-03-05 14:48:37 +01:00
|
|
|
break;
|
|
|
|
|
}
|
2011-04-29 15:47:56 +02:00
|
|
|
case 16: {
|
2011-03-05 14:48:37 +01:00
|
|
|
setTimeout(input.readUInt64());
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2011-04-08 15:29:14 +02:00
|
|
|
// required string address = 1;
|
|
|
|
|
public boolean hasAddress() {
|
|
|
|
|
return result.hasAddress();
|
2011-03-05 14:48:37 +01:00
|
|
|
}
|
2011-04-08 15:29:14 +02:00
|
|
|
public java.lang.String getAddress() {
|
|
|
|
|
return result.getAddress();
|
2011-03-05 14:48:37 +01:00
|
|
|
}
|
2011-04-08 15:29:14 +02:00
|
|
|
public Builder setAddress(java.lang.String value) {
|
2011-03-05 14:48:37 +01:00
|
|
|
if (value == null) {
|
|
|
|
|
throw new NullPointerException();
|
|
|
|
|
}
|
2011-04-08 15:29:14 +02:00
|
|
|
result.hasAddress = true;
|
|
|
|
|
result.address_ = value;
|
2011-03-05 14:48:37 +01:00
|
|
|
return this;
|
|
|
|
|
}
|
2011-04-08 15:29:14 +02:00
|
|
|
public Builder clearAddress() {
|
|
|
|
|
result.hasAddress = false;
|
|
|
|
|
result.address_ = getDefaultInstance().getAddress();
|
2011-03-05 14:48:37 +01:00
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
|
2011-04-29 15:47:56 +02:00
|
|
|
// optional uint64 timeout = 2;
|
2011-03-05 14:48:37 +01:00
|
|
|
public boolean hasTimeout() {
|
|
|
|
|
return result.hasTimeout();
|
|
|
|
|
}
|
|
|
|
|
public long getTimeout() {
|
|
|
|
|
return result.getTimeout();
|
|
|
|
|
}
|
|
|
|
|
public Builder setTimeout(long value) {
|
|
|
|
|
result.hasTimeout = true;
|
|
|
|
|
result.timeout_ = value;
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
public Builder clearTimeout() {
|
|
|
|
|
result.hasTimeout = false;
|
|
|
|
|
result.timeout_ = 0L;
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// @@protoc_insertion_point(builder_scope:RemoteActorRefProtocol)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static {
|
|
|
|
|
defaultInstance = new RemoteActorRefProtocol(true);
|
|
|
|
|
akka.remote.protocol.RemoteProtocol.internalForceInit();
|
|
|
|
|
defaultInstance.initFields();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// @@protoc_insertion_point(class_scope:RemoteActorRefProtocol)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static final class RemoteTypedActorRefProtocol extends
|
|
|
|
|
com.google.protobuf.GeneratedMessage {
|
|
|
|
|
// Use RemoteTypedActorRefProtocol.newBuilder() to construct.
|
|
|
|
|
private RemoteTypedActorRefProtocol() {
|
|
|
|
|
initFields();
|
|
|
|
|
}
|
|
|
|
|
private RemoteTypedActorRefProtocol(boolean noInit) {}
|
|
|
|
|
|
|
|
|
|
private static final RemoteTypedActorRefProtocol defaultInstance;
|
|
|
|
|
public static RemoteTypedActorRefProtocol getDefaultInstance() {
|
|
|
|
|
return defaultInstance;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public RemoteTypedActorRefProtocol getDefaultInstanceForType() {
|
|
|
|
|
return defaultInstance;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static final com.google.protobuf.Descriptors.Descriptor
|
|
|
|
|
getDescriptor() {
|
|
|
|
|
return akka.remote.protocol.RemoteProtocol.internal_static_RemoteTypedActorRefProtocol_descriptor;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
|
|
|
|
|
internalGetFieldAccessorTable() {
|
|
|
|
|
return akka.remote.protocol.RemoteProtocol.internal_static_RemoteTypedActorRefProtocol_fieldAccessorTable;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// required .RemoteActorRefProtocol actorRef = 1;
|
|
|
|
|
public static final int ACTORREF_FIELD_NUMBER = 1;
|
|
|
|
|
private boolean hasActorRef;
|
|
|
|
|
private akka.remote.protocol.RemoteProtocol.RemoteActorRefProtocol actorRef_;
|
|
|
|
|
public boolean hasActorRef() { return hasActorRef; }
|
|
|
|
|
public akka.remote.protocol.RemoteProtocol.RemoteActorRefProtocol getActorRef() { return actorRef_; }
|
|
|
|
|
|
|
|
|
|
// required string interfaceName = 2;
|
|
|
|
|
public static final int INTERFACENAME_FIELD_NUMBER = 2;
|
|
|
|
|
private boolean hasInterfaceName;
|
|
|
|
|
private java.lang.String interfaceName_ = "";
|
|
|
|
|
public boolean hasInterfaceName() { return hasInterfaceName; }
|
|
|
|
|
public java.lang.String getInterfaceName() { return interfaceName_; }
|
|
|
|
|
|
|
|
|
|
private void initFields() {
|
|
|
|
|
actorRef_ = akka.remote.protocol.RemoteProtocol.RemoteActorRefProtocol.getDefaultInstance();
|
|
|
|
|
}
|
|
|
|
|
public final boolean isInitialized() {
|
|
|
|
|
if (!hasActorRef) return false;
|
|
|
|
|
if (!hasInterfaceName) return false;
|
|
|
|
|
if (!getActorRef().isInitialized()) return false;
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void writeTo(com.google.protobuf.CodedOutputStream output)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
getSerializedSize();
|
|
|
|
|
if (hasActorRef()) {
|
|
|
|
|
output.writeMessage(1, getActorRef());
|
|
|
|
|
}
|
|
|
|
|
if (hasInterfaceName()) {
|
|
|
|
|
output.writeString(2, getInterfaceName());
|
|
|
|
|
}
|
|
|
|
|
getUnknownFields().writeTo(output);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private int memoizedSerializedSize = -1;
|
|
|
|
|
public int getSerializedSize() {
|
|
|
|
|
int size = memoizedSerializedSize;
|
|
|
|
|
if (size != -1) return size;
|
|
|
|
|
|
|
|
|
|
size = 0;
|
|
|
|
|
if (hasActorRef()) {
|
2010-06-22 07:22:47 +02:00
|
|
|
size += com.google.protobuf.CodedOutputStream
|
2011-03-05 14:48:37 +01:00
|
|
|
.computeMessageSize(1, getActorRef());
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
if (hasInterfaceName()) {
|
2010-06-24 08:48:48 +02:00
|
|
|
size += com.google.protobuf.CodedOutputStream
|
2011-03-05 14:48:37 +01:00
|
|
|
.computeStringSize(2, getInterfaceName());
|
2010-06-24 08:48:48 +02:00
|
|
|
}
|
2010-06-10 11:39:26 +02:00
|
|
|
size += getUnknownFields().getSerializedSize();
|
|
|
|
|
memoizedSerializedSize = size;
|
|
|
|
|
return size;
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.RemoteTypedActorRefProtocol parseFrom(
|
2010-06-10 11:39:26 +02:00
|
|
|
com.google.protobuf.ByteString data)
|
|
|
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
|
|
|
return newBuilder().mergeFrom(data).buildParsed();
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.RemoteTypedActorRefProtocol parseFrom(
|
2010-06-10 11:39:26 +02:00
|
|
|
com.google.protobuf.ByteString data,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
|
|
|
return newBuilder().mergeFrom(data, extensionRegistry)
|
|
|
|
|
.buildParsed();
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.RemoteTypedActorRefProtocol parseFrom(byte[] data)
|
2010-06-10 11:39:26 +02:00
|
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
|
|
|
return newBuilder().mergeFrom(data).buildParsed();
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.RemoteTypedActorRefProtocol parseFrom(
|
2010-06-10 11:39:26 +02:00
|
|
|
byte[] data,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
|
|
|
return newBuilder().mergeFrom(data, extensionRegistry)
|
|
|
|
|
.buildParsed();
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.RemoteTypedActorRefProtocol parseFrom(java.io.InputStream input)
|
2010-06-10 11:39:26 +02:00
|
|
|
throws java.io.IOException {
|
|
|
|
|
return newBuilder().mergeFrom(input).buildParsed();
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.RemoteTypedActorRefProtocol parseFrom(
|
2010-06-10 11:39:26 +02:00
|
|
|
java.io.InputStream input,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
return newBuilder().mergeFrom(input, extensionRegistry)
|
|
|
|
|
.buildParsed();
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.RemoteTypedActorRefProtocol parseDelimitedFrom(java.io.InputStream input)
|
2010-06-10 11:39:26 +02:00
|
|
|
throws java.io.IOException {
|
|
|
|
|
Builder builder = newBuilder();
|
|
|
|
|
if (builder.mergeDelimitedFrom(input)) {
|
|
|
|
|
return builder.buildParsed();
|
|
|
|
|
} else {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.RemoteTypedActorRefProtocol parseDelimitedFrom(
|
2010-06-10 11:39:26 +02:00
|
|
|
java.io.InputStream input,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
Builder builder = newBuilder();
|
|
|
|
|
if (builder.mergeDelimitedFrom(input, extensionRegistry)) {
|
|
|
|
|
return builder.buildParsed();
|
|
|
|
|
} else {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.RemoteTypedActorRefProtocol parseFrom(
|
2010-06-10 11:39:26 +02:00
|
|
|
com.google.protobuf.CodedInputStream input)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
return newBuilder().mergeFrom(input).buildParsed();
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.RemoteTypedActorRefProtocol parseFrom(
|
2010-06-10 11:39:26 +02:00
|
|
|
com.google.protobuf.CodedInputStream input,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
return newBuilder().mergeFrom(input, extensionRegistry)
|
|
|
|
|
.buildParsed();
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-10 11:39:26 +02:00
|
|
|
public static Builder newBuilder() { return Builder.create(); }
|
|
|
|
|
public Builder newBuilderForType() { return newBuilder(); }
|
2011-03-05 14:48:37 +01:00
|
|
|
public static Builder newBuilder(akka.remote.protocol.RemoteProtocol.RemoteTypedActorRefProtocol prototype) {
|
2010-06-10 11:39:26 +02:00
|
|
|
return newBuilder().mergeFrom(prototype);
|
|
|
|
|
}
|
|
|
|
|
public Builder toBuilder() { return newBuilder(this); }
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-10 11:39:26 +02:00
|
|
|
public static final class Builder extends
|
|
|
|
|
com.google.protobuf.GeneratedMessage.Builder<Builder> {
|
2011-03-05 14:48:37 +01:00
|
|
|
private akka.remote.protocol.RemoteProtocol.RemoteTypedActorRefProtocol result;
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
// Construct using akka.remote.protocol.RemoteProtocol.RemoteTypedActorRefProtocol.newBuilder()
|
|
|
|
|
private Builder() {}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
private static Builder create() {
|
|
|
|
|
Builder builder = new Builder();
|
|
|
|
|
builder.result = new akka.remote.protocol.RemoteProtocol.RemoteTypedActorRefProtocol();
|
|
|
|
|
return builder;
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
|
|
|
|
|
protected akka.remote.protocol.RemoteProtocol.RemoteTypedActorRefProtocol internalGetResult() {
|
|
|
|
|
return result;
|
2010-09-17 16:04:25 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
|
|
|
|
|
public Builder clear() {
|
|
|
|
|
if (result == null) {
|
|
|
|
|
throw new IllegalStateException(
|
|
|
|
|
"Cannot call clear() after build().");
|
2010-09-17 16:04:25 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
result = new akka.remote.protocol.RemoteProtocol.RemoteTypedActorRefProtocol();
|
2010-06-10 11:39:26 +02:00
|
|
|
return this;
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
public Builder clone() {
|
|
|
|
|
return create().mergeFrom(result);
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
public com.google.protobuf.Descriptors.Descriptor
|
|
|
|
|
getDescriptorForType() {
|
|
|
|
|
return akka.remote.protocol.RemoteProtocol.RemoteTypedActorRefProtocol.getDescriptor();
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
public akka.remote.protocol.RemoteProtocol.RemoteTypedActorRefProtocol getDefaultInstanceForType() {
|
|
|
|
|
return akka.remote.protocol.RemoteProtocol.RemoteTypedActorRefProtocol.getDefaultInstance();
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
public boolean isInitialized() {
|
|
|
|
|
return result.isInitialized();
|
2010-06-22 10:02:19 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public akka.remote.protocol.RemoteProtocol.RemoteTypedActorRefProtocol build() {
|
|
|
|
|
if (result != null && !isInitialized()) {
|
|
|
|
|
throw newUninitializedMessageException(result);
|
|
|
|
|
}
|
|
|
|
|
return buildPartial();
|
2010-06-22 10:02:19 +02:00
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
private akka.remote.protocol.RemoteProtocol.RemoteTypedActorRefProtocol buildParsed()
|
|
|
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
|
|
|
if (!isInitialized()) {
|
|
|
|
|
throw newUninitializedMessageException(
|
|
|
|
|
result).asInvalidProtocolBufferException();
|
|
|
|
|
}
|
|
|
|
|
return buildPartial();
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
public akka.remote.protocol.RemoteProtocol.RemoteTypedActorRefProtocol buildPartial() {
|
|
|
|
|
if (result == null) {
|
|
|
|
|
throw new IllegalStateException(
|
|
|
|
|
"build() has already been called on this Builder.");
|
|
|
|
|
}
|
|
|
|
|
akka.remote.protocol.RemoteProtocol.RemoteTypedActorRefProtocol returnMe = result;
|
|
|
|
|
result = null;
|
|
|
|
|
return returnMe;
|
2010-09-17 09:56:36 +02:00
|
|
|
}
|
|
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
public Builder mergeFrom(com.google.protobuf.Message other) {
|
|
|
|
|
if (other instanceof akka.remote.protocol.RemoteProtocol.RemoteTypedActorRefProtocol) {
|
|
|
|
|
return mergeFrom((akka.remote.protocol.RemoteProtocol.RemoteTypedActorRefProtocol)other);
|
|
|
|
|
} else {
|
|
|
|
|
super.mergeFrom(other);
|
|
|
|
|
return this;
|
|
|
|
|
}
|
2010-09-17 09:56:36 +02:00
|
|
|
}
|
|
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
public Builder mergeFrom(akka.remote.protocol.RemoteProtocol.RemoteTypedActorRefProtocol other) {
|
|
|
|
|
if (other == akka.remote.protocol.RemoteProtocol.RemoteTypedActorRefProtocol.getDefaultInstance()) return this;
|
|
|
|
|
if (other.hasActorRef()) {
|
|
|
|
|
mergeActorRef(other.getActorRef());
|
2010-09-17 09:56:36 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
if (other.hasInterfaceName()) {
|
|
|
|
|
setInterfaceName(other.getInterfaceName());
|
2010-09-17 09:56:36 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
this.mergeUnknownFields(other.getUnknownFields());
|
2010-09-17 09:56:36 +02:00
|
|
|
return this;
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
|
|
|
|
|
public Builder mergeFrom(
|
|
|
|
|
com.google.protobuf.CodedInputStream input,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
com.google.protobuf.UnknownFieldSet.Builder unknownFields =
|
|
|
|
|
com.google.protobuf.UnknownFieldSet.newBuilder(
|
|
|
|
|
this.getUnknownFields());
|
|
|
|
|
while (true) {
|
|
|
|
|
int tag = input.readTag();
|
|
|
|
|
switch (tag) {
|
|
|
|
|
case 0:
|
|
|
|
|
this.setUnknownFields(unknownFields.build());
|
|
|
|
|
return this;
|
|
|
|
|
default: {
|
|
|
|
|
if (!parseUnknownField(input, unknownFields,
|
|
|
|
|
extensionRegistry, tag)) {
|
|
|
|
|
this.setUnknownFields(unknownFields.build());
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case 10: {
|
|
|
|
|
akka.remote.protocol.RemoteProtocol.RemoteActorRefProtocol.Builder subBuilder = akka.remote.protocol.RemoteProtocol.RemoteActorRefProtocol.newBuilder();
|
|
|
|
|
if (hasActorRef()) {
|
|
|
|
|
subBuilder.mergeFrom(getActorRef());
|
|
|
|
|
}
|
|
|
|
|
input.readMessage(subBuilder, extensionRegistry);
|
|
|
|
|
setActorRef(subBuilder.buildPartial());
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case 18: {
|
|
|
|
|
setInterfaceName(input.readString());
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2010-09-17 09:56:36 +02:00
|
|
|
}
|
|
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
|
|
|
|
|
// required .RemoteActorRefProtocol actorRef = 1;
|
|
|
|
|
public boolean hasActorRef() {
|
|
|
|
|
return result.hasActorRef();
|
2010-09-17 09:56:36 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public akka.remote.protocol.RemoteProtocol.RemoteActorRefProtocol getActorRef() {
|
|
|
|
|
return result.getActorRef();
|
2010-09-17 09:56:36 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public Builder setActorRef(akka.remote.protocol.RemoteProtocol.RemoteActorRefProtocol value) {
|
2010-09-17 09:56:36 +02:00
|
|
|
if (value == null) {
|
|
|
|
|
throw new NullPointerException();
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
result.hasActorRef = true;
|
|
|
|
|
result.actorRef_ = value;
|
2010-09-17 09:56:36 +02:00
|
|
|
return this;
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public Builder setActorRef(akka.remote.protocol.RemoteProtocol.RemoteActorRefProtocol.Builder builderForValue) {
|
|
|
|
|
result.hasActorRef = true;
|
|
|
|
|
result.actorRef_ = builderForValue.build();
|
2010-09-17 09:56:36 +02:00
|
|
|
return this;
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public Builder mergeActorRef(akka.remote.protocol.RemoteProtocol.RemoteActorRefProtocol value) {
|
|
|
|
|
if (result.hasActorRef() &&
|
|
|
|
|
result.actorRef_ != akka.remote.protocol.RemoteProtocol.RemoteActorRefProtocol.getDefaultInstance()) {
|
|
|
|
|
result.actorRef_ =
|
|
|
|
|
akka.remote.protocol.RemoteProtocol.RemoteActorRefProtocol.newBuilder(result.actorRef_).mergeFrom(value).buildPartial();
|
2010-09-17 09:56:36 +02:00
|
|
|
} else {
|
2011-03-05 14:48:37 +01:00
|
|
|
result.actorRef_ = value;
|
2010-09-17 09:56:36 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
result.hasActorRef = true;
|
2010-09-17 09:56:36 +02:00
|
|
|
return this;
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public Builder clearActorRef() {
|
|
|
|
|
result.hasActorRef = false;
|
|
|
|
|
result.actorRef_ = akka.remote.protocol.RemoteProtocol.RemoteActorRefProtocol.getDefaultInstance();
|
2010-09-17 09:56:36 +02:00
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
// required string interfaceName = 2;
|
|
|
|
|
public boolean hasInterfaceName() {
|
|
|
|
|
return result.hasInterfaceName();
|
2010-09-17 09:56:36 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public java.lang.String getInterfaceName() {
|
|
|
|
|
return result.getInterfaceName();
|
2010-09-17 09:56:36 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public Builder setInterfaceName(java.lang.String value) {
|
2010-09-17 09:56:36 +02:00
|
|
|
if (value == null) {
|
|
|
|
|
throw new NullPointerException();
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
result.hasInterfaceName = true;
|
|
|
|
|
result.interfaceName_ = value;
|
2010-09-17 09:56:36 +02:00
|
|
|
return this;
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public Builder clearInterfaceName() {
|
|
|
|
|
result.hasInterfaceName = false;
|
|
|
|
|
result.interfaceName_ = getDefaultInstance().getInterfaceName();
|
2010-09-17 09:56:36 +02:00
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
// @@protoc_insertion_point(builder_scope:RemoteTypedActorRefProtocol)
|
2010-09-17 09:56:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static {
|
2011-03-05 14:48:37 +01:00
|
|
|
defaultInstance = new RemoteTypedActorRefProtocol(true);
|
2010-10-26 12:49:25 +02:00
|
|
|
akka.remote.protocol.RemoteProtocol.internalForceInit();
|
2010-09-17 09:56:36 +02:00
|
|
|
defaultInstance.initFields();
|
|
|
|
|
}
|
|
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
// @@protoc_insertion_point(class_scope:RemoteTypedActorRefProtocol)
|
2010-09-17 09:56:36 +02:00
|
|
|
}
|
|
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
public static final class SerializedActorRefProtocol extends
|
2010-09-17 09:56:36 +02:00
|
|
|
com.google.protobuf.GeneratedMessage {
|
2011-03-05 14:48:37 +01:00
|
|
|
// Use SerializedActorRefProtocol.newBuilder() to construct.
|
|
|
|
|
private SerializedActorRefProtocol() {
|
2010-09-17 09:56:36 +02:00
|
|
|
initFields();
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
private SerializedActorRefProtocol(boolean noInit) {}
|
|
|
|
|
|
|
|
|
|
private static final SerializedActorRefProtocol defaultInstance;
|
|
|
|
|
public static SerializedActorRefProtocol getDefaultInstance() {
|
|
|
|
|
return defaultInstance;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public SerializedActorRefProtocol getDefaultInstanceForType() {
|
|
|
|
|
return defaultInstance;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static final com.google.protobuf.Descriptors.Descriptor
|
|
|
|
|
getDescriptor() {
|
|
|
|
|
return akka.remote.protocol.RemoteProtocol.internal_static_SerializedActorRefProtocol_descriptor;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
|
|
|
|
|
internalGetFieldAccessorTable() {
|
|
|
|
|
return akka.remote.protocol.RemoteProtocol.internal_static_SerializedActorRefProtocol_fieldAccessorTable;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// required .UuidProtocol uuid = 1;
|
|
|
|
|
public static final int UUID_FIELD_NUMBER = 1;
|
|
|
|
|
private boolean hasUuid;
|
|
|
|
|
private akka.remote.protocol.RemoteProtocol.UuidProtocol uuid_;
|
|
|
|
|
public boolean hasUuid() { return hasUuid; }
|
|
|
|
|
public akka.remote.protocol.RemoteProtocol.UuidProtocol getUuid() { return uuid_; }
|
|
|
|
|
|
2011-04-08 15:29:14 +02:00
|
|
|
// required string address = 2;
|
|
|
|
|
public static final int ADDRESS_FIELD_NUMBER = 2;
|
|
|
|
|
private boolean hasAddress;
|
|
|
|
|
private java.lang.String address_ = "";
|
|
|
|
|
public boolean hasAddress() { return hasAddress; }
|
|
|
|
|
public java.lang.String getAddress() { return address_; }
|
2011-03-05 14:48:37 +01:00
|
|
|
|
|
|
|
|
// required string actorClassname = 3;
|
|
|
|
|
public static final int ACTORCLASSNAME_FIELD_NUMBER = 3;
|
|
|
|
|
private boolean hasActorClassname;
|
|
|
|
|
private java.lang.String actorClassname_ = "";
|
|
|
|
|
public boolean hasActorClassname() { return hasActorClassname; }
|
|
|
|
|
public java.lang.String getActorClassname() { return actorClassname_; }
|
|
|
|
|
|
2011-04-08 15:29:14 +02:00
|
|
|
// optional bytes actorInstance = 4;
|
|
|
|
|
public static final int ACTORINSTANCE_FIELD_NUMBER = 4;
|
2011-03-05 14:48:37 +01:00
|
|
|
private boolean hasActorInstance;
|
|
|
|
|
private com.google.protobuf.ByteString actorInstance_ = com.google.protobuf.ByteString.EMPTY;
|
|
|
|
|
public boolean hasActorInstance() { return hasActorInstance; }
|
|
|
|
|
public com.google.protobuf.ByteString getActorInstance() { return actorInstance_; }
|
|
|
|
|
|
2011-04-08 15:29:14 +02:00
|
|
|
// optional string serializerClassname = 5;
|
|
|
|
|
public static final int SERIALIZERCLASSNAME_FIELD_NUMBER = 5;
|
2011-03-05 14:48:37 +01:00
|
|
|
private boolean hasSerializerClassname;
|
|
|
|
|
private java.lang.String serializerClassname_ = "";
|
|
|
|
|
public boolean hasSerializerClassname() { return hasSerializerClassname; }
|
|
|
|
|
public java.lang.String getSerializerClassname() { return serializerClassname_; }
|
|
|
|
|
|
2011-04-08 15:29:14 +02:00
|
|
|
// optional uint64 timeout = 6;
|
|
|
|
|
public static final int TIMEOUT_FIELD_NUMBER = 6;
|
2011-03-05 14:48:37 +01:00
|
|
|
private boolean hasTimeout;
|
|
|
|
|
private long timeout_ = 0L;
|
|
|
|
|
public boolean hasTimeout() { return hasTimeout; }
|
|
|
|
|
public long getTimeout() { return timeout_; }
|
|
|
|
|
|
2011-04-08 15:29:14 +02:00
|
|
|
// optional uint64 receiveTimeout = 7;
|
|
|
|
|
public static final int RECEIVETIMEOUT_FIELD_NUMBER = 7;
|
2011-03-05 14:48:37 +01:00
|
|
|
private boolean hasReceiveTimeout;
|
|
|
|
|
private long receiveTimeout_ = 0L;
|
|
|
|
|
public boolean hasReceiveTimeout() { return hasReceiveTimeout; }
|
|
|
|
|
public long getReceiveTimeout() { return receiveTimeout_; }
|
|
|
|
|
|
2011-04-08 15:29:14 +02:00
|
|
|
// optional .LifeCycleProtocol lifeCycle = 8;
|
|
|
|
|
public static final int LIFECYCLE_FIELD_NUMBER = 8;
|
2011-03-05 14:48:37 +01:00
|
|
|
private boolean hasLifeCycle;
|
|
|
|
|
private akka.remote.protocol.RemoteProtocol.LifeCycleProtocol lifeCycle_;
|
|
|
|
|
public boolean hasLifeCycle() { return hasLifeCycle; }
|
|
|
|
|
public akka.remote.protocol.RemoteProtocol.LifeCycleProtocol getLifeCycle() { return lifeCycle_; }
|
2010-09-17 09:56:36 +02:00
|
|
|
|
2011-04-08 15:29:14 +02:00
|
|
|
// optional .RemoteActorRefProtocol supervisor = 9;
|
|
|
|
|
public static final int SUPERVISOR_FIELD_NUMBER = 9;
|
2011-03-05 14:48:37 +01:00
|
|
|
private boolean hasSupervisor;
|
|
|
|
|
private akka.remote.protocol.RemoteProtocol.RemoteActorRefProtocol supervisor_;
|
|
|
|
|
public boolean hasSupervisor() { return hasSupervisor; }
|
|
|
|
|
public akka.remote.protocol.RemoteProtocol.RemoteActorRefProtocol getSupervisor() { return supervisor_; }
|
2010-09-17 09:56:36 +02:00
|
|
|
|
2011-04-08 15:29:14 +02:00
|
|
|
// optional bytes hotswapStack = 10;
|
|
|
|
|
public static final int HOTSWAPSTACK_FIELD_NUMBER = 10;
|
2011-03-05 14:48:37 +01:00
|
|
|
private boolean hasHotswapStack;
|
|
|
|
|
private com.google.protobuf.ByteString hotswapStack_ = com.google.protobuf.ByteString.EMPTY;
|
|
|
|
|
public boolean hasHotswapStack() { return hasHotswapStack; }
|
|
|
|
|
public com.google.protobuf.ByteString getHotswapStack() { return hotswapStack_; }
|
2010-09-17 09:56:36 +02:00
|
|
|
|
2011-04-08 15:29:14 +02:00
|
|
|
// repeated .RemoteMessageProtocol messages = 11;
|
|
|
|
|
public static final int MESSAGES_FIELD_NUMBER = 11;
|
2011-03-05 14:48:37 +01:00
|
|
|
private java.util.List<akka.remote.protocol.RemoteProtocol.RemoteMessageProtocol> messages_ =
|
|
|
|
|
java.util.Collections.emptyList();
|
|
|
|
|
public java.util.List<akka.remote.protocol.RemoteProtocol.RemoteMessageProtocol> getMessagesList() {
|
|
|
|
|
return messages_;
|
2010-09-17 09:56:36 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public int getMessagesCount() { return messages_.size(); }
|
|
|
|
|
public akka.remote.protocol.RemoteProtocol.RemoteMessageProtocol getMessages(int index) {
|
|
|
|
|
return messages_.get(index);
|
2010-09-17 09:56:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void initFields() {
|
2011-03-05 14:48:37 +01:00
|
|
|
uuid_ = akka.remote.protocol.RemoteProtocol.UuidProtocol.getDefaultInstance();
|
|
|
|
|
lifeCycle_ = akka.remote.protocol.RemoteProtocol.LifeCycleProtocol.getDefaultInstance();
|
|
|
|
|
supervisor_ = akka.remote.protocol.RemoteProtocol.RemoteActorRefProtocol.getDefaultInstance();
|
2010-09-17 09:56:36 +02:00
|
|
|
}
|
|
|
|
|
public final boolean isInitialized() {
|
2011-03-05 14:48:37 +01:00
|
|
|
if (!hasUuid) return false;
|
2011-04-08 15:29:14 +02:00
|
|
|
if (!hasAddress) return false;
|
2011-03-05 14:48:37 +01:00
|
|
|
if (!hasActorClassname) return false;
|
|
|
|
|
if (!getUuid().isInitialized()) return false;
|
|
|
|
|
if (hasLifeCycle()) {
|
|
|
|
|
if (!getLifeCycle().isInitialized()) return false;
|
|
|
|
|
}
|
|
|
|
|
if (hasSupervisor()) {
|
|
|
|
|
if (!getSupervisor().isInitialized()) return false;
|
|
|
|
|
}
|
|
|
|
|
for (akka.remote.protocol.RemoteProtocol.RemoteMessageProtocol element : getMessagesList()) {
|
|
|
|
|
if (!element.isInitialized()) return false;
|
|
|
|
|
}
|
2010-09-17 09:56:36 +02:00
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void writeTo(com.google.protobuf.CodedOutputStream output)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
getSerializedSize();
|
2011-03-05 14:48:37 +01:00
|
|
|
if (hasUuid()) {
|
|
|
|
|
output.writeMessage(1, getUuid());
|
2010-09-17 09:56:36 +02:00
|
|
|
}
|
2011-04-08 15:29:14 +02:00
|
|
|
if (hasAddress()) {
|
|
|
|
|
output.writeString(2, getAddress());
|
2011-03-05 14:48:37 +01:00
|
|
|
}
|
|
|
|
|
if (hasActorClassname()) {
|
|
|
|
|
output.writeString(3, getActorClassname());
|
|
|
|
|
}
|
|
|
|
|
if (hasActorInstance()) {
|
2011-04-08 15:29:14 +02:00
|
|
|
output.writeBytes(4, getActorInstance());
|
2011-03-05 14:48:37 +01:00
|
|
|
}
|
|
|
|
|
if (hasSerializerClassname()) {
|
2011-04-08 15:29:14 +02:00
|
|
|
output.writeString(5, getSerializerClassname());
|
2011-03-05 14:48:37 +01:00
|
|
|
}
|
|
|
|
|
if (hasTimeout()) {
|
2011-04-08 15:29:14 +02:00
|
|
|
output.writeUInt64(6, getTimeout());
|
2011-03-05 14:48:37 +01:00
|
|
|
}
|
|
|
|
|
if (hasReceiveTimeout()) {
|
2011-04-08 15:29:14 +02:00
|
|
|
output.writeUInt64(7, getReceiveTimeout());
|
2011-03-05 14:48:37 +01:00
|
|
|
}
|
|
|
|
|
if (hasLifeCycle()) {
|
2011-04-08 15:29:14 +02:00
|
|
|
output.writeMessage(8, getLifeCycle());
|
2011-03-05 14:48:37 +01:00
|
|
|
}
|
|
|
|
|
if (hasSupervisor()) {
|
2011-04-08 15:29:14 +02:00
|
|
|
output.writeMessage(9, getSupervisor());
|
2011-03-05 14:48:37 +01:00
|
|
|
}
|
|
|
|
|
if (hasHotswapStack()) {
|
2011-04-08 15:29:14 +02:00
|
|
|
output.writeBytes(10, getHotswapStack());
|
2011-03-05 14:48:37 +01:00
|
|
|
}
|
|
|
|
|
for (akka.remote.protocol.RemoteProtocol.RemoteMessageProtocol element : getMessagesList()) {
|
2011-04-08 15:29:14 +02:00
|
|
|
output.writeMessage(11, element);
|
2010-09-17 09:56:36 +02:00
|
|
|
}
|
|
|
|
|
getUnknownFields().writeTo(output);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private int memoizedSerializedSize = -1;
|
|
|
|
|
public int getSerializedSize() {
|
|
|
|
|
int size = memoizedSerializedSize;
|
|
|
|
|
if (size != -1) return size;
|
|
|
|
|
|
|
|
|
|
size = 0;
|
2011-03-05 14:48:37 +01:00
|
|
|
if (hasUuid()) {
|
2010-09-17 09:56:36 +02:00
|
|
|
size += com.google.protobuf.CodedOutputStream
|
2011-03-05 14:48:37 +01:00
|
|
|
.computeMessageSize(1, getUuid());
|
2010-09-17 09:56:36 +02:00
|
|
|
}
|
2011-04-08 15:29:14 +02:00
|
|
|
if (hasAddress()) {
|
2010-09-17 09:56:36 +02:00
|
|
|
size += com.google.protobuf.CodedOutputStream
|
2011-04-08 15:29:14 +02:00
|
|
|
.computeStringSize(2, getAddress());
|
2011-03-05 14:48:37 +01:00
|
|
|
}
|
|
|
|
|
if (hasActorClassname()) {
|
|
|
|
|
size += com.google.protobuf.CodedOutputStream
|
|
|
|
|
.computeStringSize(3, getActorClassname());
|
|
|
|
|
}
|
|
|
|
|
if (hasActorInstance()) {
|
|
|
|
|
size += com.google.protobuf.CodedOutputStream
|
2011-04-08 15:29:14 +02:00
|
|
|
.computeBytesSize(4, getActorInstance());
|
2011-03-05 14:48:37 +01:00
|
|
|
}
|
|
|
|
|
if (hasSerializerClassname()) {
|
|
|
|
|
size += com.google.protobuf.CodedOutputStream
|
2011-04-08 15:29:14 +02:00
|
|
|
.computeStringSize(5, getSerializerClassname());
|
2011-03-05 14:48:37 +01:00
|
|
|
}
|
|
|
|
|
if (hasTimeout()) {
|
|
|
|
|
size += com.google.protobuf.CodedOutputStream
|
2011-04-08 15:29:14 +02:00
|
|
|
.computeUInt64Size(6, getTimeout());
|
2011-03-05 14:48:37 +01:00
|
|
|
}
|
|
|
|
|
if (hasReceiveTimeout()) {
|
|
|
|
|
size += com.google.protobuf.CodedOutputStream
|
2011-04-08 15:29:14 +02:00
|
|
|
.computeUInt64Size(7, getReceiveTimeout());
|
2011-03-05 14:48:37 +01:00
|
|
|
}
|
|
|
|
|
if (hasLifeCycle()) {
|
|
|
|
|
size += com.google.protobuf.CodedOutputStream
|
2011-04-08 15:29:14 +02:00
|
|
|
.computeMessageSize(8, getLifeCycle());
|
2011-03-05 14:48:37 +01:00
|
|
|
}
|
|
|
|
|
if (hasSupervisor()) {
|
|
|
|
|
size += com.google.protobuf.CodedOutputStream
|
2011-04-08 15:29:14 +02:00
|
|
|
.computeMessageSize(9, getSupervisor());
|
2011-03-05 14:48:37 +01:00
|
|
|
}
|
|
|
|
|
if (hasHotswapStack()) {
|
|
|
|
|
size += com.google.protobuf.CodedOutputStream
|
2011-04-08 15:29:14 +02:00
|
|
|
.computeBytesSize(10, getHotswapStack());
|
2011-03-05 14:48:37 +01:00
|
|
|
}
|
|
|
|
|
for (akka.remote.protocol.RemoteProtocol.RemoteMessageProtocol element : getMessagesList()) {
|
|
|
|
|
size += com.google.protobuf.CodedOutputStream
|
2011-04-08 15:29:14 +02:00
|
|
|
.computeMessageSize(11, element);
|
2010-09-17 09:56:36 +02:00
|
|
|
}
|
|
|
|
|
size += getUnknownFields().getSerializedSize();
|
|
|
|
|
memoizedSerializedSize = size;
|
|
|
|
|
return size;
|
|
|
|
|
}
|
|
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.SerializedActorRefProtocol parseFrom(
|
2010-09-17 09:56:36 +02:00
|
|
|
com.google.protobuf.ByteString data)
|
|
|
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
|
|
|
return newBuilder().mergeFrom(data).buildParsed();
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.SerializedActorRefProtocol parseFrom(
|
2010-09-17 09:56:36 +02:00
|
|
|
com.google.protobuf.ByteString data,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
|
|
|
return newBuilder().mergeFrom(data, extensionRegistry)
|
|
|
|
|
.buildParsed();
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.SerializedActorRefProtocol parseFrom(byte[] data)
|
2010-09-17 09:56:36 +02:00
|
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
|
|
|
return newBuilder().mergeFrom(data).buildParsed();
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.SerializedActorRefProtocol parseFrom(
|
2010-09-17 09:56:36 +02:00
|
|
|
byte[] data,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
|
|
|
return newBuilder().mergeFrom(data, extensionRegistry)
|
|
|
|
|
.buildParsed();
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.SerializedActorRefProtocol parseFrom(java.io.InputStream input)
|
2010-09-17 09:56:36 +02:00
|
|
|
throws java.io.IOException {
|
|
|
|
|
return newBuilder().mergeFrom(input).buildParsed();
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.SerializedActorRefProtocol parseFrom(
|
2010-09-17 09:56:36 +02:00
|
|
|
java.io.InputStream input,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
return newBuilder().mergeFrom(input, extensionRegistry)
|
|
|
|
|
.buildParsed();
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.SerializedActorRefProtocol parseDelimitedFrom(java.io.InputStream input)
|
2010-09-17 09:56:36 +02:00
|
|
|
throws java.io.IOException {
|
|
|
|
|
Builder builder = newBuilder();
|
|
|
|
|
if (builder.mergeDelimitedFrom(input)) {
|
|
|
|
|
return builder.buildParsed();
|
|
|
|
|
} else {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.SerializedActorRefProtocol parseDelimitedFrom(
|
2010-09-17 09:56:36 +02:00
|
|
|
java.io.InputStream input,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
Builder builder = newBuilder();
|
|
|
|
|
if (builder.mergeDelimitedFrom(input, extensionRegistry)) {
|
|
|
|
|
return builder.buildParsed();
|
|
|
|
|
} else {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.SerializedActorRefProtocol parseFrom(
|
2010-09-17 09:56:36 +02:00
|
|
|
com.google.protobuf.CodedInputStream input)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
return newBuilder().mergeFrom(input).buildParsed();
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.SerializedActorRefProtocol parseFrom(
|
2010-09-17 09:56:36 +02:00
|
|
|
com.google.protobuf.CodedInputStream input,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
return newBuilder().mergeFrom(input, extensionRegistry)
|
|
|
|
|
.buildParsed();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static Builder newBuilder() { return Builder.create(); }
|
|
|
|
|
public Builder newBuilderForType() { return newBuilder(); }
|
2011-03-05 14:48:37 +01:00
|
|
|
public static Builder newBuilder(akka.remote.protocol.RemoteProtocol.SerializedActorRefProtocol prototype) {
|
2010-09-17 09:56:36 +02:00
|
|
|
return newBuilder().mergeFrom(prototype);
|
|
|
|
|
}
|
|
|
|
|
public Builder toBuilder() { return newBuilder(this); }
|
|
|
|
|
|
|
|
|
|
public static final class Builder extends
|
|
|
|
|
com.google.protobuf.GeneratedMessage.Builder<Builder> {
|
2011-03-05 14:48:37 +01:00
|
|
|
private akka.remote.protocol.RemoteProtocol.SerializedActorRefProtocol result;
|
2010-09-17 09:56:36 +02:00
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
// Construct using akka.remote.protocol.RemoteProtocol.SerializedActorRefProtocol.newBuilder()
|
2010-09-17 09:56:36 +02:00
|
|
|
private Builder() {}
|
|
|
|
|
|
|
|
|
|
private static Builder create() {
|
|
|
|
|
Builder builder = new Builder();
|
2011-03-05 14:48:37 +01:00
|
|
|
builder.result = new akka.remote.protocol.RemoteProtocol.SerializedActorRefProtocol();
|
2010-09-17 09:56:36 +02:00
|
|
|
return builder;
|
2010-06-22 07:22:47 +02:00
|
|
|
}
|
2010-09-17 09:56:36 +02:00
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
protected akka.remote.protocol.RemoteProtocol.SerializedActorRefProtocol internalGetResult() {
|
2010-09-17 09:56:36 +02:00
|
|
|
return result;
|
2010-06-22 07:22:47 +02:00
|
|
|
}
|
2010-09-17 09:56:36 +02:00
|
|
|
|
|
|
|
|
public Builder clear() {
|
|
|
|
|
if (result == null) {
|
|
|
|
|
throw new IllegalStateException(
|
|
|
|
|
"Cannot call clear() after build().");
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
result = new akka.remote.protocol.RemoteProtocol.SerializedActorRefProtocol();
|
2010-06-22 07:22:47 +02:00
|
|
|
return this;
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-09-17 09:56:36 +02:00
|
|
|
public Builder clone() {
|
|
|
|
|
return create().mergeFrom(result);
|
2010-07-14 15:35:07 +02:00
|
|
|
}
|
2010-09-17 09:56:36 +02:00
|
|
|
|
|
|
|
|
public com.google.protobuf.Descriptors.Descriptor
|
|
|
|
|
getDescriptorForType() {
|
2011-03-05 14:48:37 +01:00
|
|
|
return akka.remote.protocol.RemoteProtocol.SerializedActorRefProtocol.getDescriptor();
|
2010-07-14 15:35:07 +02:00
|
|
|
}
|
2010-09-17 09:56:36 +02:00
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
public akka.remote.protocol.RemoteProtocol.SerializedActorRefProtocol getDefaultInstanceForType() {
|
|
|
|
|
return akka.remote.protocol.RemoteProtocol.SerializedActorRefProtocol.getDefaultInstance();
|
2010-07-14 15:35:07 +02:00
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-09-17 09:56:36 +02:00
|
|
|
public boolean isInitialized() {
|
|
|
|
|
return result.isInitialized();
|
2010-06-22 07:22:47 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public akka.remote.protocol.RemoteProtocol.SerializedActorRefProtocol build() {
|
2010-09-17 09:56:36 +02:00
|
|
|
if (result != null && !isInitialized()) {
|
|
|
|
|
throw newUninitializedMessageException(result);
|
|
|
|
|
}
|
|
|
|
|
return buildPartial();
|
2010-06-22 07:22:47 +02:00
|
|
|
}
|
2010-09-17 09:56:36 +02:00
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
private akka.remote.protocol.RemoteProtocol.SerializedActorRefProtocol buildParsed()
|
2010-09-17 09:56:36 +02:00
|
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
|
|
|
if (!isInitialized()) {
|
|
|
|
|
throw newUninitializedMessageException(
|
|
|
|
|
result).asInvalidProtocolBufferException();
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
2010-09-17 09:56:36 +02:00
|
|
|
return buildPartial();
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
2010-09-17 09:56:36 +02:00
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
public akka.remote.protocol.RemoteProtocol.SerializedActorRefProtocol buildPartial() {
|
2010-09-17 09:56:36 +02:00
|
|
|
if (result == null) {
|
|
|
|
|
throw new IllegalStateException(
|
|
|
|
|
"build() has already been called on this Builder.");
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
if (result.messages_ != java.util.Collections.EMPTY_LIST) {
|
|
|
|
|
result.messages_ =
|
|
|
|
|
java.util.Collections.unmodifiableList(result.messages_);
|
|
|
|
|
}
|
|
|
|
|
akka.remote.protocol.RemoteProtocol.SerializedActorRefProtocol returnMe = result;
|
2010-09-17 09:56:36 +02:00
|
|
|
result = null;
|
|
|
|
|
return returnMe;
|
2010-06-22 07:22:47 +02:00
|
|
|
}
|
2010-09-17 09:56:36 +02:00
|
|
|
|
|
|
|
|
public Builder mergeFrom(com.google.protobuf.Message other) {
|
2011-03-05 14:48:37 +01:00
|
|
|
if (other instanceof akka.remote.protocol.RemoteProtocol.SerializedActorRefProtocol) {
|
|
|
|
|
return mergeFrom((akka.remote.protocol.RemoteProtocol.SerializedActorRefProtocol)other);
|
2010-06-22 07:22:47 +02:00
|
|
|
} else {
|
2010-09-17 09:56:36 +02:00
|
|
|
super.mergeFrom(other);
|
|
|
|
|
return this;
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
2010-06-22 07:22:47 +02:00
|
|
|
}
|
2010-09-17 09:56:36 +02:00
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
public Builder mergeFrom(akka.remote.protocol.RemoteProtocol.SerializedActorRefProtocol other) {
|
|
|
|
|
if (other == akka.remote.protocol.RemoteProtocol.SerializedActorRefProtocol.getDefaultInstance()) return this;
|
|
|
|
|
if (other.hasUuid()) {
|
|
|
|
|
mergeUuid(other.getUuid());
|
2010-09-17 09:56:36 +02:00
|
|
|
}
|
2011-04-08 15:29:14 +02:00
|
|
|
if (other.hasAddress()) {
|
|
|
|
|
setAddress(other.getAddress());
|
2011-03-05 14:48:37 +01:00
|
|
|
}
|
|
|
|
|
if (other.hasActorClassname()) {
|
|
|
|
|
setActorClassname(other.getActorClassname());
|
|
|
|
|
}
|
|
|
|
|
if (other.hasActorInstance()) {
|
|
|
|
|
setActorInstance(other.getActorInstance());
|
|
|
|
|
}
|
|
|
|
|
if (other.hasSerializerClassname()) {
|
|
|
|
|
setSerializerClassname(other.getSerializerClassname());
|
|
|
|
|
}
|
|
|
|
|
if (other.hasTimeout()) {
|
|
|
|
|
setTimeout(other.getTimeout());
|
|
|
|
|
}
|
|
|
|
|
if (other.hasReceiveTimeout()) {
|
|
|
|
|
setReceiveTimeout(other.getReceiveTimeout());
|
|
|
|
|
}
|
|
|
|
|
if (other.hasLifeCycle()) {
|
|
|
|
|
mergeLifeCycle(other.getLifeCycle());
|
|
|
|
|
}
|
|
|
|
|
if (other.hasSupervisor()) {
|
|
|
|
|
mergeSupervisor(other.getSupervisor());
|
|
|
|
|
}
|
|
|
|
|
if (other.hasHotswapStack()) {
|
|
|
|
|
setHotswapStack(other.getHotswapStack());
|
|
|
|
|
}
|
|
|
|
|
if (!other.messages_.isEmpty()) {
|
|
|
|
|
if (result.messages_.isEmpty()) {
|
|
|
|
|
result.messages_ = new java.util.ArrayList<akka.remote.protocol.RemoteProtocol.RemoteMessageProtocol>();
|
|
|
|
|
}
|
|
|
|
|
result.messages_.addAll(other.messages_);
|
2010-09-17 09:56:36 +02:00
|
|
|
}
|
|
|
|
|
this.mergeUnknownFields(other.getUnknownFields());
|
2010-06-22 07:22:47 +02:00
|
|
|
return this;
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-09-17 09:56:36 +02:00
|
|
|
public Builder mergeFrom(
|
|
|
|
|
com.google.protobuf.CodedInputStream input,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
com.google.protobuf.UnknownFieldSet.Builder unknownFields =
|
|
|
|
|
com.google.protobuf.UnknownFieldSet.newBuilder(
|
|
|
|
|
this.getUnknownFields());
|
|
|
|
|
while (true) {
|
|
|
|
|
int tag = input.readTag();
|
|
|
|
|
switch (tag) {
|
|
|
|
|
case 0:
|
|
|
|
|
this.setUnknownFields(unknownFields.build());
|
|
|
|
|
return this;
|
|
|
|
|
default: {
|
|
|
|
|
if (!parseUnknownField(input, unknownFields,
|
|
|
|
|
extensionRegistry, tag)) {
|
|
|
|
|
this.setUnknownFields(unknownFields.build());
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case 10: {
|
2011-03-05 14:48:37 +01:00
|
|
|
akka.remote.protocol.RemoteProtocol.UuidProtocol.Builder subBuilder = akka.remote.protocol.RemoteProtocol.UuidProtocol.newBuilder();
|
|
|
|
|
if (hasUuid()) {
|
|
|
|
|
subBuilder.mergeFrom(getUuid());
|
2010-09-17 09:56:36 +02:00
|
|
|
}
|
|
|
|
|
input.readMessage(subBuilder, extensionRegistry);
|
2011-03-05 14:48:37 +01:00
|
|
|
setUuid(subBuilder.buildPartial());
|
2010-09-17 09:56:36 +02:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case 18: {
|
2011-04-08 15:29:14 +02:00
|
|
|
setAddress(input.readString());
|
2011-03-05 14:48:37 +01:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case 26: {
|
|
|
|
|
setActorClassname(input.readString());
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case 34: {
|
|
|
|
|
setActorInstance(input.readBytes());
|
|
|
|
|
break;
|
|
|
|
|
}
|
2011-04-08 15:29:14 +02:00
|
|
|
case 42: {
|
2011-03-05 14:48:37 +01:00
|
|
|
setSerializerClassname(input.readString());
|
|
|
|
|
break;
|
|
|
|
|
}
|
2011-04-08 15:29:14 +02:00
|
|
|
case 48: {
|
2011-03-05 14:48:37 +01:00
|
|
|
setTimeout(input.readUInt64());
|
|
|
|
|
break;
|
|
|
|
|
}
|
2011-04-08 15:29:14 +02:00
|
|
|
case 56: {
|
2011-03-05 14:48:37 +01:00
|
|
|
setReceiveTimeout(input.readUInt64());
|
|
|
|
|
break;
|
|
|
|
|
}
|
2011-04-08 15:29:14 +02:00
|
|
|
case 66: {
|
2011-03-05 14:48:37 +01:00
|
|
|
akka.remote.protocol.RemoteProtocol.LifeCycleProtocol.Builder subBuilder = akka.remote.protocol.RemoteProtocol.LifeCycleProtocol.newBuilder();
|
|
|
|
|
if (hasLifeCycle()) {
|
|
|
|
|
subBuilder.mergeFrom(getLifeCycle());
|
|
|
|
|
}
|
|
|
|
|
input.readMessage(subBuilder, extensionRegistry);
|
|
|
|
|
setLifeCycle(subBuilder.buildPartial());
|
|
|
|
|
break;
|
|
|
|
|
}
|
2011-04-08 15:29:14 +02:00
|
|
|
case 74: {
|
2011-03-05 14:48:37 +01:00
|
|
|
akka.remote.protocol.RemoteProtocol.RemoteActorRefProtocol.Builder subBuilder = akka.remote.protocol.RemoteProtocol.RemoteActorRefProtocol.newBuilder();
|
|
|
|
|
if (hasSupervisor()) {
|
|
|
|
|
subBuilder.mergeFrom(getSupervisor());
|
|
|
|
|
}
|
|
|
|
|
input.readMessage(subBuilder, extensionRegistry);
|
|
|
|
|
setSupervisor(subBuilder.buildPartial());
|
|
|
|
|
break;
|
|
|
|
|
}
|
2011-04-08 15:29:14 +02:00
|
|
|
case 82: {
|
2011-03-05 14:48:37 +01:00
|
|
|
setHotswapStack(input.readBytes());
|
|
|
|
|
break;
|
|
|
|
|
}
|
2011-04-08 15:29:14 +02:00
|
|
|
case 90: {
|
2011-03-05 14:48:37 +01:00
|
|
|
akka.remote.protocol.RemoteProtocol.RemoteMessageProtocol.Builder subBuilder = akka.remote.protocol.RemoteProtocol.RemoteMessageProtocol.newBuilder();
|
|
|
|
|
input.readMessage(subBuilder, extensionRegistry);
|
|
|
|
|
addMessages(subBuilder.buildPartial());
|
2010-09-17 09:56:36 +02:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
2010-09-17 09:56:36 +02:00
|
|
|
|
|
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
// required .UuidProtocol uuid = 1;
|
|
|
|
|
public boolean hasUuid() {
|
|
|
|
|
return result.hasUuid();
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public akka.remote.protocol.RemoteProtocol.UuidProtocol getUuid() {
|
|
|
|
|
return result.getUuid();
|
2010-09-17 09:56:36 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public Builder setUuid(akka.remote.protocol.RemoteProtocol.UuidProtocol value) {
|
2010-06-10 11:39:26 +02:00
|
|
|
if (value == null) {
|
2010-06-22 07:22:47 +02:00
|
|
|
throw new NullPointerException();
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
result.hasUuid = true;
|
|
|
|
|
result.uuid_ = value;
|
2010-06-10 11:39:26 +02:00
|
|
|
return this;
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public Builder setUuid(akka.remote.protocol.RemoteProtocol.UuidProtocol.Builder builderForValue) {
|
|
|
|
|
result.hasUuid = true;
|
|
|
|
|
result.uuid_ = builderForValue.build();
|
2010-06-22 07:22:47 +02:00
|
|
|
return this;
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public Builder mergeUuid(akka.remote.protocol.RemoteProtocol.UuidProtocol value) {
|
|
|
|
|
if (result.hasUuid() &&
|
|
|
|
|
result.uuid_ != akka.remote.protocol.RemoteProtocol.UuidProtocol.getDefaultInstance()) {
|
|
|
|
|
result.uuid_ =
|
|
|
|
|
akka.remote.protocol.RemoteProtocol.UuidProtocol.newBuilder(result.uuid_).mergeFrom(value).buildPartial();
|
2010-06-22 07:22:47 +02:00
|
|
|
} else {
|
2011-03-05 14:48:37 +01:00
|
|
|
result.uuid_ = value;
|
2010-06-22 07:22:47 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
result.hasUuid = true;
|
2010-06-22 07:22:47 +02:00
|
|
|
return this;
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public Builder clearUuid() {
|
|
|
|
|
result.hasUuid = false;
|
|
|
|
|
result.uuid_ = akka.remote.protocol.RemoteProtocol.UuidProtocol.getDefaultInstance();
|
2010-06-10 11:39:26 +02:00
|
|
|
return this;
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2011-04-08 15:29:14 +02:00
|
|
|
// required string address = 2;
|
|
|
|
|
public boolean hasAddress() {
|
|
|
|
|
return result.hasAddress();
|
2010-06-24 08:48:48 +02:00
|
|
|
}
|
2011-04-08 15:29:14 +02:00
|
|
|
public java.lang.String getAddress() {
|
|
|
|
|
return result.getAddress();
|
2010-06-24 08:48:48 +02:00
|
|
|
}
|
2011-04-08 15:29:14 +02:00
|
|
|
public Builder setAddress(java.lang.String value) {
|
2010-06-24 08:48:48 +02:00
|
|
|
if (value == null) {
|
|
|
|
|
throw new NullPointerException();
|
|
|
|
|
}
|
2011-04-08 15:29:14 +02:00
|
|
|
result.hasAddress = true;
|
|
|
|
|
result.address_ = value;
|
2010-06-24 08:48:48 +02:00
|
|
|
return this;
|
|
|
|
|
}
|
2011-04-08 15:29:14 +02:00
|
|
|
public Builder clearAddress() {
|
|
|
|
|
result.hasAddress = false;
|
|
|
|
|
result.address_ = getDefaultInstance().getAddress();
|
2010-06-24 08:48:48 +02:00
|
|
|
return this;
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
// required string actorClassname = 3;
|
|
|
|
|
public boolean hasActorClassname() {
|
|
|
|
|
return result.hasActorClassname();
|
|
|
|
|
}
|
|
|
|
|
public java.lang.String getActorClassname() {
|
|
|
|
|
return result.getActorClassname();
|
|
|
|
|
}
|
|
|
|
|
public Builder setActorClassname(java.lang.String value) {
|
|
|
|
|
if (value == null) {
|
|
|
|
|
throw new NullPointerException();
|
2010-06-24 08:48:48 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
result.hasActorClassname = true;
|
|
|
|
|
result.actorClassname_ = value;
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
public Builder clearActorClassname() {
|
|
|
|
|
result.hasActorClassname = false;
|
|
|
|
|
result.actorClassname_ = getDefaultInstance().getActorClassname();
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
|
2011-04-08 15:29:14 +02:00
|
|
|
// optional bytes actorInstance = 4;
|
2011-03-05 14:48:37 +01:00
|
|
|
public boolean hasActorInstance() {
|
|
|
|
|
return result.hasActorInstance();
|
2010-06-24 08:48:48 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public com.google.protobuf.ByteString getActorInstance() {
|
|
|
|
|
return result.getActorInstance();
|
2010-06-24 08:48:48 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public Builder setActorInstance(com.google.protobuf.ByteString value) {
|
|
|
|
|
if (value == null) {
|
|
|
|
|
throw new NullPointerException();
|
|
|
|
|
}
|
|
|
|
|
result.hasActorInstance = true;
|
|
|
|
|
result.actorInstance_ = value;
|
|
|
|
|
return this;
|
2010-06-24 08:48:48 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public Builder clearActorInstance() {
|
|
|
|
|
result.hasActorInstance = false;
|
|
|
|
|
result.actorInstance_ = getDefaultInstance().getActorInstance();
|
|
|
|
|
return this;
|
2010-06-24 08:48:48 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
|
2011-04-08 15:29:14 +02:00
|
|
|
// optional string serializerClassname = 5;
|
2011-03-05 14:48:37 +01:00
|
|
|
public boolean hasSerializerClassname() {
|
|
|
|
|
return result.hasSerializerClassname();
|
2010-06-24 08:48:48 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public java.lang.String getSerializerClassname() {
|
|
|
|
|
return result.getSerializerClassname();
|
2010-06-24 08:48:48 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public Builder setSerializerClassname(java.lang.String value) {
|
|
|
|
|
if (value == null) {
|
|
|
|
|
throw new NullPointerException();
|
|
|
|
|
}
|
|
|
|
|
result.hasSerializerClassname = true;
|
|
|
|
|
result.serializerClassname_ = value;
|
|
|
|
|
return this;
|
2010-06-24 08:48:48 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public Builder clearSerializerClassname() {
|
|
|
|
|
result.hasSerializerClassname = false;
|
|
|
|
|
result.serializerClassname_ = getDefaultInstance().getSerializerClassname();
|
|
|
|
|
return this;
|
2010-06-24 08:48:48 +02:00
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2011-04-08 15:29:14 +02:00
|
|
|
// optional uint64 timeout = 6;
|
2011-03-05 14:48:37 +01:00
|
|
|
public boolean hasTimeout() {
|
|
|
|
|
return result.hasTimeout();
|
2010-06-24 08:48:48 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public long getTimeout() {
|
|
|
|
|
return result.getTimeout();
|
|
|
|
|
}
|
|
|
|
|
public Builder setTimeout(long value) {
|
|
|
|
|
result.hasTimeout = true;
|
|
|
|
|
result.timeout_ = value;
|
2010-06-24 08:48:48 +02:00
|
|
|
return this;
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public Builder clearTimeout() {
|
|
|
|
|
result.hasTimeout = false;
|
|
|
|
|
result.timeout_ = 0L;
|
|
|
|
|
return this;
|
2010-06-24 08:48:48 +02:00
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2011-04-08 15:29:14 +02:00
|
|
|
// optional uint64 receiveTimeout = 7;
|
2011-03-05 14:48:37 +01:00
|
|
|
public boolean hasReceiveTimeout() {
|
|
|
|
|
return result.hasReceiveTimeout();
|
2010-06-24 08:48:48 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public long getReceiveTimeout() {
|
|
|
|
|
return result.getReceiveTimeout();
|
2010-06-24 08:48:48 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public Builder setReceiveTimeout(long value) {
|
|
|
|
|
result.hasReceiveTimeout = true;
|
|
|
|
|
result.receiveTimeout_ = value;
|
|
|
|
|
return this;
|
2010-06-24 08:48:48 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public Builder clearReceiveTimeout() {
|
|
|
|
|
result.hasReceiveTimeout = false;
|
|
|
|
|
result.receiveTimeout_ = 0L;
|
|
|
|
|
return this;
|
2010-06-24 08:48:48 +02:00
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2011-04-08 15:29:14 +02:00
|
|
|
// optional .LifeCycleProtocol lifeCycle = 8;
|
2011-03-05 14:48:37 +01:00
|
|
|
public boolean hasLifeCycle() {
|
|
|
|
|
return result.hasLifeCycle();
|
2010-06-24 08:48:48 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public akka.remote.protocol.RemoteProtocol.LifeCycleProtocol getLifeCycle() {
|
|
|
|
|
return result.getLifeCycle();
|
2010-06-24 08:48:48 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public Builder setLifeCycle(akka.remote.protocol.RemoteProtocol.LifeCycleProtocol value) {
|
|
|
|
|
if (value == null) {
|
|
|
|
|
throw new NullPointerException();
|
2010-06-24 08:48:48 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
result.hasLifeCycle = true;
|
|
|
|
|
result.lifeCycle_ = value;
|
|
|
|
|
return this;
|
2010-06-24 08:48:48 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public Builder setLifeCycle(akka.remote.protocol.RemoteProtocol.LifeCycleProtocol.Builder builderForValue) {
|
|
|
|
|
result.hasLifeCycle = true;
|
|
|
|
|
result.lifeCycle_ = builderForValue.build();
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
public Builder mergeLifeCycle(akka.remote.protocol.RemoteProtocol.LifeCycleProtocol value) {
|
|
|
|
|
if (result.hasLifeCycle() &&
|
|
|
|
|
result.lifeCycle_ != akka.remote.protocol.RemoteProtocol.LifeCycleProtocol.getDefaultInstance()) {
|
|
|
|
|
result.lifeCycle_ =
|
|
|
|
|
akka.remote.protocol.RemoteProtocol.LifeCycleProtocol.newBuilder(result.lifeCycle_).mergeFrom(value).buildPartial();
|
|
|
|
|
} else {
|
|
|
|
|
result.lifeCycle_ = value;
|
2010-06-24 08:48:48 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
result.hasLifeCycle = true;
|
2010-06-24 08:48:48 +02:00
|
|
|
return this;
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public Builder clearLifeCycle() {
|
|
|
|
|
result.hasLifeCycle = false;
|
|
|
|
|
result.lifeCycle_ = akka.remote.protocol.RemoteProtocol.LifeCycleProtocol.getDefaultInstance();
|
|
|
|
|
return this;
|
2010-06-24 08:48:48 +02:00
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2011-04-08 15:29:14 +02:00
|
|
|
// optional .RemoteActorRefProtocol supervisor = 9;
|
2011-03-05 14:48:37 +01:00
|
|
|
public boolean hasSupervisor() {
|
|
|
|
|
return result.hasSupervisor();
|
2010-06-24 08:48:48 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public akka.remote.protocol.RemoteProtocol.RemoteActorRefProtocol getSupervisor() {
|
|
|
|
|
return result.getSupervisor();
|
2010-06-24 08:48:48 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public Builder setSupervisor(akka.remote.protocol.RemoteProtocol.RemoteActorRefProtocol value) {
|
2010-06-24 08:48:48 +02:00
|
|
|
if (value == null) {
|
|
|
|
|
throw new NullPointerException();
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
result.hasSupervisor = true;
|
|
|
|
|
result.supervisor_ = value;
|
2010-06-24 08:48:48 +02:00
|
|
|
return this;
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public Builder setSupervisor(akka.remote.protocol.RemoteProtocol.RemoteActorRefProtocol.Builder builderForValue) {
|
|
|
|
|
result.hasSupervisor = true;
|
|
|
|
|
result.supervisor_ = builderForValue.build();
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
public Builder mergeSupervisor(akka.remote.protocol.RemoteProtocol.RemoteActorRefProtocol value) {
|
|
|
|
|
if (result.hasSupervisor() &&
|
|
|
|
|
result.supervisor_ != akka.remote.protocol.RemoteProtocol.RemoteActorRefProtocol.getDefaultInstance()) {
|
|
|
|
|
result.supervisor_ =
|
|
|
|
|
akka.remote.protocol.RemoteProtocol.RemoteActorRefProtocol.newBuilder(result.supervisor_).mergeFrom(value).buildPartial();
|
|
|
|
|
} else {
|
|
|
|
|
result.supervisor_ = value;
|
|
|
|
|
}
|
|
|
|
|
result.hasSupervisor = true;
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
public Builder clearSupervisor() {
|
|
|
|
|
result.hasSupervisor = false;
|
|
|
|
|
result.supervisor_ = akka.remote.protocol.RemoteProtocol.RemoteActorRefProtocol.getDefaultInstance();
|
2010-06-24 08:48:48 +02:00
|
|
|
return this;
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2011-04-08 15:29:14 +02:00
|
|
|
// optional bytes hotswapStack = 10;
|
2011-03-05 14:48:37 +01:00
|
|
|
public boolean hasHotswapStack() {
|
|
|
|
|
return result.hasHotswapStack();
|
2010-06-24 08:48:48 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public com.google.protobuf.ByteString getHotswapStack() {
|
|
|
|
|
return result.getHotswapStack();
|
2010-06-24 08:48:48 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public Builder setHotswapStack(com.google.protobuf.ByteString value) {
|
2010-06-24 08:48:48 +02:00
|
|
|
if (value == null) {
|
|
|
|
|
throw new NullPointerException();
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
result.hasHotswapStack = true;
|
|
|
|
|
result.hotswapStack_ = value;
|
2010-06-24 08:48:48 +02:00
|
|
|
return this;
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public Builder clearHotswapStack() {
|
|
|
|
|
result.hasHotswapStack = false;
|
|
|
|
|
result.hotswapStack_ = getDefaultInstance().getHotswapStack();
|
2010-06-24 08:48:48 +02:00
|
|
|
return this;
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2011-04-08 15:29:14 +02:00
|
|
|
// repeated .RemoteMessageProtocol messages = 11;
|
2011-03-05 14:48:37 +01:00
|
|
|
public java.util.List<akka.remote.protocol.RemoteProtocol.RemoteMessageProtocol> getMessagesList() {
|
|
|
|
|
return java.util.Collections.unmodifiableList(result.messages_);
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public int getMessagesCount() {
|
|
|
|
|
return result.getMessagesCount();
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public akka.remote.protocol.RemoteProtocol.RemoteMessageProtocol getMessages(int index) {
|
|
|
|
|
return result.getMessages(index);
|
|
|
|
|
}
|
|
|
|
|
public Builder setMessages(int index, akka.remote.protocol.RemoteProtocol.RemoteMessageProtocol value) {
|
2010-06-10 11:39:26 +02:00
|
|
|
if (value == null) {
|
2011-03-05 14:48:37 +01:00
|
|
|
throw new NullPointerException();
|
|
|
|
|
}
|
|
|
|
|
result.messages_.set(index, value);
|
2010-06-10 11:39:26 +02:00
|
|
|
return this;
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public Builder setMessages(int index, akka.remote.protocol.RemoteProtocol.RemoteMessageProtocol.Builder builderForValue) {
|
|
|
|
|
result.messages_.set(index, builderForValue.build());
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
public Builder addMessages(akka.remote.protocol.RemoteProtocol.RemoteMessageProtocol value) {
|
|
|
|
|
if (value == null) {
|
|
|
|
|
throw new NullPointerException();
|
|
|
|
|
}
|
|
|
|
|
if (result.messages_.isEmpty()) {
|
|
|
|
|
result.messages_ = new java.util.ArrayList<akka.remote.protocol.RemoteProtocol.RemoteMessageProtocol>();
|
|
|
|
|
}
|
|
|
|
|
result.messages_.add(value);
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
public Builder addMessages(akka.remote.protocol.RemoteProtocol.RemoteMessageProtocol.Builder builderForValue) {
|
|
|
|
|
if (result.messages_.isEmpty()) {
|
|
|
|
|
result.messages_ = new java.util.ArrayList<akka.remote.protocol.RemoteProtocol.RemoteMessageProtocol>();
|
|
|
|
|
}
|
|
|
|
|
result.messages_.add(builderForValue.build());
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
public Builder addAllMessages(
|
|
|
|
|
java.lang.Iterable<? extends akka.remote.protocol.RemoteProtocol.RemoteMessageProtocol> values) {
|
|
|
|
|
if (result.messages_.isEmpty()) {
|
|
|
|
|
result.messages_ = new java.util.ArrayList<akka.remote.protocol.RemoteProtocol.RemoteMessageProtocol>();
|
|
|
|
|
}
|
|
|
|
|
super.addAll(values, result.messages_);
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
public Builder clearMessages() {
|
|
|
|
|
result.messages_ = java.util.Collections.emptyList();
|
2010-06-10 11:39:26 +02:00
|
|
|
return this;
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
// @@protoc_insertion_point(builder_scope:SerializedActorRefProtocol)
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-10 11:39:26 +02:00
|
|
|
static {
|
2011-03-05 14:48:37 +01:00
|
|
|
defaultInstance = new SerializedActorRefProtocol(true);
|
2010-10-26 12:49:25 +02:00
|
|
|
akka.remote.protocol.RemoteProtocol.internalForceInit();
|
2010-06-10 11:39:26 +02:00
|
|
|
defaultInstance.initFields();
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
// @@protoc_insertion_point(class_scope:SerializedActorRefProtocol)
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
public static final class SerializedTypedActorRefProtocol extends
|
2010-06-10 11:39:26 +02:00
|
|
|
com.google.protobuf.GeneratedMessage {
|
2011-03-05 14:48:37 +01:00
|
|
|
// Use SerializedTypedActorRefProtocol.newBuilder() to construct.
|
|
|
|
|
private SerializedTypedActorRefProtocol() {
|
2010-06-10 11:39:26 +02:00
|
|
|
initFields();
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
private SerializedTypedActorRefProtocol(boolean noInit) {}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
private static final SerializedTypedActorRefProtocol defaultInstance;
|
|
|
|
|
public static SerializedTypedActorRefProtocol getDefaultInstance() {
|
2010-06-10 11:39:26 +02:00
|
|
|
return defaultInstance;
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
public SerializedTypedActorRefProtocol getDefaultInstanceForType() {
|
2010-06-10 11:39:26 +02:00
|
|
|
return defaultInstance;
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-10 11:39:26 +02:00
|
|
|
public static final com.google.protobuf.Descriptors.Descriptor
|
|
|
|
|
getDescriptor() {
|
2011-03-05 14:48:37 +01:00
|
|
|
return akka.remote.protocol.RemoteProtocol.internal_static_SerializedTypedActorRefProtocol_descriptor;
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-10 11:39:26 +02:00
|
|
|
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
|
|
|
|
|
internalGetFieldAccessorTable() {
|
2011-03-05 14:48:37 +01:00
|
|
|
return akka.remote.protocol.RemoteProtocol.internal_static_SerializedTypedActorRefProtocol_fieldAccessorTable;
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
// required .SerializedActorRefProtocol actorRef = 1;
|
|
|
|
|
public static final int ACTORREF_FIELD_NUMBER = 1;
|
|
|
|
|
private boolean hasActorRef;
|
|
|
|
|
private akka.remote.protocol.RemoteProtocol.SerializedActorRefProtocol actorRef_;
|
|
|
|
|
public boolean hasActorRef() { return hasActorRef; }
|
|
|
|
|
public akka.remote.protocol.RemoteProtocol.SerializedActorRefProtocol getActorRef() { return actorRef_; }
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
// required string interfaceName = 2;
|
|
|
|
|
public static final int INTERFACENAME_FIELD_NUMBER = 2;
|
|
|
|
|
private boolean hasInterfaceName;
|
|
|
|
|
private java.lang.String interfaceName_ = "";
|
|
|
|
|
public boolean hasInterfaceName() { return hasInterfaceName; }
|
|
|
|
|
public java.lang.String getInterfaceName() { return interfaceName_; }
|
2010-09-16 13:50:57 +02:00
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
private void initFields() {
|
|
|
|
|
actorRef_ = akka.remote.protocol.RemoteProtocol.SerializedActorRefProtocol.getDefaultInstance();
|
|
|
|
|
}
|
|
|
|
|
public final boolean isInitialized() {
|
|
|
|
|
if (!hasActorRef) return false;
|
|
|
|
|
if (!hasInterfaceName) return false;
|
|
|
|
|
if (!getActorRef().isInitialized()) return false;
|
2010-07-26 18:47:25 +02:00
|
|
|
return true;
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-07-26 18:47:25 +02:00
|
|
|
public void writeTo(com.google.protobuf.CodedOutputStream output)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
getSerializedSize();
|
2011-03-05 14:48:37 +01:00
|
|
|
if (hasActorRef()) {
|
|
|
|
|
output.writeMessage(1, getActorRef());
|
2010-07-26 18:47:25 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
if (hasInterfaceName()) {
|
|
|
|
|
output.writeString(2, getInterfaceName());
|
2010-09-16 13:50:57 +02:00
|
|
|
}
|
2010-07-26 18:47:25 +02:00
|
|
|
getUnknownFields().writeTo(output);
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-07-26 18:47:25 +02:00
|
|
|
private int memoizedSerializedSize = -1;
|
|
|
|
|
public int getSerializedSize() {
|
|
|
|
|
int size = memoizedSerializedSize;
|
|
|
|
|
if (size != -1) return size;
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-07-26 18:47:25 +02:00
|
|
|
size = 0;
|
2011-03-05 14:48:37 +01:00
|
|
|
if (hasActorRef()) {
|
2010-07-26 18:47:25 +02:00
|
|
|
size += com.google.protobuf.CodedOutputStream
|
2011-03-05 14:48:37 +01:00
|
|
|
.computeMessageSize(1, getActorRef());
|
2010-07-26 18:47:25 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
if (hasInterfaceName()) {
|
2010-09-16 13:50:57 +02:00
|
|
|
size += com.google.protobuf.CodedOutputStream
|
2011-03-05 14:48:37 +01:00
|
|
|
.computeStringSize(2, getInterfaceName());
|
2010-09-16 13:50:57 +02:00
|
|
|
}
|
2010-07-26 18:47:25 +02:00
|
|
|
size += getUnknownFields().getSerializedSize();
|
|
|
|
|
memoizedSerializedSize = size;
|
|
|
|
|
return size;
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.SerializedTypedActorRefProtocol parseFrom(
|
2010-07-26 18:47:25 +02:00
|
|
|
com.google.protobuf.ByteString data)
|
|
|
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
|
|
|
return newBuilder().mergeFrom(data).buildParsed();
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.SerializedTypedActorRefProtocol parseFrom(
|
2010-07-26 18:47:25 +02:00
|
|
|
com.google.protobuf.ByteString data,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
|
|
|
return newBuilder().mergeFrom(data, extensionRegistry)
|
|
|
|
|
.buildParsed();
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.SerializedTypedActorRefProtocol parseFrom(byte[] data)
|
2010-07-26 18:47:25 +02:00
|
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
|
|
|
return newBuilder().mergeFrom(data).buildParsed();
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.SerializedTypedActorRefProtocol parseFrom(
|
2010-07-26 18:47:25 +02:00
|
|
|
byte[] data,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
|
|
|
return newBuilder().mergeFrom(data, extensionRegistry)
|
|
|
|
|
.buildParsed();
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.SerializedTypedActorRefProtocol parseFrom(java.io.InputStream input)
|
2010-07-26 18:47:25 +02:00
|
|
|
throws java.io.IOException {
|
|
|
|
|
return newBuilder().mergeFrom(input).buildParsed();
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.SerializedTypedActorRefProtocol parseFrom(
|
2010-07-26 18:47:25 +02:00
|
|
|
java.io.InputStream input,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
return newBuilder().mergeFrom(input, extensionRegistry)
|
|
|
|
|
.buildParsed();
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.SerializedTypedActorRefProtocol parseDelimitedFrom(java.io.InputStream input)
|
2010-07-26 18:47:25 +02:00
|
|
|
throws java.io.IOException {
|
|
|
|
|
Builder builder = newBuilder();
|
|
|
|
|
if (builder.mergeDelimitedFrom(input)) {
|
|
|
|
|
return builder.buildParsed();
|
|
|
|
|
} else {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.SerializedTypedActorRefProtocol parseDelimitedFrom(
|
2010-07-26 18:47:25 +02:00
|
|
|
java.io.InputStream input,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
Builder builder = newBuilder();
|
|
|
|
|
if (builder.mergeDelimitedFrom(input, extensionRegistry)) {
|
|
|
|
|
return builder.buildParsed();
|
|
|
|
|
} else {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.SerializedTypedActorRefProtocol parseFrom(
|
2010-07-26 18:47:25 +02:00
|
|
|
com.google.protobuf.CodedInputStream input)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
return newBuilder().mergeFrom(input).buildParsed();
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.SerializedTypedActorRefProtocol parseFrom(
|
2010-07-26 18:47:25 +02:00
|
|
|
com.google.protobuf.CodedInputStream input,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
return newBuilder().mergeFrom(input, extensionRegistry)
|
|
|
|
|
.buildParsed();
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-07-26 18:47:25 +02:00
|
|
|
public static Builder newBuilder() { return Builder.create(); }
|
|
|
|
|
public Builder newBuilderForType() { return newBuilder(); }
|
2011-03-05 14:48:37 +01:00
|
|
|
public static Builder newBuilder(akka.remote.protocol.RemoteProtocol.SerializedTypedActorRefProtocol prototype) {
|
2010-07-26 18:47:25 +02:00
|
|
|
return newBuilder().mergeFrom(prototype);
|
|
|
|
|
}
|
|
|
|
|
public Builder toBuilder() { return newBuilder(this); }
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-07-26 18:47:25 +02:00
|
|
|
public static final class Builder extends
|
|
|
|
|
com.google.protobuf.GeneratedMessage.Builder<Builder> {
|
2011-03-05 14:48:37 +01:00
|
|
|
private akka.remote.protocol.RemoteProtocol.SerializedTypedActorRefProtocol result;
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
// Construct using akka.remote.protocol.RemoteProtocol.SerializedTypedActorRefProtocol.newBuilder()
|
2010-07-26 18:47:25 +02:00
|
|
|
private Builder() {}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-07-26 18:47:25 +02:00
|
|
|
private static Builder create() {
|
|
|
|
|
Builder builder = new Builder();
|
2011-03-05 14:48:37 +01:00
|
|
|
builder.result = new akka.remote.protocol.RemoteProtocol.SerializedTypedActorRefProtocol();
|
2010-07-26 18:47:25 +02:00
|
|
|
return builder;
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
protected akka.remote.protocol.RemoteProtocol.SerializedTypedActorRefProtocol internalGetResult() {
|
2010-07-26 18:47:25 +02:00
|
|
|
return result;
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-07-26 18:47:25 +02:00
|
|
|
public Builder clear() {
|
|
|
|
|
if (result == null) {
|
|
|
|
|
throw new IllegalStateException(
|
|
|
|
|
"Cannot call clear() after build().");
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
result = new akka.remote.protocol.RemoteProtocol.SerializedTypedActorRefProtocol();
|
2010-07-26 18:47:25 +02:00
|
|
|
return this;
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-07-26 18:47:25 +02:00
|
|
|
public Builder clone() {
|
|
|
|
|
return create().mergeFrom(result);
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-07-26 18:47:25 +02:00
|
|
|
public com.google.protobuf.Descriptors.Descriptor
|
|
|
|
|
getDescriptorForType() {
|
2011-03-05 14:48:37 +01:00
|
|
|
return akka.remote.protocol.RemoteProtocol.SerializedTypedActorRefProtocol.getDescriptor();
|
2010-07-26 18:47:25 +02:00
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
public akka.remote.protocol.RemoteProtocol.SerializedTypedActorRefProtocol getDefaultInstanceForType() {
|
|
|
|
|
return akka.remote.protocol.RemoteProtocol.SerializedTypedActorRefProtocol.getDefaultInstance();
|
2010-07-26 18:47:25 +02:00
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-07-26 18:47:25 +02:00
|
|
|
public boolean isInitialized() {
|
|
|
|
|
return result.isInitialized();
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public akka.remote.protocol.RemoteProtocol.SerializedTypedActorRefProtocol build() {
|
2010-07-26 18:47:25 +02:00
|
|
|
if (result != null && !isInitialized()) {
|
|
|
|
|
throw newUninitializedMessageException(result);
|
|
|
|
|
}
|
|
|
|
|
return buildPartial();
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
private akka.remote.protocol.RemoteProtocol.SerializedTypedActorRefProtocol buildParsed()
|
2010-07-26 18:47:25 +02:00
|
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
|
|
|
if (!isInitialized()) {
|
|
|
|
|
throw newUninitializedMessageException(
|
|
|
|
|
result).asInvalidProtocolBufferException();
|
|
|
|
|
}
|
|
|
|
|
return buildPartial();
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
public akka.remote.protocol.RemoteProtocol.SerializedTypedActorRefProtocol buildPartial() {
|
2010-07-26 18:47:25 +02:00
|
|
|
if (result == null) {
|
|
|
|
|
throw new IllegalStateException(
|
|
|
|
|
"build() has already been called on this Builder.");
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
akka.remote.protocol.RemoteProtocol.SerializedTypedActorRefProtocol returnMe = result;
|
2010-07-26 18:47:25 +02:00
|
|
|
result = null;
|
|
|
|
|
return returnMe;
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-07-26 18:47:25 +02:00
|
|
|
public Builder mergeFrom(com.google.protobuf.Message other) {
|
2011-03-05 14:48:37 +01:00
|
|
|
if (other instanceof akka.remote.protocol.RemoteProtocol.SerializedTypedActorRefProtocol) {
|
|
|
|
|
return mergeFrom((akka.remote.protocol.RemoteProtocol.SerializedTypedActorRefProtocol)other);
|
2010-07-26 18:47:25 +02:00
|
|
|
} else {
|
|
|
|
|
super.mergeFrom(other);
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
public Builder mergeFrom(akka.remote.protocol.RemoteProtocol.SerializedTypedActorRefProtocol other) {
|
|
|
|
|
if (other == akka.remote.protocol.RemoteProtocol.SerializedTypedActorRefProtocol.getDefaultInstance()) return this;
|
|
|
|
|
if (other.hasActorRef()) {
|
|
|
|
|
mergeActorRef(other.getActorRef());
|
2010-07-26 18:47:25 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
if (other.hasInterfaceName()) {
|
|
|
|
|
setInterfaceName(other.getInterfaceName());
|
2010-09-16 13:50:57 +02:00
|
|
|
}
|
2010-07-26 18:47:25 +02:00
|
|
|
this.mergeUnknownFields(other.getUnknownFields());
|
|
|
|
|
return this;
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-07-26 18:47:25 +02:00
|
|
|
public Builder mergeFrom(
|
|
|
|
|
com.google.protobuf.CodedInputStream input,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
com.google.protobuf.UnknownFieldSet.Builder unknownFields =
|
|
|
|
|
com.google.protobuf.UnknownFieldSet.newBuilder(
|
|
|
|
|
this.getUnknownFields());
|
|
|
|
|
while (true) {
|
|
|
|
|
int tag = input.readTag();
|
|
|
|
|
switch (tag) {
|
|
|
|
|
case 0:
|
|
|
|
|
this.setUnknownFields(unknownFields.build());
|
|
|
|
|
return this;
|
|
|
|
|
default: {
|
|
|
|
|
if (!parseUnknownField(input, unknownFields,
|
|
|
|
|
extensionRegistry, tag)) {
|
|
|
|
|
this.setUnknownFields(unknownFields.build());
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case 10: {
|
2011-03-05 14:48:37 +01:00
|
|
|
akka.remote.protocol.RemoteProtocol.SerializedActorRefProtocol.Builder subBuilder = akka.remote.protocol.RemoteProtocol.SerializedActorRefProtocol.newBuilder();
|
|
|
|
|
if (hasActorRef()) {
|
|
|
|
|
subBuilder.mergeFrom(getActorRef());
|
|
|
|
|
}
|
|
|
|
|
input.readMessage(subBuilder, extensionRegistry);
|
|
|
|
|
setActorRef(subBuilder.buildPartial());
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case 18: {
|
|
|
|
|
setInterfaceName(input.readString());
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
2010-07-26 18:47:25 +02:00
|
|
|
}
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
|
|
|
|
|
// required .SerializedActorRefProtocol actorRef = 1;
|
|
|
|
|
public boolean hasActorRef() {
|
|
|
|
|
return result.hasActorRef();
|
2010-07-26 18:47:25 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public akka.remote.protocol.RemoteProtocol.SerializedActorRefProtocol getActorRef() {
|
|
|
|
|
return result.getActorRef();
|
2010-07-26 18:47:25 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public Builder setActorRef(akka.remote.protocol.RemoteProtocol.SerializedActorRefProtocol value) {
|
2010-07-26 18:47:25 +02:00
|
|
|
if (value == null) {
|
|
|
|
|
throw new NullPointerException();
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
result.hasActorRef = true;
|
|
|
|
|
result.actorRef_ = value;
|
2010-07-26 18:47:25 +02:00
|
|
|
return this;
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public Builder setActorRef(akka.remote.protocol.RemoteProtocol.SerializedActorRefProtocol.Builder builderForValue) {
|
|
|
|
|
result.hasActorRef = true;
|
|
|
|
|
result.actorRef_ = builderForValue.build();
|
2010-07-26 18:47:25 +02:00
|
|
|
return this;
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public Builder mergeActorRef(akka.remote.protocol.RemoteProtocol.SerializedActorRefProtocol value) {
|
|
|
|
|
if (result.hasActorRef() &&
|
|
|
|
|
result.actorRef_ != akka.remote.protocol.RemoteProtocol.SerializedActorRefProtocol.getDefaultInstance()) {
|
|
|
|
|
result.actorRef_ =
|
|
|
|
|
akka.remote.protocol.RemoteProtocol.SerializedActorRefProtocol.newBuilder(result.actorRef_).mergeFrom(value).buildPartial();
|
2010-07-26 18:47:25 +02:00
|
|
|
} else {
|
2011-03-05 14:48:37 +01:00
|
|
|
result.actorRef_ = value;
|
2010-07-26 18:47:25 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
result.hasActorRef = true;
|
2010-07-26 18:47:25 +02:00
|
|
|
return this;
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public Builder clearActorRef() {
|
|
|
|
|
result.hasActorRef = false;
|
|
|
|
|
result.actorRef_ = akka.remote.protocol.RemoteProtocol.SerializedActorRefProtocol.getDefaultInstance();
|
2010-07-26 18:47:25 +02:00
|
|
|
return this;
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
// required string interfaceName = 2;
|
|
|
|
|
public boolean hasInterfaceName() {
|
|
|
|
|
return result.hasInterfaceName();
|
2010-09-16 13:50:57 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public java.lang.String getInterfaceName() {
|
|
|
|
|
return result.getInterfaceName();
|
2010-09-16 13:50:57 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public Builder setInterfaceName(java.lang.String value) {
|
2010-09-16 13:50:57 +02:00
|
|
|
if (value == null) {
|
|
|
|
|
throw new NullPointerException();
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
result.hasInterfaceName = true;
|
|
|
|
|
result.interfaceName_ = value;
|
2010-09-16 13:50:57 +02:00
|
|
|
return this;
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public Builder clearInterfaceName() {
|
|
|
|
|
result.hasInterfaceName = false;
|
|
|
|
|
result.interfaceName_ = getDefaultInstance().getInterfaceName();
|
2010-09-16 13:50:57 +02:00
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
// @@protoc_insertion_point(builder_scope:SerializedTypedActorRefProtocol)
|
2010-07-26 18:47:25 +02:00
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-07-26 18:47:25 +02:00
|
|
|
static {
|
2011-03-05 14:48:37 +01:00
|
|
|
defaultInstance = new SerializedTypedActorRefProtocol(true);
|
2010-10-26 12:49:25 +02:00
|
|
|
akka.remote.protocol.RemoteProtocol.internalForceInit();
|
2010-07-26 18:47:25 +02:00
|
|
|
defaultInstance.initFields();
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
// @@protoc_insertion_point(class_scope:SerializedTypedActorRefProtocol)
|
2010-07-26 18:47:25 +02:00
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
public static final class MessageProtocol extends
|
2010-07-26 18:47:25 +02:00
|
|
|
com.google.protobuf.GeneratedMessage {
|
2011-03-05 14:48:37 +01:00
|
|
|
// Use MessageProtocol.newBuilder() to construct.
|
|
|
|
|
private MessageProtocol() {
|
2010-07-26 18:47:25 +02:00
|
|
|
initFields();
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
private MessageProtocol(boolean noInit) {}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
private static final MessageProtocol defaultInstance;
|
|
|
|
|
public static MessageProtocol getDefaultInstance() {
|
2010-07-26 18:47:25 +02:00
|
|
|
return defaultInstance;
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
public MessageProtocol getDefaultInstanceForType() {
|
2010-07-26 18:47:25 +02:00
|
|
|
return defaultInstance;
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-07-26 18:47:25 +02:00
|
|
|
public static final com.google.protobuf.Descriptors.Descriptor
|
|
|
|
|
getDescriptor() {
|
2011-03-05 14:48:37 +01:00
|
|
|
return akka.remote.protocol.RemoteProtocol.internal_static_MessageProtocol_descriptor;
|
2010-07-26 18:47:25 +02:00
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-07-26 18:47:25 +02:00
|
|
|
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
|
|
|
|
|
internalGetFieldAccessorTable() {
|
2011-03-05 14:48:37 +01:00
|
|
|
return akka.remote.protocol.RemoteProtocol.internal_static_MessageProtocol_fieldAccessorTable;
|
2010-07-26 18:47:25 +02:00
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
// required .SerializationSchemeType serializationScheme = 1;
|
|
|
|
|
public static final int SERIALIZATIONSCHEME_FIELD_NUMBER = 1;
|
|
|
|
|
private boolean hasSerializationScheme;
|
|
|
|
|
private akka.remote.protocol.RemoteProtocol.SerializationSchemeType serializationScheme_;
|
|
|
|
|
public boolean hasSerializationScheme() { return hasSerializationScheme; }
|
|
|
|
|
public akka.remote.protocol.RemoteProtocol.SerializationSchemeType getSerializationScheme() { return serializationScheme_; }
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
// required bytes message = 2;
|
|
|
|
|
public static final int MESSAGE_FIELD_NUMBER = 2;
|
|
|
|
|
private boolean hasMessage;
|
|
|
|
|
private com.google.protobuf.ByteString message_ = com.google.protobuf.ByteString.EMPTY;
|
|
|
|
|
public boolean hasMessage() { return hasMessage; }
|
|
|
|
|
public com.google.protobuf.ByteString getMessage() { return message_; }
|
|
|
|
|
|
|
|
|
|
// optional bytes messageManifest = 3;
|
|
|
|
|
public static final int MESSAGEMANIFEST_FIELD_NUMBER = 3;
|
|
|
|
|
private boolean hasMessageManifest;
|
|
|
|
|
private com.google.protobuf.ByteString messageManifest_ = com.google.protobuf.ByteString.EMPTY;
|
|
|
|
|
public boolean hasMessageManifest() { return hasMessageManifest; }
|
|
|
|
|
public com.google.protobuf.ByteString getMessageManifest() { return messageManifest_; }
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-07-26 18:47:25 +02:00
|
|
|
private void initFields() {
|
2011-03-05 14:48:37 +01:00
|
|
|
serializationScheme_ = akka.remote.protocol.RemoteProtocol.SerializationSchemeType.JAVA;
|
2010-07-26 18:47:25 +02:00
|
|
|
}
|
|
|
|
|
public final boolean isInitialized() {
|
2011-03-05 14:48:37 +01:00
|
|
|
if (!hasSerializationScheme) return false;
|
|
|
|
|
if (!hasMessage) return false;
|
2010-07-26 18:47:25 +02:00
|
|
|
return true;
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-07-26 18:47:25 +02:00
|
|
|
public void writeTo(com.google.protobuf.CodedOutputStream output)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
getSerializedSize();
|
2011-03-05 14:48:37 +01:00
|
|
|
if (hasSerializationScheme()) {
|
|
|
|
|
output.writeEnum(1, getSerializationScheme().getNumber());
|
2010-07-26 18:47:25 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
if (hasMessage()) {
|
|
|
|
|
output.writeBytes(2, getMessage());
|
|
|
|
|
}
|
|
|
|
|
if (hasMessageManifest()) {
|
|
|
|
|
output.writeBytes(3, getMessageManifest());
|
2010-07-26 18:47:25 +02:00
|
|
|
}
|
|
|
|
|
getUnknownFields().writeTo(output);
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-07-26 18:47:25 +02:00
|
|
|
private int memoizedSerializedSize = -1;
|
|
|
|
|
public int getSerializedSize() {
|
|
|
|
|
int size = memoizedSerializedSize;
|
|
|
|
|
if (size != -1) return size;
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-07-26 18:47:25 +02:00
|
|
|
size = 0;
|
2011-03-05 14:48:37 +01:00
|
|
|
if (hasSerializationScheme()) {
|
2010-07-26 18:47:25 +02:00
|
|
|
size += com.google.protobuf.CodedOutputStream
|
2011-03-05 14:48:37 +01:00
|
|
|
.computeEnumSize(1, getSerializationScheme().getNumber());
|
2010-07-26 18:47:25 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
if (hasMessage()) {
|
2010-07-26 18:47:25 +02:00
|
|
|
size += com.google.protobuf.CodedOutputStream
|
2011-03-05 14:48:37 +01:00
|
|
|
.computeBytesSize(2, getMessage());
|
|
|
|
|
}
|
|
|
|
|
if (hasMessageManifest()) {
|
|
|
|
|
size += com.google.protobuf.CodedOutputStream
|
|
|
|
|
.computeBytesSize(3, getMessageManifest());
|
2010-07-26 18:47:25 +02:00
|
|
|
}
|
|
|
|
|
size += getUnknownFields().getSerializedSize();
|
|
|
|
|
memoizedSerializedSize = size;
|
|
|
|
|
return size;
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.MessageProtocol parseFrom(
|
2010-07-26 18:47:25 +02:00
|
|
|
com.google.protobuf.ByteString data)
|
|
|
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
|
|
|
return newBuilder().mergeFrom(data).buildParsed();
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.MessageProtocol parseFrom(
|
2010-07-26 18:47:25 +02:00
|
|
|
com.google.protobuf.ByteString data,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
|
|
|
return newBuilder().mergeFrom(data, extensionRegistry)
|
|
|
|
|
.buildParsed();
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.MessageProtocol parseFrom(byte[] data)
|
2010-07-26 18:47:25 +02:00
|
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
|
|
|
return newBuilder().mergeFrom(data).buildParsed();
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.MessageProtocol parseFrom(
|
2010-07-26 18:47:25 +02:00
|
|
|
byte[] data,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
|
|
|
return newBuilder().mergeFrom(data, extensionRegistry)
|
|
|
|
|
.buildParsed();
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.MessageProtocol parseFrom(java.io.InputStream input)
|
2010-07-26 18:47:25 +02:00
|
|
|
throws java.io.IOException {
|
|
|
|
|
return newBuilder().mergeFrom(input).buildParsed();
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.MessageProtocol parseFrom(
|
2010-07-26 18:47:25 +02:00
|
|
|
java.io.InputStream input,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
return newBuilder().mergeFrom(input, extensionRegistry)
|
|
|
|
|
.buildParsed();
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.MessageProtocol parseDelimitedFrom(java.io.InputStream input)
|
2010-07-26 18:47:25 +02:00
|
|
|
throws java.io.IOException {
|
|
|
|
|
Builder builder = newBuilder();
|
|
|
|
|
if (builder.mergeDelimitedFrom(input)) {
|
|
|
|
|
return builder.buildParsed();
|
|
|
|
|
} else {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.MessageProtocol parseDelimitedFrom(
|
2010-07-26 18:47:25 +02:00
|
|
|
java.io.InputStream input,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
Builder builder = newBuilder();
|
|
|
|
|
if (builder.mergeDelimitedFrom(input, extensionRegistry)) {
|
|
|
|
|
return builder.buildParsed();
|
|
|
|
|
} else {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.MessageProtocol parseFrom(
|
2010-07-26 18:47:25 +02:00
|
|
|
com.google.protobuf.CodedInputStream input)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
return newBuilder().mergeFrom(input).buildParsed();
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.MessageProtocol parseFrom(
|
2010-07-26 18:47:25 +02:00
|
|
|
com.google.protobuf.CodedInputStream input,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
return newBuilder().mergeFrom(input, extensionRegistry)
|
|
|
|
|
.buildParsed();
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-07-26 18:47:25 +02:00
|
|
|
public static Builder newBuilder() { return Builder.create(); }
|
|
|
|
|
public Builder newBuilderForType() { return newBuilder(); }
|
2011-03-05 14:48:37 +01:00
|
|
|
public static Builder newBuilder(akka.remote.protocol.RemoteProtocol.MessageProtocol prototype) {
|
2010-07-26 18:47:25 +02:00
|
|
|
return newBuilder().mergeFrom(prototype);
|
|
|
|
|
}
|
|
|
|
|
public Builder toBuilder() { return newBuilder(this); }
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-07-26 18:47:25 +02:00
|
|
|
public static final class Builder extends
|
|
|
|
|
com.google.protobuf.GeneratedMessage.Builder<Builder> {
|
2011-03-05 14:48:37 +01:00
|
|
|
private akka.remote.protocol.RemoteProtocol.MessageProtocol result;
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
// Construct using akka.remote.protocol.RemoteProtocol.MessageProtocol.newBuilder()
|
2010-07-26 18:47:25 +02:00
|
|
|
private Builder() {}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-07-26 18:47:25 +02:00
|
|
|
private static Builder create() {
|
|
|
|
|
Builder builder = new Builder();
|
2011-03-05 14:48:37 +01:00
|
|
|
builder.result = new akka.remote.protocol.RemoteProtocol.MessageProtocol();
|
2010-07-26 18:47:25 +02:00
|
|
|
return builder;
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
protected akka.remote.protocol.RemoteProtocol.MessageProtocol internalGetResult() {
|
2010-07-26 18:47:25 +02:00
|
|
|
return result;
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-07-26 18:47:25 +02:00
|
|
|
public Builder clear() {
|
|
|
|
|
if (result == null) {
|
|
|
|
|
throw new IllegalStateException(
|
|
|
|
|
"Cannot call clear() after build().");
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
result = new akka.remote.protocol.RemoteProtocol.MessageProtocol();
|
2010-07-26 18:47:25 +02:00
|
|
|
return this;
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-07-26 18:47:25 +02:00
|
|
|
public Builder clone() {
|
|
|
|
|
return create().mergeFrom(result);
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-07-26 18:47:25 +02:00
|
|
|
public com.google.protobuf.Descriptors.Descriptor
|
|
|
|
|
getDescriptorForType() {
|
2011-03-05 14:48:37 +01:00
|
|
|
return akka.remote.protocol.RemoteProtocol.MessageProtocol.getDescriptor();
|
2010-07-26 18:47:25 +02:00
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
public akka.remote.protocol.RemoteProtocol.MessageProtocol getDefaultInstanceForType() {
|
|
|
|
|
return akka.remote.protocol.RemoteProtocol.MessageProtocol.getDefaultInstance();
|
2010-07-26 18:47:25 +02:00
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-07-26 18:47:25 +02:00
|
|
|
public boolean isInitialized() {
|
|
|
|
|
return result.isInitialized();
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public akka.remote.protocol.RemoteProtocol.MessageProtocol build() {
|
2010-07-26 18:47:25 +02:00
|
|
|
if (result != null && !isInitialized()) {
|
|
|
|
|
throw newUninitializedMessageException(result);
|
|
|
|
|
}
|
|
|
|
|
return buildPartial();
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
private akka.remote.protocol.RemoteProtocol.MessageProtocol buildParsed()
|
2010-07-26 18:47:25 +02:00
|
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
|
|
|
if (!isInitialized()) {
|
|
|
|
|
throw newUninitializedMessageException(
|
|
|
|
|
result).asInvalidProtocolBufferException();
|
|
|
|
|
}
|
|
|
|
|
return buildPartial();
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
public akka.remote.protocol.RemoteProtocol.MessageProtocol buildPartial() {
|
2010-07-26 18:47:25 +02:00
|
|
|
if (result == null) {
|
|
|
|
|
throw new IllegalStateException(
|
|
|
|
|
"build() has already been called on this Builder.");
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
akka.remote.protocol.RemoteProtocol.MessageProtocol returnMe = result;
|
2010-07-26 18:47:25 +02:00
|
|
|
result = null;
|
|
|
|
|
return returnMe;
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-07-26 18:47:25 +02:00
|
|
|
public Builder mergeFrom(com.google.protobuf.Message other) {
|
2011-03-05 14:48:37 +01:00
|
|
|
if (other instanceof akka.remote.protocol.RemoteProtocol.MessageProtocol) {
|
|
|
|
|
return mergeFrom((akka.remote.protocol.RemoteProtocol.MessageProtocol)other);
|
2010-07-26 18:47:25 +02:00
|
|
|
} else {
|
|
|
|
|
super.mergeFrom(other);
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
public Builder mergeFrom(akka.remote.protocol.RemoteProtocol.MessageProtocol other) {
|
|
|
|
|
if (other == akka.remote.protocol.RemoteProtocol.MessageProtocol.getDefaultInstance()) return this;
|
|
|
|
|
if (other.hasSerializationScheme()) {
|
|
|
|
|
setSerializationScheme(other.getSerializationScheme());
|
2010-07-26 18:47:25 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
if (other.hasMessage()) {
|
|
|
|
|
setMessage(other.getMessage());
|
|
|
|
|
}
|
|
|
|
|
if (other.hasMessageManifest()) {
|
|
|
|
|
setMessageManifest(other.getMessageManifest());
|
2010-07-26 18:47:25 +02:00
|
|
|
}
|
|
|
|
|
this.mergeUnknownFields(other.getUnknownFields());
|
|
|
|
|
return this;
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-07-26 18:47:25 +02:00
|
|
|
public Builder mergeFrom(
|
|
|
|
|
com.google.protobuf.CodedInputStream input,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
com.google.protobuf.UnknownFieldSet.Builder unknownFields =
|
|
|
|
|
com.google.protobuf.UnknownFieldSet.newBuilder(
|
|
|
|
|
this.getUnknownFields());
|
|
|
|
|
while (true) {
|
|
|
|
|
int tag = input.readTag();
|
|
|
|
|
switch (tag) {
|
|
|
|
|
case 0:
|
|
|
|
|
this.setUnknownFields(unknownFields.build());
|
|
|
|
|
return this;
|
|
|
|
|
default: {
|
|
|
|
|
if (!parseUnknownField(input, unknownFields,
|
|
|
|
|
extensionRegistry, tag)) {
|
|
|
|
|
this.setUnknownFields(unknownFields.build());
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
case 8: {
|
|
|
|
|
int rawValue = input.readEnum();
|
|
|
|
|
akka.remote.protocol.RemoteProtocol.SerializationSchemeType value = akka.remote.protocol.RemoteProtocol.SerializationSchemeType.valueOf(rawValue);
|
|
|
|
|
if (value == null) {
|
|
|
|
|
unknownFields.mergeVarintField(1, rawValue);
|
|
|
|
|
} else {
|
|
|
|
|
setSerializationScheme(value);
|
|
|
|
|
}
|
2010-07-26 18:47:25 +02:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case 18: {
|
2011-03-05 14:48:37 +01:00
|
|
|
setMessage(input.readBytes());
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case 26: {
|
|
|
|
|
setMessageManifest(input.readBytes());
|
2010-07-26 18:47:25 +02:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
|
|
|
|
|
// required .SerializationSchemeType serializationScheme = 1;
|
|
|
|
|
public boolean hasSerializationScheme() {
|
|
|
|
|
return result.hasSerializationScheme();
|
|
|
|
|
}
|
|
|
|
|
public akka.remote.protocol.RemoteProtocol.SerializationSchemeType getSerializationScheme() {
|
|
|
|
|
return result.getSerializationScheme();
|
|
|
|
|
}
|
|
|
|
|
public Builder setSerializationScheme(akka.remote.protocol.RemoteProtocol.SerializationSchemeType value) {
|
|
|
|
|
if (value == null) {
|
|
|
|
|
throw new NullPointerException();
|
|
|
|
|
}
|
|
|
|
|
result.hasSerializationScheme = true;
|
|
|
|
|
result.serializationScheme_ = value;
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
public Builder clearSerializationScheme() {
|
|
|
|
|
result.hasSerializationScheme = false;
|
|
|
|
|
result.serializationScheme_ = akka.remote.protocol.RemoteProtocol.SerializationSchemeType.JAVA;
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// required bytes message = 2;
|
|
|
|
|
public boolean hasMessage() {
|
|
|
|
|
return result.hasMessage();
|
2010-07-26 18:47:25 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public com.google.protobuf.ByteString getMessage() {
|
|
|
|
|
return result.getMessage();
|
2010-07-26 18:47:25 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public Builder setMessage(com.google.protobuf.ByteString value) {
|
2010-07-26 18:47:25 +02:00
|
|
|
if (value == null) {
|
|
|
|
|
throw new NullPointerException();
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
result.hasMessage = true;
|
|
|
|
|
result.message_ = value;
|
2010-07-26 18:47:25 +02:00
|
|
|
return this;
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public Builder clearMessage() {
|
|
|
|
|
result.hasMessage = false;
|
|
|
|
|
result.message_ = getDefaultInstance().getMessage();
|
2010-07-26 18:47:25 +02:00
|
|
|
return this;
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
// optional bytes messageManifest = 3;
|
|
|
|
|
public boolean hasMessageManifest() {
|
|
|
|
|
return result.hasMessageManifest();
|
2010-07-26 18:47:25 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public com.google.protobuf.ByteString getMessageManifest() {
|
|
|
|
|
return result.getMessageManifest();
|
2010-07-26 18:47:25 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public Builder setMessageManifest(com.google.protobuf.ByteString value) {
|
2010-07-26 18:47:25 +02:00
|
|
|
if (value == null) {
|
|
|
|
|
throw new NullPointerException();
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
result.hasMessageManifest = true;
|
|
|
|
|
result.messageManifest_ = value;
|
2010-07-26 18:47:25 +02:00
|
|
|
return this;
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public Builder clearMessageManifest() {
|
|
|
|
|
result.hasMessageManifest = false;
|
|
|
|
|
result.messageManifest_ = getDefaultInstance().getMessageManifest();
|
2010-07-26 18:47:25 +02:00
|
|
|
return this;
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
// @@protoc_insertion_point(builder_scope:MessageProtocol)
|
2010-07-26 18:47:25 +02:00
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-07-26 18:47:25 +02:00
|
|
|
static {
|
2011-03-05 14:48:37 +01:00
|
|
|
defaultInstance = new MessageProtocol(true);
|
2010-10-26 12:49:25 +02:00
|
|
|
akka.remote.protocol.RemoteProtocol.internalForceInit();
|
2010-07-26 18:47:25 +02:00
|
|
|
defaultInstance.initFields();
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
// @@protoc_insertion_point(class_scope:MessageProtocol)
|
2010-07-26 18:47:25 +02:00
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
public static final class ActorInfoProtocol extends
|
2010-07-26 18:47:25 +02:00
|
|
|
com.google.protobuf.GeneratedMessage {
|
2011-03-05 14:48:37 +01:00
|
|
|
// Use ActorInfoProtocol.newBuilder() to construct.
|
|
|
|
|
private ActorInfoProtocol() {
|
2010-07-26 18:47:25 +02:00
|
|
|
initFields();
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
private ActorInfoProtocol(boolean noInit) {}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
private static final ActorInfoProtocol defaultInstance;
|
|
|
|
|
public static ActorInfoProtocol getDefaultInstance() {
|
2010-07-26 18:47:25 +02:00
|
|
|
return defaultInstance;
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
public ActorInfoProtocol getDefaultInstanceForType() {
|
2010-07-26 18:47:25 +02:00
|
|
|
return defaultInstance;
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-07-26 18:47:25 +02:00
|
|
|
public static final com.google.protobuf.Descriptors.Descriptor
|
|
|
|
|
getDescriptor() {
|
2011-03-05 14:48:37 +01:00
|
|
|
return akka.remote.protocol.RemoteProtocol.internal_static_ActorInfoProtocol_descriptor;
|
2010-07-26 18:47:25 +02:00
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-07-26 18:47:25 +02:00
|
|
|
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
|
|
|
|
|
internalGetFieldAccessorTable() {
|
2011-03-05 14:48:37 +01:00
|
|
|
return akka.remote.protocol.RemoteProtocol.internal_static_ActorInfoProtocol_fieldAccessorTable;
|
2010-07-26 18:47:25 +02:00
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-09-17 16:04:25 +02:00
|
|
|
// required .UuidProtocol uuid = 1;
|
|
|
|
|
public static final int UUID_FIELD_NUMBER = 1;
|
|
|
|
|
private boolean hasUuid;
|
2010-10-26 12:49:25 +02:00
|
|
|
private akka.remote.protocol.RemoteProtocol.UuidProtocol uuid_;
|
2010-09-17 16:04:25 +02:00
|
|
|
public boolean hasUuid() { return hasUuid; }
|
2010-10-26 12:49:25 +02:00
|
|
|
public akka.remote.protocol.RemoteProtocol.UuidProtocol getUuid() { return uuid_; }
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2011-04-29 15:47:56 +02:00
|
|
|
// required uint64 timeout = 2;
|
|
|
|
|
public static final int TIMEOUT_FIELD_NUMBER = 2;
|
2011-03-05 14:48:37 +01:00
|
|
|
private boolean hasTimeout;
|
|
|
|
|
private long timeout_ = 0L;
|
|
|
|
|
public boolean hasTimeout() { return hasTimeout; }
|
|
|
|
|
public long getTimeout() { return timeout_; }
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2011-04-29 15:47:56 +02:00
|
|
|
// required .ActorType actorType = 3;
|
|
|
|
|
public static final int ACTORTYPE_FIELD_NUMBER = 3;
|
2011-03-05 14:48:37 +01:00
|
|
|
private boolean hasActorType;
|
|
|
|
|
private akka.remote.protocol.RemoteProtocol.ActorType actorType_;
|
|
|
|
|
public boolean hasActorType() { return hasActorType; }
|
|
|
|
|
public akka.remote.protocol.RemoteProtocol.ActorType getActorType() { return actorType_; }
|
2010-10-28 20:30:11 +02:00
|
|
|
|
2011-04-29 15:47:56 +02:00
|
|
|
// optional .TypedActorInfoProtocol typedActorInfo = 4;
|
|
|
|
|
public static final int TYPEDACTORINFO_FIELD_NUMBER = 4;
|
2011-03-05 14:48:37 +01:00
|
|
|
private boolean hasTypedActorInfo;
|
|
|
|
|
private akka.remote.protocol.RemoteProtocol.TypedActorInfoProtocol typedActorInfo_;
|
|
|
|
|
public boolean hasTypedActorInfo() { return hasTypedActorInfo; }
|
|
|
|
|
public akka.remote.protocol.RemoteProtocol.TypedActorInfoProtocol getTypedActorInfo() { return typedActorInfo_; }
|
2010-09-13 17:57:13 +02:00
|
|
|
|
2011-04-29 15:47:56 +02:00
|
|
|
// optional string address = 5;
|
|
|
|
|
public static final int ADDRESS_FIELD_NUMBER = 5;
|
2011-04-08 15:29:14 +02:00
|
|
|
private boolean hasAddress;
|
|
|
|
|
private java.lang.String address_ = "";
|
|
|
|
|
public boolean hasAddress() { return hasAddress; }
|
|
|
|
|
public java.lang.String getAddress() { return address_; }
|
2010-10-26 12:04:32 +02:00
|
|
|
|
2010-06-10 11:39:26 +02:00
|
|
|
private void initFields() {
|
2010-10-26 12:49:25 +02:00
|
|
|
uuid_ = akka.remote.protocol.RemoteProtocol.UuidProtocol.getDefaultInstance();
|
2011-03-05 14:48:37 +01:00
|
|
|
actorType_ = akka.remote.protocol.RemoteProtocol.ActorType.SCALA_ACTOR;
|
|
|
|
|
typedActorInfo_ = akka.remote.protocol.RemoteProtocol.TypedActorInfoProtocol.getDefaultInstance();
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
|
|
|
|
public final boolean isInitialized() {
|
2010-09-17 16:04:25 +02:00
|
|
|
if (!hasUuid) return false;
|
2011-03-05 14:48:37 +01:00
|
|
|
if (!hasTimeout) return false;
|
|
|
|
|
if (!hasActorType) return false;
|
2010-09-17 16:04:25 +02:00
|
|
|
if (!getUuid().isInitialized()) return false;
|
2011-03-05 14:48:37 +01:00
|
|
|
if (hasTypedActorInfo()) {
|
|
|
|
|
if (!getTypedActorInfo().isInitialized()) return false;
|
2010-09-13 17:57:13 +02:00
|
|
|
}
|
2010-06-10 11:39:26 +02:00
|
|
|
return true;
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-10 11:39:26 +02:00
|
|
|
public void writeTo(com.google.protobuf.CodedOutputStream output)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
getSerializedSize();
|
2010-09-17 16:04:25 +02:00
|
|
|
if (hasUuid()) {
|
|
|
|
|
output.writeMessage(1, getUuid());
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
if (hasTimeout()) {
|
2011-04-29 15:47:56 +02:00
|
|
|
output.writeUInt64(2, getTimeout());
|
2010-06-22 07:22:47 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
if (hasActorType()) {
|
2011-04-29 15:47:56 +02:00
|
|
|
output.writeEnum(3, getActorType().getNumber());
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
if (hasTypedActorInfo()) {
|
2011-04-29 15:47:56 +02:00
|
|
|
output.writeMessage(4, getTypedActorInfo());
|
2010-09-13 17:57:13 +02:00
|
|
|
}
|
2011-04-08 15:29:14 +02:00
|
|
|
if (hasAddress()) {
|
2011-04-29 15:47:56 +02:00
|
|
|
output.writeString(5, getAddress());
|
2010-10-26 12:04:32 +02:00
|
|
|
}
|
2010-06-10 11:39:26 +02:00
|
|
|
getUnknownFields().writeTo(output);
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-10 11:39:26 +02:00
|
|
|
private int memoizedSerializedSize = -1;
|
|
|
|
|
public int getSerializedSize() {
|
|
|
|
|
int size = memoizedSerializedSize;
|
|
|
|
|
if (size != -1) return size;
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-10 11:39:26 +02:00
|
|
|
size = 0;
|
2010-09-17 16:04:25 +02:00
|
|
|
if (hasUuid()) {
|
2010-06-10 11:39:26 +02:00
|
|
|
size += com.google.protobuf.CodedOutputStream
|
2010-09-17 16:04:25 +02:00
|
|
|
.computeMessageSize(1, getUuid());
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
if (hasTimeout()) {
|
2010-06-22 07:22:47 +02:00
|
|
|
size += com.google.protobuf.CodedOutputStream
|
2011-04-29 15:47:56 +02:00
|
|
|
.computeUInt64Size(2, getTimeout());
|
2010-06-22 07:22:47 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
if (hasActorType()) {
|
2010-06-22 07:22:47 +02:00
|
|
|
size += com.google.protobuf.CodedOutputStream
|
2011-04-29 15:47:56 +02:00
|
|
|
.computeEnumSize(3, getActorType().getNumber());
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
if (hasTypedActorInfo()) {
|
2010-09-13 17:57:13 +02:00
|
|
|
size += com.google.protobuf.CodedOutputStream
|
2011-04-29 15:47:56 +02:00
|
|
|
.computeMessageSize(4, getTypedActorInfo());
|
2010-09-13 17:57:13 +02:00
|
|
|
}
|
2011-04-08 15:29:14 +02:00
|
|
|
if (hasAddress()) {
|
2010-10-26 12:04:32 +02:00
|
|
|
size += com.google.protobuf.CodedOutputStream
|
2011-04-29 15:47:56 +02:00
|
|
|
.computeStringSize(5, getAddress());
|
2010-10-26 12:04:32 +02:00
|
|
|
}
|
2010-06-10 11:39:26 +02:00
|
|
|
size += getUnknownFields().getSerializedSize();
|
|
|
|
|
memoizedSerializedSize = size;
|
|
|
|
|
return size;
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.ActorInfoProtocol parseFrom(
|
2010-06-10 11:39:26 +02:00
|
|
|
com.google.protobuf.ByteString data)
|
|
|
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
|
|
|
return newBuilder().mergeFrom(data).buildParsed();
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.ActorInfoProtocol parseFrom(
|
2010-06-10 11:39:26 +02:00
|
|
|
com.google.protobuf.ByteString data,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
|
|
|
return newBuilder().mergeFrom(data, extensionRegistry)
|
|
|
|
|
.buildParsed();
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.ActorInfoProtocol parseFrom(byte[] data)
|
2010-06-10 11:39:26 +02:00
|
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
|
|
|
return newBuilder().mergeFrom(data).buildParsed();
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.ActorInfoProtocol parseFrom(
|
2010-06-10 11:39:26 +02:00
|
|
|
byte[] data,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
|
|
|
return newBuilder().mergeFrom(data, extensionRegistry)
|
|
|
|
|
.buildParsed();
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.ActorInfoProtocol parseFrom(java.io.InputStream input)
|
2010-06-10 11:39:26 +02:00
|
|
|
throws java.io.IOException {
|
|
|
|
|
return newBuilder().mergeFrom(input).buildParsed();
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.ActorInfoProtocol parseFrom(
|
2010-06-10 11:39:26 +02:00
|
|
|
java.io.InputStream input,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
return newBuilder().mergeFrom(input, extensionRegistry)
|
|
|
|
|
.buildParsed();
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.ActorInfoProtocol parseDelimitedFrom(java.io.InputStream input)
|
2010-06-10 11:39:26 +02:00
|
|
|
throws java.io.IOException {
|
|
|
|
|
Builder builder = newBuilder();
|
|
|
|
|
if (builder.mergeDelimitedFrom(input)) {
|
|
|
|
|
return builder.buildParsed();
|
|
|
|
|
} else {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.ActorInfoProtocol parseDelimitedFrom(
|
2010-06-10 11:39:26 +02:00
|
|
|
java.io.InputStream input,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
Builder builder = newBuilder();
|
|
|
|
|
if (builder.mergeDelimitedFrom(input, extensionRegistry)) {
|
|
|
|
|
return builder.buildParsed();
|
|
|
|
|
} else {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.ActorInfoProtocol parseFrom(
|
2010-06-10 11:39:26 +02:00
|
|
|
com.google.protobuf.CodedInputStream input)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
return newBuilder().mergeFrom(input).buildParsed();
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.ActorInfoProtocol parseFrom(
|
2010-06-10 11:39:26 +02:00
|
|
|
com.google.protobuf.CodedInputStream input,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
return newBuilder().mergeFrom(input, extensionRegistry)
|
|
|
|
|
.buildParsed();
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-10 11:39:26 +02:00
|
|
|
public static Builder newBuilder() { return Builder.create(); }
|
|
|
|
|
public Builder newBuilderForType() { return newBuilder(); }
|
2011-03-05 14:48:37 +01:00
|
|
|
public static Builder newBuilder(akka.remote.protocol.RemoteProtocol.ActorInfoProtocol prototype) {
|
2010-06-10 11:39:26 +02:00
|
|
|
return newBuilder().mergeFrom(prototype);
|
|
|
|
|
}
|
|
|
|
|
public Builder toBuilder() { return newBuilder(this); }
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-10 11:39:26 +02:00
|
|
|
public static final class Builder extends
|
|
|
|
|
com.google.protobuf.GeneratedMessage.Builder<Builder> {
|
2011-03-05 14:48:37 +01:00
|
|
|
private akka.remote.protocol.RemoteProtocol.ActorInfoProtocol result;
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
// Construct using akka.remote.protocol.RemoteProtocol.ActorInfoProtocol.newBuilder()
|
2010-06-10 11:39:26 +02:00
|
|
|
private Builder() {}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-10 11:39:26 +02:00
|
|
|
private static Builder create() {
|
|
|
|
|
Builder builder = new Builder();
|
2011-03-05 14:48:37 +01:00
|
|
|
builder.result = new akka.remote.protocol.RemoteProtocol.ActorInfoProtocol();
|
2010-06-10 11:39:26 +02:00
|
|
|
return builder;
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
protected akka.remote.protocol.RemoteProtocol.ActorInfoProtocol internalGetResult() {
|
2010-06-10 11:39:26 +02:00
|
|
|
return result;
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-10 11:39:26 +02:00
|
|
|
public Builder clear() {
|
|
|
|
|
if (result == null) {
|
|
|
|
|
throw new IllegalStateException(
|
|
|
|
|
"Cannot call clear() after build().");
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
result = new akka.remote.protocol.RemoteProtocol.ActorInfoProtocol();
|
2010-06-10 11:39:26 +02:00
|
|
|
return this;
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-10 11:39:26 +02:00
|
|
|
public Builder clone() {
|
|
|
|
|
return create().mergeFrom(result);
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-10 11:39:26 +02:00
|
|
|
public com.google.protobuf.Descriptors.Descriptor
|
|
|
|
|
getDescriptorForType() {
|
2011-03-05 14:48:37 +01:00
|
|
|
return akka.remote.protocol.RemoteProtocol.ActorInfoProtocol.getDescriptor();
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
public akka.remote.protocol.RemoteProtocol.ActorInfoProtocol getDefaultInstanceForType() {
|
|
|
|
|
return akka.remote.protocol.RemoteProtocol.ActorInfoProtocol.getDefaultInstance();
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-10 11:39:26 +02:00
|
|
|
public boolean isInitialized() {
|
|
|
|
|
return result.isInitialized();
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public akka.remote.protocol.RemoteProtocol.ActorInfoProtocol build() {
|
2010-06-10 11:39:26 +02:00
|
|
|
if (result != null && !isInitialized()) {
|
|
|
|
|
throw newUninitializedMessageException(result);
|
|
|
|
|
}
|
|
|
|
|
return buildPartial();
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
private akka.remote.protocol.RemoteProtocol.ActorInfoProtocol buildParsed()
|
2010-06-10 11:39:26 +02:00
|
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
|
|
|
if (!isInitialized()) {
|
|
|
|
|
throw newUninitializedMessageException(
|
|
|
|
|
result).asInvalidProtocolBufferException();
|
|
|
|
|
}
|
|
|
|
|
return buildPartial();
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
public akka.remote.protocol.RemoteProtocol.ActorInfoProtocol buildPartial() {
|
2010-06-10 11:39:26 +02:00
|
|
|
if (result == null) {
|
|
|
|
|
throw new IllegalStateException(
|
|
|
|
|
"build() has already been called on this Builder.");
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
akka.remote.protocol.RemoteProtocol.ActorInfoProtocol returnMe = result;
|
2010-06-10 11:39:26 +02:00
|
|
|
result = null;
|
|
|
|
|
return returnMe;
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-10 11:39:26 +02:00
|
|
|
public Builder mergeFrom(com.google.protobuf.Message other) {
|
2011-03-05 14:48:37 +01:00
|
|
|
if (other instanceof akka.remote.protocol.RemoteProtocol.ActorInfoProtocol) {
|
|
|
|
|
return mergeFrom((akka.remote.protocol.RemoteProtocol.ActorInfoProtocol)other);
|
2010-06-10 11:39:26 +02:00
|
|
|
} else {
|
|
|
|
|
super.mergeFrom(other);
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
public Builder mergeFrom(akka.remote.protocol.RemoteProtocol.ActorInfoProtocol other) {
|
|
|
|
|
if (other == akka.remote.protocol.RemoteProtocol.ActorInfoProtocol.getDefaultInstance()) return this;
|
2010-09-17 16:04:25 +02:00
|
|
|
if (other.hasUuid()) {
|
|
|
|
|
mergeUuid(other.getUuid());
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
if (other.hasTimeout()) {
|
|
|
|
|
setTimeout(other.getTimeout());
|
2010-06-22 07:22:47 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
if (other.hasActorType()) {
|
|
|
|
|
setActorType(other.getActorType());
|
2010-06-22 07:22:47 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
if (other.hasTypedActorInfo()) {
|
|
|
|
|
mergeTypedActorInfo(other.getTypedActorInfo());
|
2010-09-13 17:57:13 +02:00
|
|
|
}
|
2011-04-08 15:29:14 +02:00
|
|
|
if (other.hasAddress()) {
|
|
|
|
|
setAddress(other.getAddress());
|
2010-10-26 12:04:32 +02:00
|
|
|
}
|
2010-06-10 11:39:26 +02:00
|
|
|
this.mergeUnknownFields(other.getUnknownFields());
|
|
|
|
|
return this;
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-10 11:39:26 +02:00
|
|
|
public Builder mergeFrom(
|
|
|
|
|
com.google.protobuf.CodedInputStream input,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
com.google.protobuf.UnknownFieldSet.Builder unknownFields =
|
|
|
|
|
com.google.protobuf.UnknownFieldSet.newBuilder(
|
|
|
|
|
this.getUnknownFields());
|
|
|
|
|
while (true) {
|
|
|
|
|
int tag = input.readTag();
|
|
|
|
|
switch (tag) {
|
|
|
|
|
case 0:
|
|
|
|
|
this.setUnknownFields(unknownFields.build());
|
|
|
|
|
return this;
|
|
|
|
|
default: {
|
|
|
|
|
if (!parseUnknownField(input, unknownFields,
|
|
|
|
|
extensionRegistry, tag)) {
|
|
|
|
|
this.setUnknownFields(unknownFields.build());
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
2010-09-17 16:04:25 +02:00
|
|
|
case 10: {
|
2010-10-26 12:49:25 +02:00
|
|
|
akka.remote.protocol.RemoteProtocol.UuidProtocol.Builder subBuilder = akka.remote.protocol.RemoteProtocol.UuidProtocol.newBuilder();
|
2010-09-17 16:04:25 +02:00
|
|
|
if (hasUuid()) {
|
|
|
|
|
subBuilder.mergeFrom(getUuid());
|
|
|
|
|
}
|
|
|
|
|
input.readMessage(subBuilder, extensionRegistry);
|
|
|
|
|
setUuid(subBuilder.buildPartial());
|
2010-06-10 11:39:26 +02:00
|
|
|
break;
|
|
|
|
|
}
|
2011-04-29 15:47:56 +02:00
|
|
|
case 16: {
|
2011-03-05 14:48:37 +01:00
|
|
|
setTimeout(input.readUInt64());
|
2010-10-28 20:30:11 +02:00
|
|
|
break;
|
|
|
|
|
}
|
2011-04-29 15:47:56 +02:00
|
|
|
case 24: {
|
2011-03-05 14:48:37 +01:00
|
|
|
int rawValue = input.readEnum();
|
|
|
|
|
akka.remote.protocol.RemoteProtocol.ActorType value = akka.remote.protocol.RemoteProtocol.ActorType.valueOf(rawValue);
|
|
|
|
|
if (value == null) {
|
2011-04-29 15:47:56 +02:00
|
|
|
unknownFields.mergeVarintField(3, rawValue);
|
2011-03-05 14:48:37 +01:00
|
|
|
} else {
|
|
|
|
|
setActorType(value);
|
2010-06-22 07:22:47 +02:00
|
|
|
}
|
2010-06-10 11:39:26 +02:00
|
|
|
break;
|
|
|
|
|
}
|
2011-04-29 15:47:56 +02:00
|
|
|
case 34: {
|
2011-03-05 14:48:37 +01:00
|
|
|
akka.remote.protocol.RemoteProtocol.TypedActorInfoProtocol.Builder subBuilder = akka.remote.protocol.RemoteProtocol.TypedActorInfoProtocol.newBuilder();
|
|
|
|
|
if (hasTypedActorInfo()) {
|
|
|
|
|
subBuilder.mergeFrom(getTypedActorInfo());
|
2010-07-26 18:47:25 +02:00
|
|
|
}
|
|
|
|
|
input.readMessage(subBuilder, extensionRegistry);
|
2011-03-05 14:48:37 +01:00
|
|
|
setTypedActorInfo(subBuilder.buildPartial());
|
2010-06-22 07:22:47 +02:00
|
|
|
break;
|
|
|
|
|
}
|
2011-04-29 15:47:56 +02:00
|
|
|
case 42: {
|
2011-04-08 15:29:14 +02:00
|
|
|
setAddress(input.readString());
|
2010-10-26 12:04:32 +02:00
|
|
|
break;
|
|
|
|
|
}
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
|
|
|
|
|
2010-09-17 16:04:25 +02:00
|
|
|
// required .UuidProtocol uuid = 1;
|
|
|
|
|
public boolean hasUuid() {
|
|
|
|
|
return result.hasUuid();
|
2010-06-22 07:22:47 +02:00
|
|
|
}
|
2010-10-26 12:49:25 +02:00
|
|
|
public akka.remote.protocol.RemoteProtocol.UuidProtocol getUuid() {
|
2010-09-17 16:04:25 +02:00
|
|
|
return result.getUuid();
|
2010-06-22 07:22:47 +02:00
|
|
|
}
|
2010-10-26 12:49:25 +02:00
|
|
|
public Builder setUuid(akka.remote.protocol.RemoteProtocol.UuidProtocol value) {
|
2010-09-17 16:04:25 +02:00
|
|
|
if (value == null) {
|
|
|
|
|
throw new NullPointerException();
|
|
|
|
|
}
|
|
|
|
|
result.hasUuid = true;
|
|
|
|
|
result.uuid_ = value;
|
2010-06-22 07:22:47 +02:00
|
|
|
return this;
|
|
|
|
|
}
|
2010-10-26 12:49:25 +02:00
|
|
|
public Builder setUuid(akka.remote.protocol.RemoteProtocol.UuidProtocol.Builder builderForValue) {
|
2010-09-17 16:04:25 +02:00
|
|
|
result.hasUuid = true;
|
|
|
|
|
result.uuid_ = builderForValue.build();
|
|
|
|
|
return this;
|
|
|
|
|
}
|
2010-10-26 12:49:25 +02:00
|
|
|
public Builder mergeUuid(akka.remote.protocol.RemoteProtocol.UuidProtocol value) {
|
2010-09-17 16:04:25 +02:00
|
|
|
if (result.hasUuid() &&
|
2010-10-26 12:49:25 +02:00
|
|
|
result.uuid_ != akka.remote.protocol.RemoteProtocol.UuidProtocol.getDefaultInstance()) {
|
2010-09-17 16:04:25 +02:00
|
|
|
result.uuid_ =
|
2010-10-26 12:49:25 +02:00
|
|
|
akka.remote.protocol.RemoteProtocol.UuidProtocol.newBuilder(result.uuid_).mergeFrom(value).buildPartial();
|
2010-09-17 16:04:25 +02:00
|
|
|
} else {
|
|
|
|
|
result.uuid_ = value;
|
|
|
|
|
}
|
|
|
|
|
result.hasUuid = true;
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
public Builder clearUuid() {
|
|
|
|
|
result.hasUuid = false;
|
2010-10-26 12:49:25 +02:00
|
|
|
result.uuid_ = akka.remote.protocol.RemoteProtocol.UuidProtocol.getDefaultInstance();
|
2010-06-22 07:22:47 +02:00
|
|
|
return this;
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2011-04-29 15:47:56 +02:00
|
|
|
// required uint64 timeout = 2;
|
2011-03-05 14:48:37 +01:00
|
|
|
public boolean hasTimeout() {
|
|
|
|
|
return result.hasTimeout();
|
2010-10-28 20:30:11 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public long getTimeout() {
|
|
|
|
|
return result.getTimeout();
|
2010-10-28 20:30:11 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public Builder setTimeout(long value) {
|
|
|
|
|
result.hasTimeout = true;
|
|
|
|
|
result.timeout_ = value;
|
2010-10-28 20:30:11 +02:00
|
|
|
return this;
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public Builder clearTimeout() {
|
|
|
|
|
result.hasTimeout = false;
|
|
|
|
|
result.timeout_ = 0L;
|
2010-10-28 20:30:11 +02:00
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
|
2011-04-29 15:47:56 +02:00
|
|
|
// required .ActorType actorType = 3;
|
2011-03-05 14:48:37 +01:00
|
|
|
public boolean hasActorType() {
|
|
|
|
|
return result.hasActorType();
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public akka.remote.protocol.RemoteProtocol.ActorType getActorType() {
|
|
|
|
|
return result.getActorType();
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public Builder setActorType(akka.remote.protocol.RemoteProtocol.ActorType value) {
|
2010-06-10 11:39:26 +02:00
|
|
|
if (value == null) {
|
2010-06-24 08:48:48 +02:00
|
|
|
throw new NullPointerException();
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
result.hasActorType = true;
|
|
|
|
|
result.actorType_ = value;
|
2010-06-10 11:39:26 +02:00
|
|
|
return this;
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public Builder clearActorType() {
|
|
|
|
|
result.hasActorType = false;
|
|
|
|
|
result.actorType_ = akka.remote.protocol.RemoteProtocol.ActorType.SCALA_ACTOR;
|
2010-06-10 11:39:26 +02:00
|
|
|
return this;
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
|
2011-04-29 15:47:56 +02:00
|
|
|
// optional .TypedActorInfoProtocol typedActorInfo = 4;
|
2011-03-05 14:48:37 +01:00
|
|
|
public boolean hasTypedActorInfo() {
|
|
|
|
|
return result.hasTypedActorInfo();
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public akka.remote.protocol.RemoteProtocol.TypedActorInfoProtocol getTypedActorInfo() {
|
|
|
|
|
return result.getTypedActorInfo();
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public Builder setTypedActorInfo(akka.remote.protocol.RemoteProtocol.TypedActorInfoProtocol value) {
|
2010-06-10 11:39:26 +02:00
|
|
|
if (value == null) {
|
|
|
|
|
throw new NullPointerException();
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
result.hasTypedActorInfo = true;
|
|
|
|
|
result.typedActorInfo_ = value;
|
2010-06-10 11:39:26 +02:00
|
|
|
return this;
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public Builder setTypedActorInfo(akka.remote.protocol.RemoteProtocol.TypedActorInfoProtocol.Builder builderForValue) {
|
|
|
|
|
result.hasTypedActorInfo = true;
|
|
|
|
|
result.typedActorInfo_ = builderForValue.build();
|
2010-06-10 16:00:17 +02:00
|
|
|
return this;
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public Builder mergeTypedActorInfo(akka.remote.protocol.RemoteProtocol.TypedActorInfoProtocol value) {
|
|
|
|
|
if (result.hasTypedActorInfo() &&
|
|
|
|
|
result.typedActorInfo_ != akka.remote.protocol.RemoteProtocol.TypedActorInfoProtocol.getDefaultInstance()) {
|
|
|
|
|
result.typedActorInfo_ =
|
|
|
|
|
akka.remote.protocol.RemoteProtocol.TypedActorInfoProtocol.newBuilder(result.typedActorInfo_).mergeFrom(value).buildPartial();
|
2010-06-10 16:00:17 +02:00
|
|
|
} else {
|
2011-03-05 14:48:37 +01:00
|
|
|
result.typedActorInfo_ = value;
|
2010-06-10 16:00:17 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
result.hasTypedActorInfo = true;
|
2010-06-10 16:00:17 +02:00
|
|
|
return this;
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public Builder clearTypedActorInfo() {
|
|
|
|
|
result.hasTypedActorInfo = false;
|
|
|
|
|
result.typedActorInfo_ = akka.remote.protocol.RemoteProtocol.TypedActorInfoProtocol.getDefaultInstance();
|
2010-06-10 11:39:26 +02:00
|
|
|
return this;
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2011-04-29 15:47:56 +02:00
|
|
|
// optional string address = 5;
|
2011-04-08 15:29:14 +02:00
|
|
|
public boolean hasAddress() {
|
|
|
|
|
return result.hasAddress();
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
2011-04-08 15:29:14 +02:00
|
|
|
public java.lang.String getAddress() {
|
|
|
|
|
return result.getAddress();
|
2010-06-22 07:22:47 +02:00
|
|
|
}
|
2011-04-08 15:29:14 +02:00
|
|
|
public Builder setAddress(java.lang.String value) {
|
2010-06-10 11:39:26 +02:00
|
|
|
if (value == null) {
|
2011-03-05 14:48:37 +01:00
|
|
|
throw new NullPointerException();
|
|
|
|
|
}
|
2011-04-08 15:29:14 +02:00
|
|
|
result.hasAddress = true;
|
|
|
|
|
result.address_ = value;
|
2010-06-10 11:39:26 +02:00
|
|
|
return this;
|
|
|
|
|
}
|
2011-04-08 15:29:14 +02:00
|
|
|
public Builder clearAddress() {
|
|
|
|
|
result.hasAddress = false;
|
|
|
|
|
result.address_ = getDefaultInstance().getAddress();
|
2010-09-17 16:04:25 +02:00
|
|
|
return this;
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
|
|
|
|
|
// @@protoc_insertion_point(builder_scope:ActorInfoProtocol)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static {
|
|
|
|
|
defaultInstance = new ActorInfoProtocol(true);
|
|
|
|
|
akka.remote.protocol.RemoteProtocol.internalForceInit();
|
|
|
|
|
defaultInstance.initFields();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// @@protoc_insertion_point(class_scope:ActorInfoProtocol)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static final class TypedActorInfoProtocol extends
|
|
|
|
|
com.google.protobuf.GeneratedMessage {
|
|
|
|
|
// Use TypedActorInfoProtocol.newBuilder() to construct.
|
|
|
|
|
private TypedActorInfoProtocol() {
|
|
|
|
|
initFields();
|
|
|
|
|
}
|
|
|
|
|
private TypedActorInfoProtocol(boolean noInit) {}
|
|
|
|
|
|
|
|
|
|
private static final TypedActorInfoProtocol defaultInstance;
|
|
|
|
|
public static TypedActorInfoProtocol getDefaultInstance() {
|
|
|
|
|
return defaultInstance;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public TypedActorInfoProtocol getDefaultInstanceForType() {
|
|
|
|
|
return defaultInstance;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static final com.google.protobuf.Descriptors.Descriptor
|
|
|
|
|
getDescriptor() {
|
|
|
|
|
return akka.remote.protocol.RemoteProtocol.internal_static_TypedActorInfoProtocol_descriptor;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
|
|
|
|
|
internalGetFieldAccessorTable() {
|
|
|
|
|
return akka.remote.protocol.RemoteProtocol.internal_static_TypedActorInfoProtocol_fieldAccessorTable;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// required string interface = 1;
|
|
|
|
|
public static final int INTERFACE_FIELD_NUMBER = 1;
|
|
|
|
|
private boolean hasInterface;
|
|
|
|
|
private java.lang.String interface_ = "";
|
|
|
|
|
public boolean hasInterface() { return hasInterface; }
|
|
|
|
|
public java.lang.String getInterface() { return interface_; }
|
|
|
|
|
|
|
|
|
|
// required string method = 2;
|
|
|
|
|
public static final int METHOD_FIELD_NUMBER = 2;
|
|
|
|
|
private boolean hasMethod;
|
|
|
|
|
private java.lang.String method_ = "";
|
|
|
|
|
public boolean hasMethod() { return hasMethod; }
|
|
|
|
|
public java.lang.String getMethod() { return method_; }
|
|
|
|
|
|
|
|
|
|
private void initFields() {
|
|
|
|
|
}
|
|
|
|
|
public final boolean isInitialized() {
|
|
|
|
|
if (!hasInterface) return false;
|
|
|
|
|
if (!hasMethod) return false;
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void writeTo(com.google.protobuf.CodedOutputStream output)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
getSerializedSize();
|
|
|
|
|
if (hasInterface()) {
|
|
|
|
|
output.writeString(1, getInterface());
|
2010-09-17 16:04:25 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
if (hasMethod()) {
|
|
|
|
|
output.writeString(2, getMethod());
|
|
|
|
|
}
|
|
|
|
|
getUnknownFields().writeTo(output);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private int memoizedSerializedSize = -1;
|
|
|
|
|
public int getSerializedSize() {
|
|
|
|
|
int size = memoizedSerializedSize;
|
|
|
|
|
if (size != -1) return size;
|
|
|
|
|
|
|
|
|
|
size = 0;
|
|
|
|
|
if (hasInterface()) {
|
|
|
|
|
size += com.google.protobuf.CodedOutputStream
|
|
|
|
|
.computeStringSize(1, getInterface());
|
|
|
|
|
}
|
|
|
|
|
if (hasMethod()) {
|
|
|
|
|
size += com.google.protobuf.CodedOutputStream
|
|
|
|
|
.computeStringSize(2, getMethod());
|
|
|
|
|
}
|
|
|
|
|
size += getUnknownFields().getSerializedSize();
|
|
|
|
|
memoizedSerializedSize = size;
|
|
|
|
|
return size;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static akka.remote.protocol.RemoteProtocol.TypedActorInfoProtocol parseFrom(
|
|
|
|
|
com.google.protobuf.ByteString data)
|
|
|
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
|
|
|
return newBuilder().mergeFrom(data).buildParsed();
|
|
|
|
|
}
|
|
|
|
|
public static akka.remote.protocol.RemoteProtocol.TypedActorInfoProtocol parseFrom(
|
|
|
|
|
com.google.protobuf.ByteString data,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
|
|
|
return newBuilder().mergeFrom(data, extensionRegistry)
|
|
|
|
|
.buildParsed();
|
|
|
|
|
}
|
|
|
|
|
public static akka.remote.protocol.RemoteProtocol.TypedActorInfoProtocol parseFrom(byte[] data)
|
|
|
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
|
|
|
return newBuilder().mergeFrom(data).buildParsed();
|
|
|
|
|
}
|
|
|
|
|
public static akka.remote.protocol.RemoteProtocol.TypedActorInfoProtocol parseFrom(
|
|
|
|
|
byte[] data,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
|
|
|
return newBuilder().mergeFrom(data, extensionRegistry)
|
|
|
|
|
.buildParsed();
|
|
|
|
|
}
|
|
|
|
|
public static akka.remote.protocol.RemoteProtocol.TypedActorInfoProtocol parseFrom(java.io.InputStream input)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
return newBuilder().mergeFrom(input).buildParsed();
|
|
|
|
|
}
|
|
|
|
|
public static akka.remote.protocol.RemoteProtocol.TypedActorInfoProtocol parseFrom(
|
|
|
|
|
java.io.InputStream input,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
return newBuilder().mergeFrom(input, extensionRegistry)
|
|
|
|
|
.buildParsed();
|
|
|
|
|
}
|
|
|
|
|
public static akka.remote.protocol.RemoteProtocol.TypedActorInfoProtocol parseDelimitedFrom(java.io.InputStream input)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
Builder builder = newBuilder();
|
|
|
|
|
if (builder.mergeDelimitedFrom(input)) {
|
|
|
|
|
return builder.buildParsed();
|
|
|
|
|
} else {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
public static akka.remote.protocol.RemoteProtocol.TypedActorInfoProtocol parseDelimitedFrom(
|
|
|
|
|
java.io.InputStream input,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
Builder builder = newBuilder();
|
|
|
|
|
if (builder.mergeDelimitedFrom(input, extensionRegistry)) {
|
|
|
|
|
return builder.buildParsed();
|
|
|
|
|
} else {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
public static akka.remote.protocol.RemoteProtocol.TypedActorInfoProtocol parseFrom(
|
|
|
|
|
com.google.protobuf.CodedInputStream input)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
return newBuilder().mergeFrom(input).buildParsed();
|
|
|
|
|
}
|
|
|
|
|
public static akka.remote.protocol.RemoteProtocol.TypedActorInfoProtocol parseFrom(
|
|
|
|
|
com.google.protobuf.CodedInputStream input,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
return newBuilder().mergeFrom(input, extensionRegistry)
|
|
|
|
|
.buildParsed();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static Builder newBuilder() { return Builder.create(); }
|
|
|
|
|
public Builder newBuilderForType() { return newBuilder(); }
|
|
|
|
|
public static Builder newBuilder(akka.remote.protocol.RemoteProtocol.TypedActorInfoProtocol prototype) {
|
|
|
|
|
return newBuilder().mergeFrom(prototype);
|
|
|
|
|
}
|
|
|
|
|
public Builder toBuilder() { return newBuilder(this); }
|
|
|
|
|
|
|
|
|
|
public static final class Builder extends
|
|
|
|
|
com.google.protobuf.GeneratedMessage.Builder<Builder> {
|
|
|
|
|
private akka.remote.protocol.RemoteProtocol.TypedActorInfoProtocol result;
|
|
|
|
|
|
|
|
|
|
// Construct using akka.remote.protocol.RemoteProtocol.TypedActorInfoProtocol.newBuilder()
|
|
|
|
|
private Builder() {}
|
|
|
|
|
|
|
|
|
|
private static Builder create() {
|
|
|
|
|
Builder builder = new Builder();
|
|
|
|
|
builder.result = new akka.remote.protocol.RemoteProtocol.TypedActorInfoProtocol();
|
|
|
|
|
return builder;
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
protected akka.remote.protocol.RemoteProtocol.TypedActorInfoProtocol internalGetResult() {
|
|
|
|
|
return result;
|
2010-06-22 07:22:47 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
|
|
|
|
|
public Builder clear() {
|
|
|
|
|
if (result == null) {
|
|
|
|
|
throw new IllegalStateException(
|
|
|
|
|
"Cannot call clear() after build().");
|
2010-10-28 20:30:11 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
result = new akka.remote.protocol.RemoteProtocol.TypedActorInfoProtocol();
|
2010-06-10 11:39:26 +02:00
|
|
|
return this;
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
|
|
|
|
|
public Builder clone() {
|
|
|
|
|
return create().mergeFrom(result);
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
|
|
|
|
|
public com.google.protobuf.Descriptors.Descriptor
|
|
|
|
|
getDescriptorForType() {
|
|
|
|
|
return akka.remote.protocol.RemoteProtocol.TypedActorInfoProtocol.getDescriptor();
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
|
|
|
|
|
public akka.remote.protocol.RemoteProtocol.TypedActorInfoProtocol getDefaultInstanceForType() {
|
|
|
|
|
return akka.remote.protocol.RemoteProtocol.TypedActorInfoProtocol.getDefaultInstance();
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
public boolean isInitialized() {
|
|
|
|
|
return result.isInitialized();
|
2010-09-13 17:57:13 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public akka.remote.protocol.RemoteProtocol.TypedActorInfoProtocol build() {
|
|
|
|
|
if (result != null && !isInitialized()) {
|
|
|
|
|
throw newUninitializedMessageException(result);
|
|
|
|
|
}
|
|
|
|
|
return buildPartial();
|
2010-09-13 17:57:13 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
|
|
|
|
|
private akka.remote.protocol.RemoteProtocol.TypedActorInfoProtocol buildParsed()
|
|
|
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
|
|
|
if (!isInitialized()) {
|
|
|
|
|
throw newUninitializedMessageException(
|
|
|
|
|
result).asInvalidProtocolBufferException();
|
|
|
|
|
}
|
|
|
|
|
return buildPartial();
|
2010-09-13 17:57:13 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
|
|
|
|
|
public akka.remote.protocol.RemoteProtocol.TypedActorInfoProtocol buildPartial() {
|
|
|
|
|
if (result == null) {
|
|
|
|
|
throw new IllegalStateException(
|
|
|
|
|
"build() has already been called on this Builder.");
|
2010-09-13 17:57:13 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
akka.remote.protocol.RemoteProtocol.TypedActorInfoProtocol returnMe = result;
|
|
|
|
|
result = null;
|
|
|
|
|
return returnMe;
|
2010-09-13 17:57:13 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
|
|
|
|
|
public Builder mergeFrom(com.google.protobuf.Message other) {
|
|
|
|
|
if (other instanceof akka.remote.protocol.RemoteProtocol.TypedActorInfoProtocol) {
|
|
|
|
|
return mergeFrom((akka.remote.protocol.RemoteProtocol.TypedActorInfoProtocol)other);
|
|
|
|
|
} else {
|
|
|
|
|
super.mergeFrom(other);
|
|
|
|
|
return this;
|
|
|
|
|
}
|
2010-09-13 17:57:13 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
|
|
|
|
|
public Builder mergeFrom(akka.remote.protocol.RemoteProtocol.TypedActorInfoProtocol other) {
|
|
|
|
|
if (other == akka.remote.protocol.RemoteProtocol.TypedActorInfoProtocol.getDefaultInstance()) return this;
|
|
|
|
|
if (other.hasInterface()) {
|
|
|
|
|
setInterface(other.getInterface());
|
2010-09-13 17:57:13 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
if (other.hasMethod()) {
|
|
|
|
|
setMethod(other.getMethod());
|
2010-09-13 17:57:13 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
this.mergeUnknownFields(other.getUnknownFields());
|
2010-09-13 17:57:13 +02:00
|
|
|
return this;
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
|
|
|
|
|
public Builder mergeFrom(
|
|
|
|
|
com.google.protobuf.CodedInputStream input,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
com.google.protobuf.UnknownFieldSet.Builder unknownFields =
|
|
|
|
|
com.google.protobuf.UnknownFieldSet.newBuilder(
|
|
|
|
|
this.getUnknownFields());
|
|
|
|
|
while (true) {
|
|
|
|
|
int tag = input.readTag();
|
|
|
|
|
switch (tag) {
|
|
|
|
|
case 0:
|
|
|
|
|
this.setUnknownFields(unknownFields.build());
|
|
|
|
|
return this;
|
|
|
|
|
default: {
|
|
|
|
|
if (!parseUnknownField(input, unknownFields,
|
|
|
|
|
extensionRegistry, tag)) {
|
|
|
|
|
this.setUnknownFields(unknownFields.build());
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case 10: {
|
|
|
|
|
setInterface(input.readString());
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case 18: {
|
|
|
|
|
setMethod(input.readString());
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
2010-09-13 17:57:13 +02:00
|
|
|
}
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
// required string interface = 1;
|
|
|
|
|
public boolean hasInterface() {
|
|
|
|
|
return result.hasInterface();
|
|
|
|
|
}
|
|
|
|
|
public java.lang.String getInterface() {
|
|
|
|
|
return result.getInterface();
|
|
|
|
|
}
|
|
|
|
|
public Builder setInterface(java.lang.String value) {
|
|
|
|
|
if (value == null) {
|
|
|
|
|
throw new NullPointerException();
|
|
|
|
|
}
|
|
|
|
|
result.hasInterface = true;
|
|
|
|
|
result.interface_ = value;
|
2010-09-13 17:57:13 +02:00
|
|
|
return this;
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public Builder clearInterface() {
|
|
|
|
|
result.hasInterface = false;
|
|
|
|
|
result.interface_ = getDefaultInstance().getInterface();
|
2010-09-13 17:57:13 +02:00
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
// required string method = 2;
|
|
|
|
|
public boolean hasMethod() {
|
|
|
|
|
return result.hasMethod();
|
2010-10-26 12:04:32 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public java.lang.String getMethod() {
|
|
|
|
|
return result.getMethod();
|
2010-10-26 12:04:32 +02:00
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public Builder setMethod(java.lang.String value) {
|
2010-10-26 12:04:32 +02:00
|
|
|
if (value == null) {
|
|
|
|
|
throw new NullPointerException();
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
result.hasMethod = true;
|
|
|
|
|
result.method_ = value;
|
2010-10-26 12:04:32 +02:00
|
|
|
return this;
|
|
|
|
|
}
|
2011-03-05 14:48:37 +01:00
|
|
|
public Builder clearMethod() {
|
|
|
|
|
result.hasMethod = false;
|
|
|
|
|
result.method_ = getDefaultInstance().getMethod();
|
2010-10-26 12:04:32 +02:00
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
// @@protoc_insertion_point(builder_scope:TypedActorInfoProtocol)
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-10 11:39:26 +02:00
|
|
|
static {
|
2011-03-05 14:48:37 +01:00
|
|
|
defaultInstance = new TypedActorInfoProtocol(true);
|
2010-10-26 12:49:25 +02:00
|
|
|
akka.remote.protocol.RemoteProtocol.internalForceInit();
|
2010-06-10 11:39:26 +02:00
|
|
|
defaultInstance.initFields();
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
// @@protoc_insertion_point(class_scope:TypedActorInfoProtocol)
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-09-13 17:57:13 +02:00
|
|
|
public static final class UuidProtocol extends
|
2010-06-10 11:39:26 +02:00
|
|
|
com.google.protobuf.GeneratedMessage {
|
2010-09-13 17:57:13 +02:00
|
|
|
// Use UuidProtocol.newBuilder() to construct.
|
|
|
|
|
private UuidProtocol() {
|
2010-06-10 11:39:26 +02:00
|
|
|
initFields();
|
|
|
|
|
}
|
2010-09-13 17:57:13 +02:00
|
|
|
private UuidProtocol(boolean noInit) {}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-09-13 17:57:13 +02:00
|
|
|
private static final UuidProtocol defaultInstance;
|
|
|
|
|
public static UuidProtocol getDefaultInstance() {
|
2010-06-10 11:39:26 +02:00
|
|
|
return defaultInstance;
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-09-13 17:57:13 +02:00
|
|
|
public UuidProtocol getDefaultInstanceForType() {
|
2010-06-10 11:39:26 +02:00
|
|
|
return defaultInstance;
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-10 11:39:26 +02:00
|
|
|
public static final com.google.protobuf.Descriptors.Descriptor
|
|
|
|
|
getDescriptor() {
|
2010-10-26 12:49:25 +02:00
|
|
|
return akka.remote.protocol.RemoteProtocol.internal_static_UuidProtocol_descriptor;
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-10 11:39:26 +02:00
|
|
|
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
|
|
|
|
|
internalGetFieldAccessorTable() {
|
2010-10-26 12:49:25 +02:00
|
|
|
return akka.remote.protocol.RemoteProtocol.internal_static_UuidProtocol_fieldAccessorTable;
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-09-13 17:57:13 +02:00
|
|
|
// required uint64 high = 1;
|
|
|
|
|
public static final int HIGH_FIELD_NUMBER = 1;
|
|
|
|
|
private boolean hasHigh;
|
|
|
|
|
private long high_ = 0L;
|
|
|
|
|
public boolean hasHigh() { return hasHigh; }
|
|
|
|
|
public long getHigh() { return high_; }
|
|
|
|
|
|
|
|
|
|
// required uint64 low = 2;
|
|
|
|
|
public static final int LOW_FIELD_NUMBER = 2;
|
|
|
|
|
private boolean hasLow;
|
|
|
|
|
private long low_ = 0L;
|
|
|
|
|
public boolean hasLow() { return hasLow; }
|
|
|
|
|
public long getLow() { return low_; }
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-22 07:22:47 +02:00
|
|
|
private void initFields() {
|
|
|
|
|
}
|
|
|
|
|
public final boolean isInitialized() {
|
2010-09-13 17:57:13 +02:00
|
|
|
if (!hasHigh) return false;
|
|
|
|
|
if (!hasLow) return false;
|
2010-06-22 07:22:47 +02:00
|
|
|
return true;
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-22 07:22:47 +02:00
|
|
|
public void writeTo(com.google.protobuf.CodedOutputStream output)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
getSerializedSize();
|
2010-09-13 17:57:13 +02:00
|
|
|
if (hasHigh()) {
|
|
|
|
|
output.writeUInt64(1, getHigh());
|
|
|
|
|
}
|
|
|
|
|
if (hasLow()) {
|
|
|
|
|
output.writeUInt64(2, getLow());
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
|
|
|
|
getUnknownFields().writeTo(output);
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-10 11:39:26 +02:00
|
|
|
private int memoizedSerializedSize = -1;
|
|
|
|
|
public int getSerializedSize() {
|
|
|
|
|
int size = memoizedSerializedSize;
|
|
|
|
|
if (size != -1) return size;
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-10 11:39:26 +02:00
|
|
|
size = 0;
|
2010-09-13 17:57:13 +02:00
|
|
|
if (hasHigh()) {
|
2010-06-10 11:39:26 +02:00
|
|
|
size += com.google.protobuf.CodedOutputStream
|
2010-09-13 17:57:13 +02:00
|
|
|
.computeUInt64Size(1, getHigh());
|
|
|
|
|
}
|
|
|
|
|
if (hasLow()) {
|
|
|
|
|
size += com.google.protobuf.CodedOutputStream
|
|
|
|
|
.computeUInt64Size(2, getLow());
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
|
|
|
|
size += getUnknownFields().getSerializedSize();
|
|
|
|
|
memoizedSerializedSize = size;
|
|
|
|
|
return size;
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-10-26 12:49:25 +02:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.UuidProtocol parseFrom(
|
2010-06-10 11:39:26 +02:00
|
|
|
com.google.protobuf.ByteString data)
|
|
|
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
|
|
|
return newBuilder().mergeFrom(data).buildParsed();
|
|
|
|
|
}
|
2010-10-26 12:49:25 +02:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.UuidProtocol parseFrom(
|
2010-06-10 11:39:26 +02:00
|
|
|
com.google.protobuf.ByteString data,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
|
|
|
return newBuilder().mergeFrom(data, extensionRegistry)
|
|
|
|
|
.buildParsed();
|
|
|
|
|
}
|
2010-10-26 12:49:25 +02:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.UuidProtocol parseFrom(byte[] data)
|
2010-06-10 11:39:26 +02:00
|
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
|
|
|
return newBuilder().mergeFrom(data).buildParsed();
|
|
|
|
|
}
|
2010-10-26 12:49:25 +02:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.UuidProtocol parseFrom(
|
2010-06-10 11:39:26 +02:00
|
|
|
byte[] data,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
|
|
|
return newBuilder().mergeFrom(data, extensionRegistry)
|
|
|
|
|
.buildParsed();
|
|
|
|
|
}
|
2010-10-26 12:49:25 +02:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.UuidProtocol parseFrom(java.io.InputStream input)
|
2010-06-10 11:39:26 +02:00
|
|
|
throws java.io.IOException {
|
|
|
|
|
return newBuilder().mergeFrom(input).buildParsed();
|
|
|
|
|
}
|
2010-10-26 12:49:25 +02:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.UuidProtocol parseFrom(
|
2010-06-10 11:39:26 +02:00
|
|
|
java.io.InputStream input,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
return newBuilder().mergeFrom(input, extensionRegistry)
|
|
|
|
|
.buildParsed();
|
|
|
|
|
}
|
2010-10-26 12:49:25 +02:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.UuidProtocol parseDelimitedFrom(java.io.InputStream input)
|
2010-06-10 11:39:26 +02:00
|
|
|
throws java.io.IOException {
|
|
|
|
|
Builder builder = newBuilder();
|
|
|
|
|
if (builder.mergeDelimitedFrom(input)) {
|
|
|
|
|
return builder.buildParsed();
|
|
|
|
|
} else {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
}
|
2010-10-26 12:49:25 +02:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.UuidProtocol parseDelimitedFrom(
|
2010-06-10 11:39:26 +02:00
|
|
|
java.io.InputStream input,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
Builder builder = newBuilder();
|
|
|
|
|
if (builder.mergeDelimitedFrom(input, extensionRegistry)) {
|
|
|
|
|
return builder.buildParsed();
|
|
|
|
|
} else {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
}
|
2010-10-26 12:49:25 +02:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.UuidProtocol parseFrom(
|
2010-06-10 11:39:26 +02:00
|
|
|
com.google.protobuf.CodedInputStream input)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
return newBuilder().mergeFrom(input).buildParsed();
|
|
|
|
|
}
|
2010-10-26 12:49:25 +02:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.UuidProtocol parseFrom(
|
2010-06-10 11:39:26 +02:00
|
|
|
com.google.protobuf.CodedInputStream input,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
return newBuilder().mergeFrom(input, extensionRegistry)
|
|
|
|
|
.buildParsed();
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-10 11:39:26 +02:00
|
|
|
public static Builder newBuilder() { return Builder.create(); }
|
|
|
|
|
public Builder newBuilderForType() { return newBuilder(); }
|
2010-10-26 12:49:25 +02:00
|
|
|
public static Builder newBuilder(akka.remote.protocol.RemoteProtocol.UuidProtocol prototype) {
|
2010-06-10 11:39:26 +02:00
|
|
|
return newBuilder().mergeFrom(prototype);
|
|
|
|
|
}
|
|
|
|
|
public Builder toBuilder() { return newBuilder(this); }
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-10 11:39:26 +02:00
|
|
|
public static final class Builder extends
|
|
|
|
|
com.google.protobuf.GeneratedMessage.Builder<Builder> {
|
2010-10-26 12:49:25 +02:00
|
|
|
private akka.remote.protocol.RemoteProtocol.UuidProtocol result;
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-10-26 12:49:25 +02:00
|
|
|
// Construct using akka.remote.protocol.RemoteProtocol.UuidProtocol.newBuilder()
|
2010-06-10 11:39:26 +02:00
|
|
|
private Builder() {}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-10 11:39:26 +02:00
|
|
|
private static Builder create() {
|
|
|
|
|
Builder builder = new Builder();
|
2010-10-26 12:49:25 +02:00
|
|
|
builder.result = new akka.remote.protocol.RemoteProtocol.UuidProtocol();
|
2010-06-10 11:39:26 +02:00
|
|
|
return builder;
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-10-26 12:49:25 +02:00
|
|
|
protected akka.remote.protocol.RemoteProtocol.UuidProtocol internalGetResult() {
|
2010-06-10 11:39:26 +02:00
|
|
|
return result;
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-10 11:39:26 +02:00
|
|
|
public Builder clear() {
|
|
|
|
|
if (result == null) {
|
|
|
|
|
throw new IllegalStateException(
|
|
|
|
|
"Cannot call clear() after build().");
|
|
|
|
|
}
|
2010-10-26 12:49:25 +02:00
|
|
|
result = new akka.remote.protocol.RemoteProtocol.UuidProtocol();
|
2010-06-10 11:39:26 +02:00
|
|
|
return this;
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-10 11:39:26 +02:00
|
|
|
public Builder clone() {
|
|
|
|
|
return create().mergeFrom(result);
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-10 11:39:26 +02:00
|
|
|
public com.google.protobuf.Descriptors.Descriptor
|
|
|
|
|
getDescriptorForType() {
|
2010-10-26 12:49:25 +02:00
|
|
|
return akka.remote.protocol.RemoteProtocol.UuidProtocol.getDescriptor();
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-10-26 12:49:25 +02:00
|
|
|
public akka.remote.protocol.RemoteProtocol.UuidProtocol getDefaultInstanceForType() {
|
|
|
|
|
return akka.remote.protocol.RemoteProtocol.UuidProtocol.getDefaultInstance();
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-10 11:39:26 +02:00
|
|
|
public boolean isInitialized() {
|
|
|
|
|
return result.isInitialized();
|
|
|
|
|
}
|
2010-10-26 12:49:25 +02:00
|
|
|
public akka.remote.protocol.RemoteProtocol.UuidProtocol build() {
|
2010-06-10 11:39:26 +02:00
|
|
|
if (result != null && !isInitialized()) {
|
|
|
|
|
throw newUninitializedMessageException(result);
|
|
|
|
|
}
|
|
|
|
|
return buildPartial();
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-10-26 12:49:25 +02:00
|
|
|
private akka.remote.protocol.RemoteProtocol.UuidProtocol buildParsed()
|
2010-06-10 11:39:26 +02:00
|
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
|
|
|
if (!isInitialized()) {
|
|
|
|
|
throw newUninitializedMessageException(
|
|
|
|
|
result).asInvalidProtocolBufferException();
|
|
|
|
|
}
|
|
|
|
|
return buildPartial();
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-10-26 12:49:25 +02:00
|
|
|
public akka.remote.protocol.RemoteProtocol.UuidProtocol buildPartial() {
|
2010-06-10 11:39:26 +02:00
|
|
|
if (result == null) {
|
|
|
|
|
throw new IllegalStateException(
|
|
|
|
|
"build() has already been called on this Builder.");
|
|
|
|
|
}
|
2010-10-26 12:49:25 +02:00
|
|
|
akka.remote.protocol.RemoteProtocol.UuidProtocol returnMe = result;
|
2010-06-10 11:39:26 +02:00
|
|
|
result = null;
|
|
|
|
|
return returnMe;
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-10 11:39:26 +02:00
|
|
|
public Builder mergeFrom(com.google.protobuf.Message other) {
|
2010-10-26 12:49:25 +02:00
|
|
|
if (other instanceof akka.remote.protocol.RemoteProtocol.UuidProtocol) {
|
|
|
|
|
return mergeFrom((akka.remote.protocol.RemoteProtocol.UuidProtocol)other);
|
2010-06-10 11:39:26 +02:00
|
|
|
} else {
|
|
|
|
|
super.mergeFrom(other);
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-10-26 12:49:25 +02:00
|
|
|
public Builder mergeFrom(akka.remote.protocol.RemoteProtocol.UuidProtocol other) {
|
|
|
|
|
if (other == akka.remote.protocol.RemoteProtocol.UuidProtocol.getDefaultInstance()) return this;
|
2010-09-13 17:57:13 +02:00
|
|
|
if (other.hasHigh()) {
|
|
|
|
|
setHigh(other.getHigh());
|
|
|
|
|
}
|
|
|
|
|
if (other.hasLow()) {
|
|
|
|
|
setLow(other.getLow());
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
|
|
|
|
this.mergeUnknownFields(other.getUnknownFields());
|
|
|
|
|
return this;
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-10 11:39:26 +02:00
|
|
|
public Builder mergeFrom(
|
|
|
|
|
com.google.protobuf.CodedInputStream input,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
com.google.protobuf.UnknownFieldSet.Builder unknownFields =
|
|
|
|
|
com.google.protobuf.UnknownFieldSet.newBuilder(
|
|
|
|
|
this.getUnknownFields());
|
|
|
|
|
while (true) {
|
|
|
|
|
int tag = input.readTag();
|
|
|
|
|
switch (tag) {
|
|
|
|
|
case 0:
|
|
|
|
|
this.setUnknownFields(unknownFields.build());
|
|
|
|
|
return this;
|
|
|
|
|
default: {
|
|
|
|
|
if (!parseUnknownField(input, unknownFields,
|
|
|
|
|
extensionRegistry, tag)) {
|
|
|
|
|
this.setUnknownFields(unknownFields.build());
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case 8: {
|
2010-09-13 17:57:13 +02:00
|
|
|
setHigh(input.readUInt64());
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case 16: {
|
|
|
|
|
setLow(input.readUInt64());
|
2010-06-10 11:39:26 +02:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
|
|
|
|
|
2010-09-13 17:57:13 +02:00
|
|
|
// required uint64 high = 1;
|
|
|
|
|
public boolean hasHigh() {
|
|
|
|
|
return result.hasHigh();
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
2010-09-13 17:57:13 +02:00
|
|
|
public long getHigh() {
|
|
|
|
|
return result.getHigh();
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
2010-09-13 17:57:13 +02:00
|
|
|
public Builder setHigh(long value) {
|
|
|
|
|
result.hasHigh = true;
|
|
|
|
|
result.high_ = value;
|
2010-06-10 11:39:26 +02:00
|
|
|
return this;
|
|
|
|
|
}
|
2010-09-13 17:57:13 +02:00
|
|
|
public Builder clearHigh() {
|
|
|
|
|
result.hasHigh = false;
|
|
|
|
|
result.high_ = 0L;
|
2010-06-10 11:39:26 +02:00
|
|
|
return this;
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-09-13 17:57:13 +02:00
|
|
|
// required uint64 low = 2;
|
|
|
|
|
public boolean hasLow() {
|
|
|
|
|
return result.hasLow();
|
|
|
|
|
}
|
|
|
|
|
public long getLow() {
|
|
|
|
|
return result.getLow();
|
|
|
|
|
}
|
|
|
|
|
public Builder setLow(long value) {
|
|
|
|
|
result.hasLow = true;
|
|
|
|
|
result.low_ = value;
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
public Builder clearLow() {
|
|
|
|
|
result.hasLow = false;
|
|
|
|
|
result.low_ = 0L;
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// @@protoc_insertion_point(builder_scope:UuidProtocol)
|
2010-06-22 07:22:47 +02:00
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-22 07:22:47 +02:00
|
|
|
static {
|
2010-09-13 17:57:13 +02:00
|
|
|
defaultInstance = new UuidProtocol(true);
|
2010-10-26 12:49:25 +02:00
|
|
|
akka.remote.protocol.RemoteProtocol.internalForceInit();
|
2010-06-22 07:22:47 +02:00
|
|
|
defaultInstance.initFields();
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-09-13 17:57:13 +02:00
|
|
|
// @@protoc_insertion_point(class_scope:UuidProtocol)
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-09-13 17:57:13 +02:00
|
|
|
public static final class MetadataEntryProtocol extends
|
2010-06-22 07:22:47 +02:00
|
|
|
com.google.protobuf.GeneratedMessage {
|
2010-09-13 17:57:13 +02:00
|
|
|
// Use MetadataEntryProtocol.newBuilder() to construct.
|
|
|
|
|
private MetadataEntryProtocol() {
|
2010-06-22 07:22:47 +02:00
|
|
|
initFields();
|
|
|
|
|
}
|
2010-09-13 17:57:13 +02:00
|
|
|
private MetadataEntryProtocol(boolean noInit) {}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-09-13 17:57:13 +02:00
|
|
|
private static final MetadataEntryProtocol defaultInstance;
|
|
|
|
|
public static MetadataEntryProtocol getDefaultInstance() {
|
2010-06-22 07:22:47 +02:00
|
|
|
return defaultInstance;
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-09-13 17:57:13 +02:00
|
|
|
public MetadataEntryProtocol getDefaultInstanceForType() {
|
2010-06-22 07:22:47 +02:00
|
|
|
return defaultInstance;
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-22 07:22:47 +02:00
|
|
|
public static final com.google.protobuf.Descriptors.Descriptor
|
|
|
|
|
getDescriptor() {
|
2010-10-26 12:49:25 +02:00
|
|
|
return akka.remote.protocol.RemoteProtocol.internal_static_MetadataEntryProtocol_descriptor;
|
2010-06-22 07:22:47 +02:00
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-22 07:22:47 +02:00
|
|
|
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
|
|
|
|
|
internalGetFieldAccessorTable() {
|
2010-10-26 12:49:25 +02:00
|
|
|
return akka.remote.protocol.RemoteProtocol.internal_static_MetadataEntryProtocol_fieldAccessorTable;
|
2010-06-22 07:22:47 +02:00
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-09-13 17:57:13 +02:00
|
|
|
// required string key = 1;
|
|
|
|
|
public static final int KEY_FIELD_NUMBER = 1;
|
|
|
|
|
private boolean hasKey;
|
|
|
|
|
private java.lang.String key_ = "";
|
|
|
|
|
public boolean hasKey() { return hasKey; }
|
|
|
|
|
public java.lang.String getKey() { return key_; }
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-09-13 17:57:13 +02:00
|
|
|
// required bytes value = 2;
|
|
|
|
|
public static final int VALUE_FIELD_NUMBER = 2;
|
|
|
|
|
private boolean hasValue;
|
|
|
|
|
private com.google.protobuf.ByteString value_ = com.google.protobuf.ByteString.EMPTY;
|
|
|
|
|
public boolean hasValue() { return hasValue; }
|
|
|
|
|
public com.google.protobuf.ByteString getValue() { return value_; }
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-22 07:22:47 +02:00
|
|
|
private void initFields() {
|
|
|
|
|
}
|
|
|
|
|
public final boolean isInitialized() {
|
2010-09-13 17:57:13 +02:00
|
|
|
if (!hasKey) return false;
|
|
|
|
|
if (!hasValue) return false;
|
2010-06-22 07:22:47 +02:00
|
|
|
return true;
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-22 07:22:47 +02:00
|
|
|
public void writeTo(com.google.protobuf.CodedOutputStream output)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
getSerializedSize();
|
2010-09-13 17:57:13 +02:00
|
|
|
if (hasKey()) {
|
|
|
|
|
output.writeString(1, getKey());
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
2010-09-13 17:57:13 +02:00
|
|
|
if (hasValue()) {
|
|
|
|
|
output.writeBytes(2, getValue());
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
2010-06-22 07:22:47 +02:00
|
|
|
getUnknownFields().writeTo(output);
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-22 07:22:47 +02:00
|
|
|
private int memoizedSerializedSize = -1;
|
|
|
|
|
public int getSerializedSize() {
|
|
|
|
|
int size = memoizedSerializedSize;
|
|
|
|
|
if (size != -1) return size;
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-22 07:22:47 +02:00
|
|
|
size = 0;
|
2010-09-13 17:57:13 +02:00
|
|
|
if (hasKey()) {
|
2010-06-22 07:22:47 +02:00
|
|
|
size += com.google.protobuf.CodedOutputStream
|
2010-09-13 17:57:13 +02:00
|
|
|
.computeStringSize(1, getKey());
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
2010-09-13 17:57:13 +02:00
|
|
|
if (hasValue()) {
|
2010-06-22 07:22:47 +02:00
|
|
|
size += com.google.protobuf.CodedOutputStream
|
2010-09-13 17:57:13 +02:00
|
|
|
.computeBytesSize(2, getValue());
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
2010-06-22 07:22:47 +02:00
|
|
|
size += getUnknownFields().getSerializedSize();
|
|
|
|
|
memoizedSerializedSize = size;
|
|
|
|
|
return size;
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-10-26 12:49:25 +02:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.MetadataEntryProtocol parseFrom(
|
2010-06-22 07:22:47 +02:00
|
|
|
com.google.protobuf.ByteString data)
|
|
|
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
|
|
|
return newBuilder().mergeFrom(data).buildParsed();
|
|
|
|
|
}
|
2010-10-26 12:49:25 +02:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.MetadataEntryProtocol parseFrom(
|
2010-06-22 07:22:47 +02:00
|
|
|
com.google.protobuf.ByteString data,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
|
|
|
return newBuilder().mergeFrom(data, extensionRegistry)
|
|
|
|
|
.buildParsed();
|
|
|
|
|
}
|
2010-10-26 12:49:25 +02:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.MetadataEntryProtocol parseFrom(byte[] data)
|
2010-06-22 07:22:47 +02:00
|
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
|
|
|
return newBuilder().mergeFrom(data).buildParsed();
|
|
|
|
|
}
|
2010-10-26 12:49:25 +02:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.MetadataEntryProtocol parseFrom(
|
2010-06-22 07:22:47 +02:00
|
|
|
byte[] data,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
|
|
|
return newBuilder().mergeFrom(data, extensionRegistry)
|
|
|
|
|
.buildParsed();
|
|
|
|
|
}
|
2010-10-26 12:49:25 +02:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.MetadataEntryProtocol parseFrom(java.io.InputStream input)
|
2010-06-22 07:22:47 +02:00
|
|
|
throws java.io.IOException {
|
|
|
|
|
return newBuilder().mergeFrom(input).buildParsed();
|
|
|
|
|
}
|
2010-10-26 12:49:25 +02:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.MetadataEntryProtocol parseFrom(
|
2010-06-22 07:22:47 +02:00
|
|
|
java.io.InputStream input,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
return newBuilder().mergeFrom(input, extensionRegistry)
|
|
|
|
|
.buildParsed();
|
|
|
|
|
}
|
2010-10-26 12:49:25 +02:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.MetadataEntryProtocol parseDelimitedFrom(java.io.InputStream input)
|
2010-06-22 07:22:47 +02:00
|
|
|
throws java.io.IOException {
|
|
|
|
|
Builder builder = newBuilder();
|
|
|
|
|
if (builder.mergeDelimitedFrom(input)) {
|
|
|
|
|
return builder.buildParsed();
|
|
|
|
|
} else {
|
|
|
|
|
return null;
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
2010-06-22 07:22:47 +02:00
|
|
|
}
|
2010-10-26 12:49:25 +02:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.MetadataEntryProtocol parseDelimitedFrom(
|
2010-06-22 07:22:47 +02:00
|
|
|
java.io.InputStream input,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
Builder builder = newBuilder();
|
|
|
|
|
if (builder.mergeDelimitedFrom(input, extensionRegistry)) {
|
|
|
|
|
return builder.buildParsed();
|
|
|
|
|
} else {
|
|
|
|
|
return null;
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
2010-06-22 07:22:47 +02:00
|
|
|
}
|
2010-10-26 12:49:25 +02:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.MetadataEntryProtocol parseFrom(
|
2010-06-22 07:22:47 +02:00
|
|
|
com.google.protobuf.CodedInputStream input)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
return newBuilder().mergeFrom(input).buildParsed();
|
|
|
|
|
}
|
2010-10-26 12:49:25 +02:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.MetadataEntryProtocol parseFrom(
|
2010-06-22 07:22:47 +02:00
|
|
|
com.google.protobuf.CodedInputStream input,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
return newBuilder().mergeFrom(input, extensionRegistry)
|
|
|
|
|
.buildParsed();
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-22 07:22:47 +02:00
|
|
|
public static Builder newBuilder() { return Builder.create(); }
|
|
|
|
|
public Builder newBuilderForType() { return newBuilder(); }
|
2010-10-26 12:49:25 +02:00
|
|
|
public static Builder newBuilder(akka.remote.protocol.RemoteProtocol.MetadataEntryProtocol prototype) {
|
2010-06-22 07:22:47 +02:00
|
|
|
return newBuilder().mergeFrom(prototype);
|
|
|
|
|
}
|
|
|
|
|
public Builder toBuilder() { return newBuilder(this); }
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-22 07:22:47 +02:00
|
|
|
public static final class Builder extends
|
|
|
|
|
com.google.protobuf.GeneratedMessage.Builder<Builder> {
|
2010-10-26 12:49:25 +02:00
|
|
|
private akka.remote.protocol.RemoteProtocol.MetadataEntryProtocol result;
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-10-26 12:49:25 +02:00
|
|
|
// Construct using akka.remote.protocol.RemoteProtocol.MetadataEntryProtocol.newBuilder()
|
2010-06-22 07:22:47 +02:00
|
|
|
private Builder() {}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-22 07:22:47 +02:00
|
|
|
private static Builder create() {
|
|
|
|
|
Builder builder = new Builder();
|
2010-10-26 12:49:25 +02:00
|
|
|
builder.result = new akka.remote.protocol.RemoteProtocol.MetadataEntryProtocol();
|
2010-06-22 07:22:47 +02:00
|
|
|
return builder;
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-10-26 12:49:25 +02:00
|
|
|
protected akka.remote.protocol.RemoteProtocol.MetadataEntryProtocol internalGetResult() {
|
2010-06-22 07:22:47 +02:00
|
|
|
return result;
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-22 07:22:47 +02:00
|
|
|
public Builder clear() {
|
|
|
|
|
if (result == null) {
|
|
|
|
|
throw new IllegalStateException(
|
|
|
|
|
"Cannot call clear() after build().");
|
|
|
|
|
}
|
2010-10-26 12:49:25 +02:00
|
|
|
result = new akka.remote.protocol.RemoteProtocol.MetadataEntryProtocol();
|
2010-06-10 11:39:26 +02:00
|
|
|
return this;
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-22 07:22:47 +02:00
|
|
|
public Builder clone() {
|
|
|
|
|
return create().mergeFrom(result);
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-22 07:22:47 +02:00
|
|
|
public com.google.protobuf.Descriptors.Descriptor
|
|
|
|
|
getDescriptorForType() {
|
2010-10-26 12:49:25 +02:00
|
|
|
return akka.remote.protocol.RemoteProtocol.MetadataEntryProtocol.getDescriptor();
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-10-26 12:49:25 +02:00
|
|
|
public akka.remote.protocol.RemoteProtocol.MetadataEntryProtocol getDefaultInstanceForType() {
|
|
|
|
|
return akka.remote.protocol.RemoteProtocol.MetadataEntryProtocol.getDefaultInstance();
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-22 07:22:47 +02:00
|
|
|
public boolean isInitialized() {
|
|
|
|
|
return result.isInitialized();
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
2010-10-26 12:49:25 +02:00
|
|
|
public akka.remote.protocol.RemoteProtocol.MetadataEntryProtocol build() {
|
2010-06-22 07:22:47 +02:00
|
|
|
if (result != null && !isInitialized()) {
|
|
|
|
|
throw newUninitializedMessageException(result);
|
|
|
|
|
}
|
|
|
|
|
return buildPartial();
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-10-26 12:49:25 +02:00
|
|
|
private akka.remote.protocol.RemoteProtocol.MetadataEntryProtocol buildParsed()
|
2010-06-22 07:22:47 +02:00
|
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
|
|
|
if (!isInitialized()) {
|
|
|
|
|
throw newUninitializedMessageException(
|
|
|
|
|
result).asInvalidProtocolBufferException();
|
|
|
|
|
}
|
|
|
|
|
return buildPartial();
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-10-26 12:49:25 +02:00
|
|
|
public akka.remote.protocol.RemoteProtocol.MetadataEntryProtocol buildPartial() {
|
2010-06-22 07:22:47 +02:00
|
|
|
if (result == null) {
|
|
|
|
|
throw new IllegalStateException(
|
|
|
|
|
"build() has already been called on this Builder.");
|
|
|
|
|
}
|
2010-10-26 12:49:25 +02:00
|
|
|
akka.remote.protocol.RemoteProtocol.MetadataEntryProtocol returnMe = result;
|
2010-06-22 07:22:47 +02:00
|
|
|
result = null;
|
|
|
|
|
return returnMe;
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-22 07:22:47 +02:00
|
|
|
public Builder mergeFrom(com.google.protobuf.Message other) {
|
2010-10-26 12:49:25 +02:00
|
|
|
if (other instanceof akka.remote.protocol.RemoteProtocol.MetadataEntryProtocol) {
|
|
|
|
|
return mergeFrom((akka.remote.protocol.RemoteProtocol.MetadataEntryProtocol)other);
|
2010-06-22 07:22:47 +02:00
|
|
|
} else {
|
|
|
|
|
super.mergeFrom(other);
|
|
|
|
|
return this;
|
|
|
|
|
}
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-10-26 12:49:25 +02:00
|
|
|
public Builder mergeFrom(akka.remote.protocol.RemoteProtocol.MetadataEntryProtocol other) {
|
|
|
|
|
if (other == akka.remote.protocol.RemoteProtocol.MetadataEntryProtocol.getDefaultInstance()) return this;
|
2010-09-13 17:57:13 +02:00
|
|
|
if (other.hasKey()) {
|
|
|
|
|
setKey(other.getKey());
|
2010-06-22 07:22:47 +02:00
|
|
|
}
|
2010-09-13 17:57:13 +02:00
|
|
|
if (other.hasValue()) {
|
|
|
|
|
setValue(other.getValue());
|
2010-06-22 07:22:47 +02:00
|
|
|
}
|
|
|
|
|
this.mergeUnknownFields(other.getUnknownFields());
|
2010-06-10 11:39:26 +02:00
|
|
|
return this;
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-22 07:22:47 +02:00
|
|
|
public Builder mergeFrom(
|
|
|
|
|
com.google.protobuf.CodedInputStream input,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
com.google.protobuf.UnknownFieldSet.Builder unknownFields =
|
|
|
|
|
com.google.protobuf.UnknownFieldSet.newBuilder(
|
|
|
|
|
this.getUnknownFields());
|
|
|
|
|
while (true) {
|
|
|
|
|
int tag = input.readTag();
|
|
|
|
|
switch (tag) {
|
|
|
|
|
case 0:
|
|
|
|
|
this.setUnknownFields(unknownFields.build());
|
|
|
|
|
return this;
|
|
|
|
|
default: {
|
|
|
|
|
if (!parseUnknownField(input, unknownFields,
|
|
|
|
|
extensionRegistry, tag)) {
|
|
|
|
|
this.setUnknownFields(unknownFields.build());
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case 10: {
|
2010-09-13 17:57:13 +02:00
|
|
|
setKey(input.readString());
|
2010-06-22 07:22:47 +02:00
|
|
|
break;
|
|
|
|
|
}
|
2010-09-13 17:57:13 +02:00
|
|
|
case 18: {
|
|
|
|
|
setValue(input.readBytes());
|
2010-06-22 07:22:47 +02:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
|
|
|
|
|
2010-09-13 17:57:13 +02:00
|
|
|
// required string key = 1;
|
|
|
|
|
public boolean hasKey() {
|
|
|
|
|
return result.hasKey();
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
2010-09-13 17:57:13 +02:00
|
|
|
public java.lang.String getKey() {
|
|
|
|
|
return result.getKey();
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
2010-09-13 17:57:13 +02:00
|
|
|
public Builder setKey(java.lang.String value) {
|
2010-06-22 07:22:47 +02:00
|
|
|
if (value == null) {
|
|
|
|
|
throw new NullPointerException();
|
|
|
|
|
}
|
2010-09-13 17:57:13 +02:00
|
|
|
result.hasKey = true;
|
|
|
|
|
result.key_ = value;
|
2010-06-10 11:39:26 +02:00
|
|
|
return this;
|
|
|
|
|
}
|
2010-09-13 17:57:13 +02:00
|
|
|
public Builder clearKey() {
|
|
|
|
|
result.hasKey = false;
|
|
|
|
|
result.key_ = getDefaultInstance().getKey();
|
2010-06-10 11:39:26 +02:00
|
|
|
return this;
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-09-13 17:57:13 +02:00
|
|
|
// required bytes value = 2;
|
|
|
|
|
public boolean hasValue() {
|
|
|
|
|
return result.hasValue();
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
2010-09-13 17:57:13 +02:00
|
|
|
public com.google.protobuf.ByteString getValue() {
|
|
|
|
|
return result.getValue();
|
|
|
|
|
}
|
|
|
|
|
public Builder setValue(com.google.protobuf.ByteString value) {
|
|
|
|
|
if (value == null) {
|
|
|
|
|
throw new NullPointerException();
|
|
|
|
|
}
|
|
|
|
|
result.hasValue = true;
|
|
|
|
|
result.value_ = value;
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
public Builder clearValue() {
|
|
|
|
|
result.hasValue = false;
|
|
|
|
|
result.value_ = getDefaultInstance().getValue();
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// @@protoc_insertion_point(builder_scope:MetadataEntryProtocol)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static {
|
|
|
|
|
defaultInstance = new MetadataEntryProtocol(true);
|
2010-10-26 12:49:25 +02:00
|
|
|
akka.remote.protocol.RemoteProtocol.internalForceInit();
|
2010-09-13 17:57:13 +02:00
|
|
|
defaultInstance.initFields();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// @@protoc_insertion_point(class_scope:MetadataEntryProtocol)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static final class LifeCycleProtocol extends
|
|
|
|
|
com.google.protobuf.GeneratedMessage {
|
|
|
|
|
// Use LifeCycleProtocol.newBuilder() to construct.
|
|
|
|
|
private LifeCycleProtocol() {
|
|
|
|
|
initFields();
|
|
|
|
|
}
|
|
|
|
|
private LifeCycleProtocol(boolean noInit) {}
|
|
|
|
|
|
|
|
|
|
private static final LifeCycleProtocol defaultInstance;
|
|
|
|
|
public static LifeCycleProtocol getDefaultInstance() {
|
|
|
|
|
return defaultInstance;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public LifeCycleProtocol getDefaultInstanceForType() {
|
|
|
|
|
return defaultInstance;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static final com.google.protobuf.Descriptors.Descriptor
|
|
|
|
|
getDescriptor() {
|
2010-10-26 12:49:25 +02:00
|
|
|
return akka.remote.protocol.RemoteProtocol.internal_static_LifeCycleProtocol_descriptor;
|
2010-09-13 17:57:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
|
|
|
|
|
internalGetFieldAccessorTable() {
|
2010-10-26 12:49:25 +02:00
|
|
|
return akka.remote.protocol.RemoteProtocol.internal_static_LifeCycleProtocol_fieldAccessorTable;
|
2010-09-13 17:57:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// required .LifeCycleType lifeCycle = 1;
|
|
|
|
|
public static final int LIFECYCLE_FIELD_NUMBER = 1;
|
|
|
|
|
private boolean hasLifeCycle;
|
2010-10-26 12:49:25 +02:00
|
|
|
private akka.remote.protocol.RemoteProtocol.LifeCycleType lifeCycle_;
|
2010-09-13 17:57:13 +02:00
|
|
|
public boolean hasLifeCycle() { return hasLifeCycle; }
|
2010-10-26 12:49:25 +02:00
|
|
|
public akka.remote.protocol.RemoteProtocol.LifeCycleType getLifeCycle() { return lifeCycle_; }
|
2010-09-13 17:57:13 +02:00
|
|
|
|
|
|
|
|
private void initFields() {
|
2010-10-26 12:49:25 +02:00
|
|
|
lifeCycle_ = akka.remote.protocol.RemoteProtocol.LifeCycleType.PERMANENT;
|
2010-09-13 17:57:13 +02:00
|
|
|
}
|
|
|
|
|
public final boolean isInitialized() {
|
|
|
|
|
if (!hasLifeCycle) return false;
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void writeTo(com.google.protobuf.CodedOutputStream output)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
getSerializedSize();
|
|
|
|
|
if (hasLifeCycle()) {
|
|
|
|
|
output.writeEnum(1, getLifeCycle().getNumber());
|
|
|
|
|
}
|
|
|
|
|
getUnknownFields().writeTo(output);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private int memoizedSerializedSize = -1;
|
|
|
|
|
public int getSerializedSize() {
|
|
|
|
|
int size = memoizedSerializedSize;
|
|
|
|
|
if (size != -1) return size;
|
|
|
|
|
|
|
|
|
|
size = 0;
|
|
|
|
|
if (hasLifeCycle()) {
|
|
|
|
|
size += com.google.protobuf.CodedOutputStream
|
|
|
|
|
.computeEnumSize(1, getLifeCycle().getNumber());
|
|
|
|
|
}
|
|
|
|
|
size += getUnknownFields().getSerializedSize();
|
|
|
|
|
memoizedSerializedSize = size;
|
|
|
|
|
return size;
|
|
|
|
|
}
|
|
|
|
|
|
2010-10-26 12:49:25 +02:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.LifeCycleProtocol parseFrom(
|
2010-09-13 17:57:13 +02:00
|
|
|
com.google.protobuf.ByteString data)
|
|
|
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
|
|
|
return newBuilder().mergeFrom(data).buildParsed();
|
|
|
|
|
}
|
2010-10-26 12:49:25 +02:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.LifeCycleProtocol parseFrom(
|
2010-09-13 17:57:13 +02:00
|
|
|
com.google.protobuf.ByteString data,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
|
|
|
return newBuilder().mergeFrom(data, extensionRegistry)
|
|
|
|
|
.buildParsed();
|
|
|
|
|
}
|
2010-10-26 12:49:25 +02:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.LifeCycleProtocol parseFrom(byte[] data)
|
2010-09-13 17:57:13 +02:00
|
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
|
|
|
return newBuilder().mergeFrom(data).buildParsed();
|
|
|
|
|
}
|
2010-10-26 12:49:25 +02:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.LifeCycleProtocol parseFrom(
|
2010-09-13 17:57:13 +02:00
|
|
|
byte[] data,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
|
|
|
return newBuilder().mergeFrom(data, extensionRegistry)
|
|
|
|
|
.buildParsed();
|
|
|
|
|
}
|
2010-10-26 12:49:25 +02:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.LifeCycleProtocol parseFrom(java.io.InputStream input)
|
2010-09-13 17:57:13 +02:00
|
|
|
throws java.io.IOException {
|
|
|
|
|
return newBuilder().mergeFrom(input).buildParsed();
|
|
|
|
|
}
|
2010-10-26 12:49:25 +02:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.LifeCycleProtocol parseFrom(
|
2010-09-13 17:57:13 +02:00
|
|
|
java.io.InputStream input,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
return newBuilder().mergeFrom(input, extensionRegistry)
|
|
|
|
|
.buildParsed();
|
|
|
|
|
}
|
2010-10-26 12:49:25 +02:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.LifeCycleProtocol parseDelimitedFrom(java.io.InputStream input)
|
2010-09-13 17:57:13 +02:00
|
|
|
throws java.io.IOException {
|
|
|
|
|
Builder builder = newBuilder();
|
|
|
|
|
if (builder.mergeDelimitedFrom(input)) {
|
|
|
|
|
return builder.buildParsed();
|
|
|
|
|
} else {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
}
|
2010-10-26 12:49:25 +02:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.LifeCycleProtocol parseDelimitedFrom(
|
2010-09-13 17:57:13 +02:00
|
|
|
java.io.InputStream input,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
Builder builder = newBuilder();
|
|
|
|
|
if (builder.mergeDelimitedFrom(input, extensionRegistry)) {
|
|
|
|
|
return builder.buildParsed();
|
|
|
|
|
} else {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
}
|
2010-10-26 12:49:25 +02:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.LifeCycleProtocol parseFrom(
|
2010-09-13 17:57:13 +02:00
|
|
|
com.google.protobuf.CodedInputStream input)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
return newBuilder().mergeFrom(input).buildParsed();
|
|
|
|
|
}
|
2010-10-26 12:49:25 +02:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.LifeCycleProtocol parseFrom(
|
2010-09-13 17:57:13 +02:00
|
|
|
com.google.protobuf.CodedInputStream input,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
return newBuilder().mergeFrom(input, extensionRegistry)
|
|
|
|
|
.buildParsed();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static Builder newBuilder() { return Builder.create(); }
|
|
|
|
|
public Builder newBuilderForType() { return newBuilder(); }
|
2010-10-26 12:49:25 +02:00
|
|
|
public static Builder newBuilder(akka.remote.protocol.RemoteProtocol.LifeCycleProtocol prototype) {
|
2010-09-13 17:57:13 +02:00
|
|
|
return newBuilder().mergeFrom(prototype);
|
|
|
|
|
}
|
|
|
|
|
public Builder toBuilder() { return newBuilder(this); }
|
|
|
|
|
|
|
|
|
|
public static final class Builder extends
|
|
|
|
|
com.google.protobuf.GeneratedMessage.Builder<Builder> {
|
2010-10-26 12:49:25 +02:00
|
|
|
private akka.remote.protocol.RemoteProtocol.LifeCycleProtocol result;
|
2010-09-13 17:57:13 +02:00
|
|
|
|
2010-10-26 12:49:25 +02:00
|
|
|
// Construct using akka.remote.protocol.RemoteProtocol.LifeCycleProtocol.newBuilder()
|
2010-09-13 17:57:13 +02:00
|
|
|
private Builder() {}
|
|
|
|
|
|
|
|
|
|
private static Builder create() {
|
|
|
|
|
Builder builder = new Builder();
|
2010-10-26 12:49:25 +02:00
|
|
|
builder.result = new akka.remote.protocol.RemoteProtocol.LifeCycleProtocol();
|
2010-09-13 17:57:13 +02:00
|
|
|
return builder;
|
|
|
|
|
}
|
|
|
|
|
|
2010-10-26 12:49:25 +02:00
|
|
|
protected akka.remote.protocol.RemoteProtocol.LifeCycleProtocol internalGetResult() {
|
2010-09-13 17:57:13 +02:00
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Builder clear() {
|
|
|
|
|
if (result == null) {
|
|
|
|
|
throw new IllegalStateException(
|
|
|
|
|
"Cannot call clear() after build().");
|
|
|
|
|
}
|
2010-10-26 12:49:25 +02:00
|
|
|
result = new akka.remote.protocol.RemoteProtocol.LifeCycleProtocol();
|
2010-09-13 17:57:13 +02:00
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Builder clone() {
|
|
|
|
|
return create().mergeFrom(result);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public com.google.protobuf.Descriptors.Descriptor
|
|
|
|
|
getDescriptorForType() {
|
2010-10-26 12:49:25 +02:00
|
|
|
return akka.remote.protocol.RemoteProtocol.LifeCycleProtocol.getDescriptor();
|
2010-09-13 17:57:13 +02:00
|
|
|
}
|
|
|
|
|
|
2010-10-26 12:49:25 +02:00
|
|
|
public akka.remote.protocol.RemoteProtocol.LifeCycleProtocol getDefaultInstanceForType() {
|
|
|
|
|
return akka.remote.protocol.RemoteProtocol.LifeCycleProtocol.getDefaultInstance();
|
2010-09-13 17:57:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public boolean isInitialized() {
|
|
|
|
|
return result.isInitialized();
|
|
|
|
|
}
|
2010-10-26 12:49:25 +02:00
|
|
|
public akka.remote.protocol.RemoteProtocol.LifeCycleProtocol build() {
|
2010-09-13 17:57:13 +02:00
|
|
|
if (result != null && !isInitialized()) {
|
|
|
|
|
throw newUninitializedMessageException(result);
|
|
|
|
|
}
|
|
|
|
|
return buildPartial();
|
|
|
|
|
}
|
|
|
|
|
|
2010-10-26 12:49:25 +02:00
|
|
|
private akka.remote.protocol.RemoteProtocol.LifeCycleProtocol buildParsed()
|
2010-09-13 17:57:13 +02:00
|
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
|
|
|
if (!isInitialized()) {
|
|
|
|
|
throw newUninitializedMessageException(
|
|
|
|
|
result).asInvalidProtocolBufferException();
|
|
|
|
|
}
|
|
|
|
|
return buildPartial();
|
|
|
|
|
}
|
|
|
|
|
|
2010-10-26 12:49:25 +02:00
|
|
|
public akka.remote.protocol.RemoteProtocol.LifeCycleProtocol buildPartial() {
|
2010-09-13 17:57:13 +02:00
|
|
|
if (result == null) {
|
|
|
|
|
throw new IllegalStateException(
|
|
|
|
|
"build() has already been called on this Builder.");
|
|
|
|
|
}
|
2010-10-26 12:49:25 +02:00
|
|
|
akka.remote.protocol.RemoteProtocol.LifeCycleProtocol returnMe = result;
|
2010-09-13 17:57:13 +02:00
|
|
|
result = null;
|
|
|
|
|
return returnMe;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Builder mergeFrom(com.google.protobuf.Message other) {
|
2010-10-26 12:49:25 +02:00
|
|
|
if (other instanceof akka.remote.protocol.RemoteProtocol.LifeCycleProtocol) {
|
|
|
|
|
return mergeFrom((akka.remote.protocol.RemoteProtocol.LifeCycleProtocol)other);
|
2010-09-13 17:57:13 +02:00
|
|
|
} else {
|
|
|
|
|
super.mergeFrom(other);
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2010-10-26 12:49:25 +02:00
|
|
|
public Builder mergeFrom(akka.remote.protocol.RemoteProtocol.LifeCycleProtocol other) {
|
|
|
|
|
if (other == akka.remote.protocol.RemoteProtocol.LifeCycleProtocol.getDefaultInstance()) return this;
|
2010-09-13 17:57:13 +02:00
|
|
|
if (other.hasLifeCycle()) {
|
|
|
|
|
setLifeCycle(other.getLifeCycle());
|
|
|
|
|
}
|
|
|
|
|
this.mergeUnknownFields(other.getUnknownFields());
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Builder mergeFrom(
|
|
|
|
|
com.google.protobuf.CodedInputStream input,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
com.google.protobuf.UnknownFieldSet.Builder unknownFields =
|
|
|
|
|
com.google.protobuf.UnknownFieldSet.newBuilder(
|
|
|
|
|
this.getUnknownFields());
|
|
|
|
|
while (true) {
|
|
|
|
|
int tag = input.readTag();
|
|
|
|
|
switch (tag) {
|
|
|
|
|
case 0:
|
|
|
|
|
this.setUnknownFields(unknownFields.build());
|
|
|
|
|
return this;
|
|
|
|
|
default: {
|
|
|
|
|
if (!parseUnknownField(input, unknownFields,
|
|
|
|
|
extensionRegistry, tag)) {
|
|
|
|
|
this.setUnknownFields(unknownFields.build());
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case 8: {
|
|
|
|
|
int rawValue = input.readEnum();
|
2010-10-26 12:49:25 +02:00
|
|
|
akka.remote.protocol.RemoteProtocol.LifeCycleType value = akka.remote.protocol.RemoteProtocol.LifeCycleType.valueOf(rawValue);
|
2010-09-13 17:57:13 +02:00
|
|
|
if (value == null) {
|
|
|
|
|
unknownFields.mergeVarintField(1, rawValue);
|
|
|
|
|
} else {
|
|
|
|
|
setLifeCycle(value);
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// required .LifeCycleType lifeCycle = 1;
|
|
|
|
|
public boolean hasLifeCycle() {
|
|
|
|
|
return result.hasLifeCycle();
|
|
|
|
|
}
|
2010-10-26 12:49:25 +02:00
|
|
|
public akka.remote.protocol.RemoteProtocol.LifeCycleType getLifeCycle() {
|
2010-09-13 17:57:13 +02:00
|
|
|
return result.getLifeCycle();
|
|
|
|
|
}
|
2010-10-26 12:49:25 +02:00
|
|
|
public Builder setLifeCycle(akka.remote.protocol.RemoteProtocol.LifeCycleType value) {
|
2010-09-13 17:57:13 +02:00
|
|
|
if (value == null) {
|
|
|
|
|
throw new NullPointerException();
|
|
|
|
|
}
|
|
|
|
|
result.hasLifeCycle = true;
|
|
|
|
|
result.lifeCycle_ = value;
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
public Builder clearLifeCycle() {
|
|
|
|
|
result.hasLifeCycle = false;
|
2010-10-26 12:49:25 +02:00
|
|
|
result.lifeCycle_ = akka.remote.protocol.RemoteProtocol.LifeCycleType.PERMANENT;
|
2010-09-13 17:57:13 +02:00
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// @@protoc_insertion_point(builder_scope:LifeCycleProtocol)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static {
|
|
|
|
|
defaultInstance = new LifeCycleProtocol(true);
|
2010-10-26 12:49:25 +02:00
|
|
|
akka.remote.protocol.RemoteProtocol.internalForceInit();
|
2010-09-13 17:57:13 +02:00
|
|
|
defaultInstance.initFields();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// @@protoc_insertion_point(class_scope:LifeCycleProtocol)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static final class AddressProtocol extends
|
|
|
|
|
com.google.protobuf.GeneratedMessage {
|
|
|
|
|
// Use AddressProtocol.newBuilder() to construct.
|
|
|
|
|
private AddressProtocol() {
|
|
|
|
|
initFields();
|
|
|
|
|
}
|
|
|
|
|
private AddressProtocol(boolean noInit) {}
|
|
|
|
|
|
|
|
|
|
private static final AddressProtocol defaultInstance;
|
|
|
|
|
public static AddressProtocol getDefaultInstance() {
|
|
|
|
|
return defaultInstance;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public AddressProtocol getDefaultInstanceForType() {
|
|
|
|
|
return defaultInstance;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static final com.google.protobuf.Descriptors.Descriptor
|
|
|
|
|
getDescriptor() {
|
2010-10-26 12:49:25 +02:00
|
|
|
return akka.remote.protocol.RemoteProtocol.internal_static_AddressProtocol_descriptor;
|
2010-09-13 17:57:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
|
|
|
|
|
internalGetFieldAccessorTable() {
|
2010-10-26 12:49:25 +02:00
|
|
|
return akka.remote.protocol.RemoteProtocol.internal_static_AddressProtocol_fieldAccessorTable;
|
2010-09-13 17:57:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// required string hostname = 1;
|
|
|
|
|
public static final int HOSTNAME_FIELD_NUMBER = 1;
|
|
|
|
|
private boolean hasHostname;
|
|
|
|
|
private java.lang.String hostname_ = "";
|
|
|
|
|
public boolean hasHostname() { return hasHostname; }
|
|
|
|
|
public java.lang.String getHostname() { return hostname_; }
|
|
|
|
|
|
|
|
|
|
// required uint32 port = 2;
|
|
|
|
|
public static final int PORT_FIELD_NUMBER = 2;
|
|
|
|
|
private boolean hasPort;
|
|
|
|
|
private int port_ = 0;
|
|
|
|
|
public boolean hasPort() { return hasPort; }
|
|
|
|
|
public int getPort() { return port_; }
|
|
|
|
|
|
|
|
|
|
private void initFields() {
|
|
|
|
|
}
|
|
|
|
|
public final boolean isInitialized() {
|
|
|
|
|
if (!hasHostname) return false;
|
|
|
|
|
if (!hasPort) return false;
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void writeTo(com.google.protobuf.CodedOutputStream output)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
getSerializedSize();
|
|
|
|
|
if (hasHostname()) {
|
|
|
|
|
output.writeString(1, getHostname());
|
|
|
|
|
}
|
|
|
|
|
if (hasPort()) {
|
|
|
|
|
output.writeUInt32(2, getPort());
|
|
|
|
|
}
|
|
|
|
|
getUnknownFields().writeTo(output);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private int memoizedSerializedSize = -1;
|
|
|
|
|
public int getSerializedSize() {
|
|
|
|
|
int size = memoizedSerializedSize;
|
|
|
|
|
if (size != -1) return size;
|
|
|
|
|
|
|
|
|
|
size = 0;
|
|
|
|
|
if (hasHostname()) {
|
|
|
|
|
size += com.google.protobuf.CodedOutputStream
|
|
|
|
|
.computeStringSize(1, getHostname());
|
|
|
|
|
}
|
|
|
|
|
if (hasPort()) {
|
|
|
|
|
size += com.google.protobuf.CodedOutputStream
|
|
|
|
|
.computeUInt32Size(2, getPort());
|
|
|
|
|
}
|
|
|
|
|
size += getUnknownFields().getSerializedSize();
|
|
|
|
|
memoizedSerializedSize = size;
|
|
|
|
|
return size;
|
|
|
|
|
}
|
|
|
|
|
|
2010-10-26 12:49:25 +02:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.AddressProtocol parseFrom(
|
2010-09-13 17:57:13 +02:00
|
|
|
com.google.protobuf.ByteString data)
|
|
|
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
|
|
|
return newBuilder().mergeFrom(data).buildParsed();
|
|
|
|
|
}
|
2010-10-26 12:49:25 +02:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.AddressProtocol parseFrom(
|
2010-09-13 17:57:13 +02:00
|
|
|
com.google.protobuf.ByteString data,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
|
|
|
return newBuilder().mergeFrom(data, extensionRegistry)
|
|
|
|
|
.buildParsed();
|
|
|
|
|
}
|
2010-10-26 12:49:25 +02:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.AddressProtocol parseFrom(byte[] data)
|
2010-09-13 17:57:13 +02:00
|
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
|
|
|
return newBuilder().mergeFrom(data).buildParsed();
|
|
|
|
|
}
|
2010-10-26 12:49:25 +02:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.AddressProtocol parseFrom(
|
2010-09-13 17:57:13 +02:00
|
|
|
byte[] data,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
|
|
|
return newBuilder().mergeFrom(data, extensionRegistry)
|
|
|
|
|
.buildParsed();
|
|
|
|
|
}
|
2010-10-26 12:49:25 +02:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.AddressProtocol parseFrom(java.io.InputStream input)
|
2010-09-13 17:57:13 +02:00
|
|
|
throws java.io.IOException {
|
|
|
|
|
return newBuilder().mergeFrom(input).buildParsed();
|
|
|
|
|
}
|
2010-10-26 12:49:25 +02:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.AddressProtocol parseFrom(
|
2010-09-13 17:57:13 +02:00
|
|
|
java.io.InputStream input,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
return newBuilder().mergeFrom(input, extensionRegistry)
|
|
|
|
|
.buildParsed();
|
|
|
|
|
}
|
2010-10-26 12:49:25 +02:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.AddressProtocol parseDelimitedFrom(java.io.InputStream input)
|
2010-09-13 17:57:13 +02:00
|
|
|
throws java.io.IOException {
|
|
|
|
|
Builder builder = newBuilder();
|
|
|
|
|
if (builder.mergeDelimitedFrom(input)) {
|
|
|
|
|
return builder.buildParsed();
|
|
|
|
|
} else {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
}
|
2010-10-26 12:49:25 +02:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.AddressProtocol parseDelimitedFrom(
|
2010-09-13 17:57:13 +02:00
|
|
|
java.io.InputStream input,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
Builder builder = newBuilder();
|
|
|
|
|
if (builder.mergeDelimitedFrom(input, extensionRegistry)) {
|
|
|
|
|
return builder.buildParsed();
|
|
|
|
|
} else {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
}
|
2010-10-26 12:49:25 +02:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.AddressProtocol parseFrom(
|
2010-09-13 17:57:13 +02:00
|
|
|
com.google.protobuf.CodedInputStream input)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
return newBuilder().mergeFrom(input).buildParsed();
|
|
|
|
|
}
|
2010-10-26 12:49:25 +02:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.AddressProtocol parseFrom(
|
2010-09-13 17:57:13 +02:00
|
|
|
com.google.protobuf.CodedInputStream input,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
return newBuilder().mergeFrom(input, extensionRegistry)
|
|
|
|
|
.buildParsed();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static Builder newBuilder() { return Builder.create(); }
|
|
|
|
|
public Builder newBuilderForType() { return newBuilder(); }
|
2010-10-26 12:49:25 +02:00
|
|
|
public static Builder newBuilder(akka.remote.protocol.RemoteProtocol.AddressProtocol prototype) {
|
2010-09-13 17:57:13 +02:00
|
|
|
return newBuilder().mergeFrom(prototype);
|
|
|
|
|
}
|
|
|
|
|
public Builder toBuilder() { return newBuilder(this); }
|
|
|
|
|
|
|
|
|
|
public static final class Builder extends
|
|
|
|
|
com.google.protobuf.GeneratedMessage.Builder<Builder> {
|
2010-10-26 12:49:25 +02:00
|
|
|
private akka.remote.protocol.RemoteProtocol.AddressProtocol result;
|
2010-09-13 17:57:13 +02:00
|
|
|
|
2010-10-26 12:49:25 +02:00
|
|
|
// Construct using akka.remote.protocol.RemoteProtocol.AddressProtocol.newBuilder()
|
2010-09-13 17:57:13 +02:00
|
|
|
private Builder() {}
|
|
|
|
|
|
|
|
|
|
private static Builder create() {
|
|
|
|
|
Builder builder = new Builder();
|
2010-10-26 12:49:25 +02:00
|
|
|
builder.result = new akka.remote.protocol.RemoteProtocol.AddressProtocol();
|
2010-09-13 17:57:13 +02:00
|
|
|
return builder;
|
|
|
|
|
}
|
|
|
|
|
|
2010-10-26 12:49:25 +02:00
|
|
|
protected akka.remote.protocol.RemoteProtocol.AddressProtocol internalGetResult() {
|
2010-09-13 17:57:13 +02:00
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Builder clear() {
|
|
|
|
|
if (result == null) {
|
|
|
|
|
throw new IllegalStateException(
|
|
|
|
|
"Cannot call clear() after build().");
|
|
|
|
|
}
|
2010-10-26 12:49:25 +02:00
|
|
|
result = new akka.remote.protocol.RemoteProtocol.AddressProtocol();
|
2010-09-13 17:57:13 +02:00
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Builder clone() {
|
|
|
|
|
return create().mergeFrom(result);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public com.google.protobuf.Descriptors.Descriptor
|
|
|
|
|
getDescriptorForType() {
|
2010-10-26 12:49:25 +02:00
|
|
|
return akka.remote.protocol.RemoteProtocol.AddressProtocol.getDescriptor();
|
2010-09-13 17:57:13 +02:00
|
|
|
}
|
|
|
|
|
|
2010-10-26 12:49:25 +02:00
|
|
|
public akka.remote.protocol.RemoteProtocol.AddressProtocol getDefaultInstanceForType() {
|
|
|
|
|
return akka.remote.protocol.RemoteProtocol.AddressProtocol.getDefaultInstance();
|
2010-09-13 17:57:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public boolean isInitialized() {
|
|
|
|
|
return result.isInitialized();
|
|
|
|
|
}
|
2010-10-26 12:49:25 +02:00
|
|
|
public akka.remote.protocol.RemoteProtocol.AddressProtocol build() {
|
2010-09-13 17:57:13 +02:00
|
|
|
if (result != null && !isInitialized()) {
|
|
|
|
|
throw newUninitializedMessageException(result);
|
|
|
|
|
}
|
|
|
|
|
return buildPartial();
|
|
|
|
|
}
|
|
|
|
|
|
2010-10-26 12:49:25 +02:00
|
|
|
private akka.remote.protocol.RemoteProtocol.AddressProtocol buildParsed()
|
2010-09-13 17:57:13 +02:00
|
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
|
|
|
if (!isInitialized()) {
|
|
|
|
|
throw newUninitializedMessageException(
|
|
|
|
|
result).asInvalidProtocolBufferException();
|
|
|
|
|
}
|
|
|
|
|
return buildPartial();
|
|
|
|
|
}
|
|
|
|
|
|
2010-10-26 12:49:25 +02:00
|
|
|
public akka.remote.protocol.RemoteProtocol.AddressProtocol buildPartial() {
|
2010-09-13 17:57:13 +02:00
|
|
|
if (result == null) {
|
|
|
|
|
throw new IllegalStateException(
|
|
|
|
|
"build() has already been called on this Builder.");
|
|
|
|
|
}
|
2010-10-26 12:49:25 +02:00
|
|
|
akka.remote.protocol.RemoteProtocol.AddressProtocol returnMe = result;
|
2010-09-13 17:57:13 +02:00
|
|
|
result = null;
|
|
|
|
|
return returnMe;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Builder mergeFrom(com.google.protobuf.Message other) {
|
2010-10-26 12:49:25 +02:00
|
|
|
if (other instanceof akka.remote.protocol.RemoteProtocol.AddressProtocol) {
|
|
|
|
|
return mergeFrom((akka.remote.protocol.RemoteProtocol.AddressProtocol)other);
|
2010-09-13 17:57:13 +02:00
|
|
|
} else {
|
|
|
|
|
super.mergeFrom(other);
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2010-10-26 12:49:25 +02:00
|
|
|
public Builder mergeFrom(akka.remote.protocol.RemoteProtocol.AddressProtocol other) {
|
|
|
|
|
if (other == akka.remote.protocol.RemoteProtocol.AddressProtocol.getDefaultInstance()) return this;
|
2010-09-13 17:57:13 +02:00
|
|
|
if (other.hasHostname()) {
|
|
|
|
|
setHostname(other.getHostname());
|
|
|
|
|
}
|
|
|
|
|
if (other.hasPort()) {
|
|
|
|
|
setPort(other.getPort());
|
|
|
|
|
}
|
|
|
|
|
this.mergeUnknownFields(other.getUnknownFields());
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Builder mergeFrom(
|
|
|
|
|
com.google.protobuf.CodedInputStream input,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
com.google.protobuf.UnknownFieldSet.Builder unknownFields =
|
|
|
|
|
com.google.protobuf.UnknownFieldSet.newBuilder(
|
|
|
|
|
this.getUnknownFields());
|
|
|
|
|
while (true) {
|
|
|
|
|
int tag = input.readTag();
|
|
|
|
|
switch (tag) {
|
|
|
|
|
case 0:
|
|
|
|
|
this.setUnknownFields(unknownFields.build());
|
|
|
|
|
return this;
|
|
|
|
|
default: {
|
|
|
|
|
if (!parseUnknownField(input, unknownFields,
|
|
|
|
|
extensionRegistry, tag)) {
|
|
|
|
|
this.setUnknownFields(unknownFields.build());
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case 10: {
|
|
|
|
|
setHostname(input.readString());
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case 16: {
|
|
|
|
|
setPort(input.readUInt32());
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// required string hostname = 1;
|
|
|
|
|
public boolean hasHostname() {
|
|
|
|
|
return result.hasHostname();
|
|
|
|
|
}
|
|
|
|
|
public java.lang.String getHostname() {
|
|
|
|
|
return result.getHostname();
|
|
|
|
|
}
|
|
|
|
|
public Builder setHostname(java.lang.String value) {
|
|
|
|
|
if (value == null) {
|
|
|
|
|
throw new NullPointerException();
|
|
|
|
|
}
|
|
|
|
|
result.hasHostname = true;
|
|
|
|
|
result.hostname_ = value;
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
public Builder clearHostname() {
|
|
|
|
|
result.hasHostname = false;
|
|
|
|
|
result.hostname_ = getDefaultInstance().getHostname();
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// required uint32 port = 2;
|
|
|
|
|
public boolean hasPort() {
|
|
|
|
|
return result.hasPort();
|
|
|
|
|
}
|
|
|
|
|
public int getPort() {
|
|
|
|
|
return result.getPort();
|
|
|
|
|
}
|
|
|
|
|
public Builder setPort(int value) {
|
|
|
|
|
result.hasPort = true;
|
|
|
|
|
result.port_ = value;
|
|
|
|
|
return this;
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
2010-06-22 07:22:47 +02:00
|
|
|
public Builder clearPort() {
|
|
|
|
|
result.hasPort = false;
|
|
|
|
|
result.port_ = 0;
|
2010-06-10 11:39:26 +02:00
|
|
|
return this;
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-22 07:22:47 +02:00
|
|
|
// @@protoc_insertion_point(builder_scope:AddressProtocol)
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-10 11:39:26 +02:00
|
|
|
static {
|
2010-06-22 07:22:47 +02:00
|
|
|
defaultInstance = new AddressProtocol(true);
|
2010-10-26 12:49:25 +02:00
|
|
|
akka.remote.protocol.RemoteProtocol.internalForceInit();
|
2010-06-10 11:39:26 +02:00
|
|
|
defaultInstance.initFields();
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-22 07:22:47 +02:00
|
|
|
// @@protoc_insertion_point(class_scope:AddressProtocol)
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-22 07:22:47 +02:00
|
|
|
public static final class ExceptionProtocol extends
|
2010-06-10 11:39:26 +02:00
|
|
|
com.google.protobuf.GeneratedMessage {
|
2010-06-22 07:22:47 +02:00
|
|
|
// Use ExceptionProtocol.newBuilder() to construct.
|
|
|
|
|
private ExceptionProtocol() {
|
2010-06-10 11:39:26 +02:00
|
|
|
initFields();
|
|
|
|
|
}
|
2010-06-22 07:22:47 +02:00
|
|
|
private ExceptionProtocol(boolean noInit) {}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-22 07:22:47 +02:00
|
|
|
private static final ExceptionProtocol defaultInstance;
|
|
|
|
|
public static ExceptionProtocol getDefaultInstance() {
|
2010-06-10 11:39:26 +02:00
|
|
|
return defaultInstance;
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-22 07:22:47 +02:00
|
|
|
public ExceptionProtocol getDefaultInstanceForType() {
|
2010-06-10 11:39:26 +02:00
|
|
|
return defaultInstance;
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-10 11:39:26 +02:00
|
|
|
public static final com.google.protobuf.Descriptors.Descriptor
|
|
|
|
|
getDescriptor() {
|
2010-10-26 12:49:25 +02:00
|
|
|
return akka.remote.protocol.RemoteProtocol.internal_static_ExceptionProtocol_descriptor;
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-10 11:39:26 +02:00
|
|
|
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
|
|
|
|
|
internalGetFieldAccessorTable() {
|
2010-10-26 12:49:25 +02:00
|
|
|
return akka.remote.protocol.RemoteProtocol.internal_static_ExceptionProtocol_fieldAccessorTable;
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-22 07:22:47 +02:00
|
|
|
// required string classname = 1;
|
|
|
|
|
public static final int CLASSNAME_FIELD_NUMBER = 1;
|
|
|
|
|
private boolean hasClassname;
|
|
|
|
|
private java.lang.String classname_ = "";
|
|
|
|
|
public boolean hasClassname() { return hasClassname; }
|
|
|
|
|
public java.lang.String getClassname() { return classname_; }
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-22 07:22:47 +02:00
|
|
|
// required string message = 2;
|
|
|
|
|
public static final int MESSAGE_FIELD_NUMBER = 2;
|
2010-06-10 11:39:26 +02:00
|
|
|
private boolean hasMessage;
|
2010-06-22 07:22:47 +02:00
|
|
|
private java.lang.String message_ = "";
|
2010-06-10 11:39:26 +02:00
|
|
|
public boolean hasMessage() { return hasMessage; }
|
2010-06-22 07:22:47 +02:00
|
|
|
public java.lang.String getMessage() { return message_; }
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-10 11:39:26 +02:00
|
|
|
private void initFields() {
|
|
|
|
|
}
|
|
|
|
|
public final boolean isInitialized() {
|
2010-06-22 07:22:47 +02:00
|
|
|
if (!hasClassname) return false;
|
|
|
|
|
if (!hasMessage) return false;
|
2010-06-10 11:39:26 +02:00
|
|
|
return true;
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-10 11:39:26 +02:00
|
|
|
public void writeTo(com.google.protobuf.CodedOutputStream output)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
getSerializedSize();
|
2010-06-22 07:22:47 +02:00
|
|
|
if (hasClassname()) {
|
|
|
|
|
output.writeString(1, getClassname());
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
|
|
|
|
if (hasMessage()) {
|
2010-06-22 07:22:47 +02:00
|
|
|
output.writeString(2, getMessage());
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
|
|
|
|
getUnknownFields().writeTo(output);
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-10 11:39:26 +02:00
|
|
|
private int memoizedSerializedSize = -1;
|
|
|
|
|
public int getSerializedSize() {
|
|
|
|
|
int size = memoizedSerializedSize;
|
|
|
|
|
if (size != -1) return size;
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-10 11:39:26 +02:00
|
|
|
size = 0;
|
2010-06-22 07:22:47 +02:00
|
|
|
if (hasClassname()) {
|
2010-06-10 11:39:26 +02:00
|
|
|
size += com.google.protobuf.CodedOutputStream
|
2010-06-22 07:22:47 +02:00
|
|
|
.computeStringSize(1, getClassname());
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
|
|
|
|
if (hasMessage()) {
|
|
|
|
|
size += com.google.protobuf.CodedOutputStream
|
2010-06-22 07:22:47 +02:00
|
|
|
.computeStringSize(2, getMessage());
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
|
|
|
|
size += getUnknownFields().getSerializedSize();
|
|
|
|
|
memoizedSerializedSize = size;
|
|
|
|
|
return size;
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-10-26 12:49:25 +02:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.ExceptionProtocol parseFrom(
|
2010-06-10 11:39:26 +02:00
|
|
|
com.google.protobuf.ByteString data)
|
|
|
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
|
|
|
return newBuilder().mergeFrom(data).buildParsed();
|
|
|
|
|
}
|
2010-10-26 12:49:25 +02:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.ExceptionProtocol parseFrom(
|
2010-06-10 11:39:26 +02:00
|
|
|
com.google.protobuf.ByteString data,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
|
|
|
return newBuilder().mergeFrom(data, extensionRegistry)
|
|
|
|
|
.buildParsed();
|
|
|
|
|
}
|
2010-10-26 12:49:25 +02:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.ExceptionProtocol parseFrom(byte[] data)
|
2010-06-10 11:39:26 +02:00
|
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
|
|
|
return newBuilder().mergeFrom(data).buildParsed();
|
|
|
|
|
}
|
2010-10-26 12:49:25 +02:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.ExceptionProtocol parseFrom(
|
2010-06-10 11:39:26 +02:00
|
|
|
byte[] data,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
|
|
|
return newBuilder().mergeFrom(data, extensionRegistry)
|
|
|
|
|
.buildParsed();
|
|
|
|
|
}
|
2010-10-26 12:49:25 +02:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.ExceptionProtocol parseFrom(java.io.InputStream input)
|
2010-06-10 11:39:26 +02:00
|
|
|
throws java.io.IOException {
|
|
|
|
|
return newBuilder().mergeFrom(input).buildParsed();
|
|
|
|
|
}
|
2010-10-26 12:49:25 +02:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.ExceptionProtocol parseFrom(
|
2010-06-10 11:39:26 +02:00
|
|
|
java.io.InputStream input,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
return newBuilder().mergeFrom(input, extensionRegistry)
|
|
|
|
|
.buildParsed();
|
|
|
|
|
}
|
2010-10-26 12:49:25 +02:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.ExceptionProtocol parseDelimitedFrom(java.io.InputStream input)
|
2010-06-10 11:39:26 +02:00
|
|
|
throws java.io.IOException {
|
|
|
|
|
Builder builder = newBuilder();
|
|
|
|
|
if (builder.mergeDelimitedFrom(input)) {
|
|
|
|
|
return builder.buildParsed();
|
|
|
|
|
} else {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
}
|
2010-10-26 12:49:25 +02:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.ExceptionProtocol parseDelimitedFrom(
|
2010-06-10 11:39:26 +02:00
|
|
|
java.io.InputStream input,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
Builder builder = newBuilder();
|
|
|
|
|
if (builder.mergeDelimitedFrom(input, extensionRegistry)) {
|
|
|
|
|
return builder.buildParsed();
|
|
|
|
|
} else {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
}
|
2010-10-26 12:49:25 +02:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.ExceptionProtocol parseFrom(
|
2010-06-10 11:39:26 +02:00
|
|
|
com.google.protobuf.CodedInputStream input)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
return newBuilder().mergeFrom(input).buildParsed();
|
|
|
|
|
}
|
2010-10-26 12:49:25 +02:00
|
|
|
public static akka.remote.protocol.RemoteProtocol.ExceptionProtocol parseFrom(
|
2010-06-10 11:39:26 +02:00
|
|
|
com.google.protobuf.CodedInputStream input,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
return newBuilder().mergeFrom(input, extensionRegistry)
|
|
|
|
|
.buildParsed();
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-10 11:39:26 +02:00
|
|
|
public static Builder newBuilder() { return Builder.create(); }
|
|
|
|
|
public Builder newBuilderForType() { return newBuilder(); }
|
2010-10-26 12:49:25 +02:00
|
|
|
public static Builder newBuilder(akka.remote.protocol.RemoteProtocol.ExceptionProtocol prototype) {
|
2010-06-10 11:39:26 +02:00
|
|
|
return newBuilder().mergeFrom(prototype);
|
|
|
|
|
}
|
|
|
|
|
public Builder toBuilder() { return newBuilder(this); }
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-10 11:39:26 +02:00
|
|
|
public static final class Builder extends
|
|
|
|
|
com.google.protobuf.GeneratedMessage.Builder<Builder> {
|
2010-10-26 12:49:25 +02:00
|
|
|
private akka.remote.protocol.RemoteProtocol.ExceptionProtocol result;
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-10-26 12:49:25 +02:00
|
|
|
// Construct using akka.remote.protocol.RemoteProtocol.ExceptionProtocol.newBuilder()
|
2010-06-10 11:39:26 +02:00
|
|
|
private Builder() {}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-10 11:39:26 +02:00
|
|
|
private static Builder create() {
|
|
|
|
|
Builder builder = new Builder();
|
2010-10-26 12:49:25 +02:00
|
|
|
builder.result = new akka.remote.protocol.RemoteProtocol.ExceptionProtocol();
|
2010-06-10 11:39:26 +02:00
|
|
|
return builder;
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-10-26 12:49:25 +02:00
|
|
|
protected akka.remote.protocol.RemoteProtocol.ExceptionProtocol internalGetResult() {
|
2010-06-10 11:39:26 +02:00
|
|
|
return result;
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-10 11:39:26 +02:00
|
|
|
public Builder clear() {
|
|
|
|
|
if (result == null) {
|
|
|
|
|
throw new IllegalStateException(
|
|
|
|
|
"Cannot call clear() after build().");
|
|
|
|
|
}
|
2010-10-26 12:49:25 +02:00
|
|
|
result = new akka.remote.protocol.RemoteProtocol.ExceptionProtocol();
|
2010-06-10 11:39:26 +02:00
|
|
|
return this;
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-10 11:39:26 +02:00
|
|
|
public Builder clone() {
|
|
|
|
|
return create().mergeFrom(result);
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-10 11:39:26 +02:00
|
|
|
public com.google.protobuf.Descriptors.Descriptor
|
|
|
|
|
getDescriptorForType() {
|
2010-10-26 12:49:25 +02:00
|
|
|
return akka.remote.protocol.RemoteProtocol.ExceptionProtocol.getDescriptor();
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-10-26 12:49:25 +02:00
|
|
|
public akka.remote.protocol.RemoteProtocol.ExceptionProtocol getDefaultInstanceForType() {
|
|
|
|
|
return akka.remote.protocol.RemoteProtocol.ExceptionProtocol.getDefaultInstance();
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-10 11:39:26 +02:00
|
|
|
public boolean isInitialized() {
|
|
|
|
|
return result.isInitialized();
|
|
|
|
|
}
|
2010-10-26 12:49:25 +02:00
|
|
|
public akka.remote.protocol.RemoteProtocol.ExceptionProtocol build() {
|
2010-06-10 11:39:26 +02:00
|
|
|
if (result != null && !isInitialized()) {
|
|
|
|
|
throw newUninitializedMessageException(result);
|
|
|
|
|
}
|
|
|
|
|
return buildPartial();
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-10-26 12:49:25 +02:00
|
|
|
private akka.remote.protocol.RemoteProtocol.ExceptionProtocol buildParsed()
|
2010-06-10 11:39:26 +02:00
|
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
|
|
|
if (!isInitialized()) {
|
|
|
|
|
throw newUninitializedMessageException(
|
|
|
|
|
result).asInvalidProtocolBufferException();
|
|
|
|
|
}
|
|
|
|
|
return buildPartial();
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-10-26 12:49:25 +02:00
|
|
|
public akka.remote.protocol.RemoteProtocol.ExceptionProtocol buildPartial() {
|
2010-06-10 11:39:26 +02:00
|
|
|
if (result == null) {
|
|
|
|
|
throw new IllegalStateException(
|
|
|
|
|
"build() has already been called on this Builder.");
|
|
|
|
|
}
|
2010-10-26 12:49:25 +02:00
|
|
|
akka.remote.protocol.RemoteProtocol.ExceptionProtocol returnMe = result;
|
2010-06-10 11:39:26 +02:00
|
|
|
result = null;
|
|
|
|
|
return returnMe;
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-10 11:39:26 +02:00
|
|
|
public Builder mergeFrom(com.google.protobuf.Message other) {
|
2010-10-26 12:49:25 +02:00
|
|
|
if (other instanceof akka.remote.protocol.RemoteProtocol.ExceptionProtocol) {
|
|
|
|
|
return mergeFrom((akka.remote.protocol.RemoteProtocol.ExceptionProtocol)other);
|
2010-06-10 11:39:26 +02:00
|
|
|
} else {
|
|
|
|
|
super.mergeFrom(other);
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-10-26 12:49:25 +02:00
|
|
|
public Builder mergeFrom(akka.remote.protocol.RemoteProtocol.ExceptionProtocol other) {
|
|
|
|
|
if (other == akka.remote.protocol.RemoteProtocol.ExceptionProtocol.getDefaultInstance()) return this;
|
2010-06-22 07:22:47 +02:00
|
|
|
if (other.hasClassname()) {
|
|
|
|
|
setClassname(other.getClassname());
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
|
|
|
|
if (other.hasMessage()) {
|
|
|
|
|
setMessage(other.getMessage());
|
|
|
|
|
}
|
|
|
|
|
this.mergeUnknownFields(other.getUnknownFields());
|
|
|
|
|
return this;
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-10 11:39:26 +02:00
|
|
|
public Builder mergeFrom(
|
|
|
|
|
com.google.protobuf.CodedInputStream input,
|
|
|
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
|
|
|
throws java.io.IOException {
|
|
|
|
|
com.google.protobuf.UnknownFieldSet.Builder unknownFields =
|
|
|
|
|
com.google.protobuf.UnknownFieldSet.newBuilder(
|
|
|
|
|
this.getUnknownFields());
|
|
|
|
|
while (true) {
|
|
|
|
|
int tag = input.readTag();
|
|
|
|
|
switch (tag) {
|
|
|
|
|
case 0:
|
|
|
|
|
this.setUnknownFields(unknownFields.build());
|
|
|
|
|
return this;
|
|
|
|
|
default: {
|
|
|
|
|
if (!parseUnknownField(input, unknownFields,
|
|
|
|
|
extensionRegistry, tag)) {
|
|
|
|
|
this.setUnknownFields(unknownFields.build());
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
2010-06-22 07:22:47 +02:00
|
|
|
case 10: {
|
|
|
|
|
setClassname(input.readString());
|
2010-06-10 11:39:26 +02:00
|
|
|
break;
|
|
|
|
|
}
|
2010-06-22 07:22:47 +02:00
|
|
|
case 18: {
|
|
|
|
|
setMessage(input.readString());
|
2010-06-10 11:39:26 +02:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
|
|
|
|
|
2010-06-22 07:22:47 +02:00
|
|
|
// required string classname = 1;
|
|
|
|
|
public boolean hasClassname() {
|
|
|
|
|
return result.hasClassname();
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
2010-06-22 07:22:47 +02:00
|
|
|
public java.lang.String getClassname() {
|
|
|
|
|
return result.getClassname();
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
2010-06-22 07:22:47 +02:00
|
|
|
public Builder setClassname(java.lang.String value) {
|
2010-06-10 11:39:26 +02:00
|
|
|
if (value == null) {
|
2010-06-22 07:22:47 +02:00
|
|
|
throw new NullPointerException();
|
|
|
|
|
}
|
|
|
|
|
result.hasClassname = true;
|
|
|
|
|
result.classname_ = value;
|
2010-06-10 11:39:26 +02:00
|
|
|
return this;
|
|
|
|
|
}
|
2010-06-22 07:22:47 +02:00
|
|
|
public Builder clearClassname() {
|
|
|
|
|
result.hasClassname = false;
|
|
|
|
|
result.classname_ = getDefaultInstance().getClassname();
|
2010-06-10 11:39:26 +02:00
|
|
|
return this;
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-22 07:22:47 +02:00
|
|
|
// required string message = 2;
|
2010-06-10 11:39:26 +02:00
|
|
|
public boolean hasMessage() {
|
|
|
|
|
return result.hasMessage();
|
|
|
|
|
}
|
2010-06-22 07:22:47 +02:00
|
|
|
public java.lang.String getMessage() {
|
2010-06-10 11:39:26 +02:00
|
|
|
return result.getMessage();
|
|
|
|
|
}
|
2010-06-22 07:22:47 +02:00
|
|
|
public Builder setMessage(java.lang.String value) {
|
2010-06-10 11:39:26 +02:00
|
|
|
if (value == null) {
|
|
|
|
|
throw new NullPointerException();
|
|
|
|
|
}
|
|
|
|
|
result.hasMessage = true;
|
|
|
|
|
result.message_ = value;
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
public Builder clearMessage() {
|
|
|
|
|
result.hasMessage = false;
|
|
|
|
|
result.message_ = getDefaultInstance().getMessage();
|
|
|
|
|
return this;
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-22 07:22:47 +02:00
|
|
|
// @@protoc_insertion_point(builder_scope:ExceptionProtocol)
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-10 11:39:26 +02:00
|
|
|
static {
|
2010-06-22 07:22:47 +02:00
|
|
|
defaultInstance = new ExceptionProtocol(true);
|
2010-10-26 12:49:25 +02:00
|
|
|
akka.remote.protocol.RemoteProtocol.internalForceInit();
|
2010-06-10 11:39:26 +02:00
|
|
|
defaultInstance.initFields();
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-22 07:22:47 +02:00
|
|
|
// @@protoc_insertion_point(class_scope:ExceptionProtocol)
|
2010-06-10 11:39:26 +02:00
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2011-03-05 14:48:37 +01:00
|
|
|
private static com.google.protobuf.Descriptors.Descriptor
|
|
|
|
|
internal_static_AkkaRemoteProtocol_descriptor;
|
|
|
|
|
private static
|
|
|
|
|
com.google.protobuf.GeneratedMessage.FieldAccessorTable
|
|
|
|
|
internal_static_AkkaRemoteProtocol_fieldAccessorTable;
|
|
|
|
|
private static com.google.protobuf.Descriptors.Descriptor
|
|
|
|
|
internal_static_RemoteMessageProtocol_descriptor;
|
|
|
|
|
private static
|
|
|
|
|
com.google.protobuf.GeneratedMessage.FieldAccessorTable
|
|
|
|
|
internal_static_RemoteMessageProtocol_fieldAccessorTable;
|
|
|
|
|
private static com.google.protobuf.Descriptors.Descriptor
|
|
|
|
|
internal_static_RemoteControlProtocol_descriptor;
|
|
|
|
|
private static
|
|
|
|
|
com.google.protobuf.GeneratedMessage.FieldAccessorTable
|
|
|
|
|
internal_static_RemoteControlProtocol_fieldAccessorTable;
|
2010-06-10 16:00:17 +02:00
|
|
|
private static com.google.protobuf.Descriptors.Descriptor
|
2010-06-22 07:22:47 +02:00
|
|
|
internal_static_RemoteActorRefProtocol_descriptor;
|
2010-06-10 16:00:17 +02:00
|
|
|
private static
|
|
|
|
|
com.google.protobuf.GeneratedMessage.FieldAccessorTable
|
2010-06-22 07:22:47 +02:00
|
|
|
internal_static_RemoteActorRefProtocol_fieldAccessorTable;
|
2010-09-17 09:56:36 +02:00
|
|
|
private static com.google.protobuf.Descriptors.Descriptor
|
|
|
|
|
internal_static_RemoteTypedActorRefProtocol_descriptor;
|
|
|
|
|
private static
|
|
|
|
|
com.google.protobuf.GeneratedMessage.FieldAccessorTable
|
|
|
|
|
internal_static_RemoteTypedActorRefProtocol_fieldAccessorTable;
|
2010-06-10 11:39:26 +02:00
|
|
|
private static com.google.protobuf.Descriptors.Descriptor
|
2010-06-22 07:22:47 +02:00
|
|
|
internal_static_SerializedActorRefProtocol_descriptor;
|
2010-06-10 11:39:26 +02:00
|
|
|
private static
|
|
|
|
|
com.google.protobuf.GeneratedMessage.FieldAccessorTable
|
2010-06-22 07:22:47 +02:00
|
|
|
internal_static_SerializedActorRefProtocol_fieldAccessorTable;
|
2010-09-17 09:56:36 +02:00
|
|
|
private static com.google.protobuf.Descriptors.Descriptor
|
|
|
|
|
internal_static_SerializedTypedActorRefProtocol_descriptor;
|
|
|
|
|
private static
|
|
|
|
|
com.google.protobuf.GeneratedMessage.FieldAccessorTable
|
|
|
|
|
internal_static_SerializedTypedActorRefProtocol_fieldAccessorTable;
|
2010-06-24 08:48:48 +02:00
|
|
|
private static com.google.protobuf.Descriptors.Descriptor
|
|
|
|
|
internal_static_MessageProtocol_descriptor;
|
|
|
|
|
private static
|
|
|
|
|
com.google.protobuf.GeneratedMessage.FieldAccessorTable
|
|
|
|
|
internal_static_MessageProtocol_fieldAccessorTable;
|
2010-07-26 18:47:25 +02:00
|
|
|
private static com.google.protobuf.Descriptors.Descriptor
|
|
|
|
|
internal_static_ActorInfoProtocol_descriptor;
|
|
|
|
|
private static
|
|
|
|
|
com.google.protobuf.GeneratedMessage.FieldAccessorTable
|
|
|
|
|
internal_static_ActorInfoProtocol_fieldAccessorTable;
|
|
|
|
|
private static com.google.protobuf.Descriptors.Descriptor
|
|
|
|
|
internal_static_TypedActorInfoProtocol_descriptor;
|
|
|
|
|
private static
|
|
|
|
|
com.google.protobuf.GeneratedMessage.FieldAccessorTable
|
|
|
|
|
internal_static_TypedActorInfoProtocol_fieldAccessorTable;
|
2010-09-13 17:57:13 +02:00
|
|
|
private static com.google.protobuf.Descriptors.Descriptor
|
|
|
|
|
internal_static_UuidProtocol_descriptor;
|
|
|
|
|
private static
|
|
|
|
|
com.google.protobuf.GeneratedMessage.FieldAccessorTable
|
|
|
|
|
internal_static_UuidProtocol_fieldAccessorTable;
|
|
|
|
|
private static com.google.protobuf.Descriptors.Descriptor
|
|
|
|
|
internal_static_MetadataEntryProtocol_descriptor;
|
|
|
|
|
private static
|
|
|
|
|
com.google.protobuf.GeneratedMessage.FieldAccessorTable
|
|
|
|
|
internal_static_MetadataEntryProtocol_fieldAccessorTable;
|
2010-06-10 11:39:26 +02:00
|
|
|
private static com.google.protobuf.Descriptors.Descriptor
|
2010-06-22 07:22:47 +02:00
|
|
|
internal_static_LifeCycleProtocol_descriptor;
|
2010-06-10 11:39:26 +02:00
|
|
|
private static
|
|
|
|
|
com.google.protobuf.GeneratedMessage.FieldAccessorTable
|
2010-06-22 07:22:47 +02:00
|
|
|
internal_static_LifeCycleProtocol_fieldAccessorTable;
|
2010-06-10 11:39:26 +02:00
|
|
|
private static com.google.protobuf.Descriptors.Descriptor
|
2010-06-22 07:22:47 +02:00
|
|
|
internal_static_AddressProtocol_descriptor;
|
2010-06-10 11:39:26 +02:00
|
|
|
private static
|
|
|
|
|
com.google.protobuf.GeneratedMessage.FieldAccessorTable
|
2010-06-22 07:22:47 +02:00
|
|
|
internal_static_AddressProtocol_fieldAccessorTable;
|
2010-06-10 11:39:26 +02:00
|
|
|
private static com.google.protobuf.Descriptors.Descriptor
|
2010-06-22 07:22:47 +02:00
|
|
|
internal_static_ExceptionProtocol_descriptor;
|
2010-06-10 11:39:26 +02:00
|
|
|
private static
|
|
|
|
|
com.google.protobuf.GeneratedMessage.FieldAccessorTable
|
2010-06-22 07:22:47 +02:00
|
|
|
internal_static_ExceptionProtocol_fieldAccessorTable;
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-10 11:39:26 +02:00
|
|
|
public static com.google.protobuf.Descriptors.FileDescriptor
|
|
|
|
|
getDescriptor() {
|
|
|
|
|
return descriptor;
|
|
|
|
|
}
|
|
|
|
|
private static com.google.protobuf.Descriptors.FileDescriptor
|
|
|
|
|
descriptor;
|
|
|
|
|
static {
|
|
|
|
|
java.lang.String[] descriptorData = {
|
2011-03-05 14:48:37 +01:00
|
|
|
"\n\024RemoteProtocol.proto\"j\n\022AkkaRemoteProt" +
|
|
|
|
|
"ocol\022\'\n\007message\030\001 \001(\0132\026.RemoteMessagePro" +
|
|
|
|
|
"tocol\022+\n\013instruction\030\002 \001(\0132\026.RemoteContr" +
|
|
|
|
|
"olProtocol\"\277\002\n\025RemoteMessageProtocol\022\033\n\004" +
|
|
|
|
|
"uuid\030\001 \002(\0132\r.UuidProtocol\022%\n\tactorInfo\030\002" +
|
|
|
|
|
" \002(\0132\022.ActorInfoProtocol\022\016\n\006oneWay\030\003 \002(\010" +
|
|
|
|
|
"\022!\n\007message\030\004 \001(\0132\020.MessageProtocol\022%\n\te" +
|
|
|
|
|
"xception\030\005 \001(\0132\022.ExceptionProtocol\022%\n\016su" +
|
|
|
|
|
"pervisorUuid\030\006 \001(\0132\r.UuidProtocol\022\'\n\006sen" +
|
|
|
|
|
"der\030\007 \001(\0132\027.RemoteActorRefProtocol\022(\n\010me",
|
|
|
|
|
"tadata\030\010 \003(\0132\026.MetadataEntryProtocol\022\016\n\006" +
|
|
|
|
|
"cookie\030\t \001(\t\"J\n\025RemoteControlProtocol\022\016\n" +
|
|
|
|
|
"\006cookie\030\001 \001(\t\022!\n\013commandType\030\002 \002(\0162\014.Com" +
|
2011-04-29 15:47:56 +02:00
|
|
|
"mandType\":\n\026RemoteActorRefProtocol\022\017\n\007ad" +
|
|
|
|
|
"dress\030\001 \002(\t\022\017\n\007timeout\030\002 \001(\004\"_\n\033RemoteTy" +
|
|
|
|
|
"pedActorRefProtocol\022)\n\010actorRef\030\001 \002(\0132\027." +
|
|
|
|
|
"RemoteActorRefProtocol\022\025\n\rinterfaceName\030" +
|
|
|
|
|
"\002 \002(\t\"\323\002\n\032SerializedActorRefProtocol\022\033\n\004" +
|
|
|
|
|
"uuid\030\001 \002(\0132\r.UuidProtocol\022\017\n\007address\030\002 \002" +
|
|
|
|
|
"(\t\022\026\n\016actorClassname\030\003 \002(\t\022\025\n\ractorInsta",
|
|
|
|
|
"nce\030\004 \001(\014\022\033\n\023serializerClassname\030\005 \001(\t\022\017" +
|
|
|
|
|
"\n\007timeout\030\006 \001(\004\022\026\n\016receiveTimeout\030\007 \001(\004\022" +
|
|
|
|
|
"%\n\tlifeCycle\030\010 \001(\0132\022.LifeCycleProtocol\022+" +
|
|
|
|
|
"\n\nsupervisor\030\t \001(\0132\027.RemoteActorRefProto" +
|
|
|
|
|
"col\022\024\n\014hotswapStack\030\n \001(\014\022(\n\010messages\030\013 " +
|
|
|
|
|
"\003(\0132\026.RemoteMessageProtocol\"g\n\037Serialize" +
|
|
|
|
|
"dTypedActorRefProtocol\022-\n\010actorRef\030\001 \002(\013" +
|
|
|
|
|
"2\033.SerializedActorRefProtocol\022\025\n\rinterfa" +
|
|
|
|
|
"ceName\030\002 \002(\t\"r\n\017MessageProtocol\0225\n\023seria" +
|
|
|
|
|
"lizationScheme\030\001 \002(\0162\030.SerializationSche",
|
|
|
|
|
"meType\022\017\n\007message\030\002 \002(\014\022\027\n\017messageManife" +
|
|
|
|
|
"st\030\003 \001(\014\"\242\001\n\021ActorInfoProtocol\022\033\n\004uuid\030\001" +
|
|
|
|
|
" \002(\0132\r.UuidProtocol\022\017\n\007timeout\030\002 \002(\004\022\035\n\t" +
|
|
|
|
|
"actorType\030\003 \002(\0162\n.ActorType\022/\n\016typedActo" +
|
|
|
|
|
"rInfo\030\004 \001(\0132\027.TypedActorInfoProtocol\022\017\n\007" +
|
|
|
|
|
"address\030\005 \001(\t\";\n\026TypedActorInfoProtocol\022" +
|
2011-04-08 15:29:14 +02:00
|
|
|
"\021\n\tinterface\030\001 \002(\t\022\016\n\006method\030\002 \002(\t\")\n\014Uu" +
|
|
|
|
|
"idProtocol\022\014\n\004high\030\001 \002(\004\022\013\n\003low\030\002 \002(\004\"3\n" +
|
2011-04-29 15:47:56 +02:00
|
|
|
"\025MetadataEntryProtocol\022\013\n\003key\030\001 \002(\t\022\r\n\005v" +
|
|
|
|
|
"alue\030\002 \002(\014\"6\n\021LifeCycleProtocol\022!\n\tlifeC",
|
2011-04-08 15:29:14 +02:00
|
|
|
"ycle\030\001 \002(\0162\016.LifeCycleType\"1\n\017AddressPro" +
|
|
|
|
|
"tocol\022\020\n\010hostname\030\001 \002(\t\022\014\n\004port\030\002 \002(\r\"7\n" +
|
|
|
|
|
"\021ExceptionProtocol\022\021\n\tclassname\030\001 \002(\t\022\017\n" +
|
|
|
|
|
"\007message\030\002 \002(\t*\033\n\013CommandType\022\014\n\010SHUTDOW" +
|
|
|
|
|
"N\020\001*=\n\tActorType\022\017\n\013SCALA_ACTOR\020\001\022\016\n\nJAV" +
|
|
|
|
|
"A_ACTOR\020\002\022\017\n\013TYPED_ACTOR\020\003*]\n\027Serializat" +
|
|
|
|
|
"ionSchemeType\022\010\n\004JAVA\020\001\022\013\n\007SBINARY\020\002\022\016\n\n" +
|
|
|
|
|
"SCALA_JSON\020\003\022\r\n\tJAVA_JSON\020\004\022\014\n\010PROTOBUF\020" +
|
2011-04-29 15:47:56 +02:00
|
|
|
"\005*-\n\rLifeCycleType\022\r\n\tPERMANENT\020\001\022\r\n\tTEM" +
|
2011-04-08 15:29:14 +02:00
|
|
|
"PORARY\020\002B\030\n\024akka.remote.protocolH\001"
|
2010-06-10 11:39:26 +02:00
|
|
|
};
|
|
|
|
|
com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner =
|
|
|
|
|
new com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner() {
|
|
|
|
|
public com.google.protobuf.ExtensionRegistry assignDescriptors(
|
|
|
|
|
com.google.protobuf.Descriptors.FileDescriptor root) {
|
|
|
|
|
descriptor = root;
|
2011-03-05 14:48:37 +01:00
|
|
|
internal_static_AkkaRemoteProtocol_descriptor =
|
2010-06-22 07:22:47 +02:00
|
|
|
getDescriptor().getMessageTypes().get(0);
|
2011-03-05 14:48:37 +01:00
|
|
|
internal_static_AkkaRemoteProtocol_fieldAccessorTable = new
|
|
|
|
|
com.google.protobuf.GeneratedMessage.FieldAccessorTable(
|
|
|
|
|
internal_static_AkkaRemoteProtocol_descriptor,
|
|
|
|
|
new java.lang.String[] { "Message", "Instruction", },
|
|
|
|
|
akka.remote.protocol.RemoteProtocol.AkkaRemoteProtocol.class,
|
|
|
|
|
akka.remote.protocol.RemoteProtocol.AkkaRemoteProtocol.Builder.class);
|
|
|
|
|
internal_static_RemoteMessageProtocol_descriptor =
|
|
|
|
|
getDescriptor().getMessageTypes().get(1);
|
|
|
|
|
internal_static_RemoteMessageProtocol_fieldAccessorTable = new
|
|
|
|
|
com.google.protobuf.GeneratedMessage.FieldAccessorTable(
|
|
|
|
|
internal_static_RemoteMessageProtocol_descriptor,
|
|
|
|
|
new java.lang.String[] { "Uuid", "ActorInfo", "OneWay", "Message", "Exception", "SupervisorUuid", "Sender", "Metadata", "Cookie", },
|
|
|
|
|
akka.remote.protocol.RemoteProtocol.RemoteMessageProtocol.class,
|
|
|
|
|
akka.remote.protocol.RemoteProtocol.RemoteMessageProtocol.Builder.class);
|
|
|
|
|
internal_static_RemoteControlProtocol_descriptor =
|
|
|
|
|
getDescriptor().getMessageTypes().get(2);
|
|
|
|
|
internal_static_RemoteControlProtocol_fieldAccessorTable = new
|
|
|
|
|
com.google.protobuf.GeneratedMessage.FieldAccessorTable(
|
|
|
|
|
internal_static_RemoteControlProtocol_descriptor,
|
|
|
|
|
new java.lang.String[] { "Cookie", "CommandType", },
|
|
|
|
|
akka.remote.protocol.RemoteProtocol.RemoteControlProtocol.class,
|
|
|
|
|
akka.remote.protocol.RemoteProtocol.RemoteControlProtocol.Builder.class);
|
|
|
|
|
internal_static_RemoteActorRefProtocol_descriptor =
|
|
|
|
|
getDescriptor().getMessageTypes().get(3);
|
2010-06-10 11:39:26 +02:00
|
|
|
internal_static_RemoteActorRefProtocol_fieldAccessorTable = new
|
|
|
|
|
com.google.protobuf.GeneratedMessage.FieldAccessorTable(
|
|
|
|
|
internal_static_RemoteActorRefProtocol_descriptor,
|
2011-04-29 15:47:56 +02:00
|
|
|
new java.lang.String[] { "Address", "Timeout", },
|
2010-10-26 12:49:25 +02:00
|
|
|
akka.remote.protocol.RemoteProtocol.RemoteActorRefProtocol.class,
|
|
|
|
|
akka.remote.protocol.RemoteProtocol.RemoteActorRefProtocol.Builder.class);
|
2010-09-17 09:56:36 +02:00
|
|
|
internal_static_RemoteTypedActorRefProtocol_descriptor =
|
2011-03-05 14:48:37 +01:00
|
|
|
getDescriptor().getMessageTypes().get(4);
|
2010-09-17 09:56:36 +02:00
|
|
|
internal_static_RemoteTypedActorRefProtocol_fieldAccessorTable = new
|
|
|
|
|
com.google.protobuf.GeneratedMessage.FieldAccessorTable(
|
|
|
|
|
internal_static_RemoteTypedActorRefProtocol_descriptor,
|
|
|
|
|
new java.lang.String[] { "ActorRef", "InterfaceName", },
|
2010-10-26 12:49:25 +02:00
|
|
|
akka.remote.protocol.RemoteProtocol.RemoteTypedActorRefProtocol.class,
|
|
|
|
|
akka.remote.protocol.RemoteProtocol.RemoteTypedActorRefProtocol.Builder.class);
|
2010-09-17 09:56:36 +02:00
|
|
|
internal_static_SerializedActorRefProtocol_descriptor =
|
2011-03-05 14:48:37 +01:00
|
|
|
getDescriptor().getMessageTypes().get(5);
|
2010-06-10 11:39:26 +02:00
|
|
|
internal_static_SerializedActorRefProtocol_fieldAccessorTable = new
|
|
|
|
|
com.google.protobuf.GeneratedMessage.FieldAccessorTable(
|
|
|
|
|
internal_static_SerializedActorRefProtocol_descriptor,
|
2011-04-08 15:29:14 +02:00
|
|
|
new java.lang.String[] { "Uuid", "Address", "ActorClassname", "ActorInstance", "SerializerClassname", "Timeout", "ReceiveTimeout", "LifeCycle", "Supervisor", "HotswapStack", "Messages", },
|
2010-10-26 12:49:25 +02:00
|
|
|
akka.remote.protocol.RemoteProtocol.SerializedActorRefProtocol.class,
|
|
|
|
|
akka.remote.protocol.RemoteProtocol.SerializedActorRefProtocol.Builder.class);
|
2010-09-17 09:56:36 +02:00
|
|
|
internal_static_SerializedTypedActorRefProtocol_descriptor =
|
2011-03-05 14:48:37 +01:00
|
|
|
getDescriptor().getMessageTypes().get(6);
|
2010-09-17 09:56:36 +02:00
|
|
|
internal_static_SerializedTypedActorRefProtocol_fieldAccessorTable = new
|
|
|
|
|
com.google.protobuf.GeneratedMessage.FieldAccessorTable(
|
|
|
|
|
internal_static_SerializedTypedActorRefProtocol_descriptor,
|
|
|
|
|
new java.lang.String[] { "ActorRef", "InterfaceName", },
|
2010-10-26 12:49:25 +02:00
|
|
|
akka.remote.protocol.RemoteProtocol.SerializedTypedActorRefProtocol.class,
|
|
|
|
|
akka.remote.protocol.RemoteProtocol.SerializedTypedActorRefProtocol.Builder.class);
|
2010-06-24 08:48:48 +02:00
|
|
|
internal_static_MessageProtocol_descriptor =
|
2011-03-05 14:48:37 +01:00
|
|
|
getDescriptor().getMessageTypes().get(7);
|
2010-06-24 08:48:48 +02:00
|
|
|
internal_static_MessageProtocol_fieldAccessorTable = new
|
|
|
|
|
com.google.protobuf.GeneratedMessage.FieldAccessorTable(
|
|
|
|
|
internal_static_MessageProtocol_descriptor,
|
|
|
|
|
new java.lang.String[] { "SerializationScheme", "Message", "MessageManifest", },
|
2010-10-26 12:49:25 +02:00
|
|
|
akka.remote.protocol.RemoteProtocol.MessageProtocol.class,
|
|
|
|
|
akka.remote.protocol.RemoteProtocol.MessageProtocol.Builder.class);
|
2010-07-26 18:47:25 +02:00
|
|
|
internal_static_ActorInfoProtocol_descriptor =
|
2011-03-05 14:48:37 +01:00
|
|
|
getDescriptor().getMessageTypes().get(8);
|
2010-07-26 18:47:25 +02:00
|
|
|
internal_static_ActorInfoProtocol_fieldAccessorTable = new
|
|
|
|
|
com.google.protobuf.GeneratedMessage.FieldAccessorTable(
|
|
|
|
|
internal_static_ActorInfoProtocol_descriptor,
|
2011-04-29 15:47:56 +02:00
|
|
|
new java.lang.String[] { "Uuid", "Timeout", "ActorType", "TypedActorInfo", "Address", },
|
2010-10-26 12:49:25 +02:00
|
|
|
akka.remote.protocol.RemoteProtocol.ActorInfoProtocol.class,
|
|
|
|
|
akka.remote.protocol.RemoteProtocol.ActorInfoProtocol.Builder.class);
|
2010-07-26 18:47:25 +02:00
|
|
|
internal_static_TypedActorInfoProtocol_descriptor =
|
2011-03-05 14:48:37 +01:00
|
|
|
getDescriptor().getMessageTypes().get(9);
|
2010-07-26 18:47:25 +02:00
|
|
|
internal_static_TypedActorInfoProtocol_fieldAccessorTable = new
|
|
|
|
|
com.google.protobuf.GeneratedMessage.FieldAccessorTable(
|
|
|
|
|
internal_static_TypedActorInfoProtocol_descriptor,
|
|
|
|
|
new java.lang.String[] { "Interface", "Method", },
|
2010-10-26 12:49:25 +02:00
|
|
|
akka.remote.protocol.RemoteProtocol.TypedActorInfoProtocol.class,
|
|
|
|
|
akka.remote.protocol.RemoteProtocol.TypedActorInfoProtocol.Builder.class);
|
2010-09-13 17:57:13 +02:00
|
|
|
internal_static_UuidProtocol_descriptor =
|
2011-03-05 14:48:37 +01:00
|
|
|
getDescriptor().getMessageTypes().get(10);
|
2010-09-13 17:57:13 +02:00
|
|
|
internal_static_UuidProtocol_fieldAccessorTable = new
|
|
|
|
|
com.google.protobuf.GeneratedMessage.FieldAccessorTable(
|
|
|
|
|
internal_static_UuidProtocol_descriptor,
|
|
|
|
|
new java.lang.String[] { "High", "Low", },
|
2010-10-26 12:49:25 +02:00
|
|
|
akka.remote.protocol.RemoteProtocol.UuidProtocol.class,
|
|
|
|
|
akka.remote.protocol.RemoteProtocol.UuidProtocol.Builder.class);
|
2010-09-13 17:57:13 +02:00
|
|
|
internal_static_MetadataEntryProtocol_descriptor =
|
2011-03-05 14:48:37 +01:00
|
|
|
getDescriptor().getMessageTypes().get(11);
|
2010-09-13 17:57:13 +02:00
|
|
|
internal_static_MetadataEntryProtocol_fieldAccessorTable = new
|
|
|
|
|
com.google.protobuf.GeneratedMessage.FieldAccessorTable(
|
|
|
|
|
internal_static_MetadataEntryProtocol_descriptor,
|
|
|
|
|
new java.lang.String[] { "Key", "Value", },
|
2010-10-26 12:49:25 +02:00
|
|
|
akka.remote.protocol.RemoteProtocol.MetadataEntryProtocol.class,
|
|
|
|
|
akka.remote.protocol.RemoteProtocol.MetadataEntryProtocol.Builder.class);
|
2010-09-13 17:57:13 +02:00
|
|
|
internal_static_LifeCycleProtocol_descriptor =
|
2011-03-05 14:48:37 +01:00
|
|
|
getDescriptor().getMessageTypes().get(12);
|
2010-06-22 07:22:47 +02:00
|
|
|
internal_static_LifeCycleProtocol_fieldAccessorTable = new
|
|
|
|
|
com.google.protobuf.GeneratedMessage.FieldAccessorTable(
|
|
|
|
|
internal_static_LifeCycleProtocol_descriptor,
|
2010-09-06 21:07:27 +02:00
|
|
|
new java.lang.String[] { "LifeCycle", },
|
2010-10-26 12:49:25 +02:00
|
|
|
akka.remote.protocol.RemoteProtocol.LifeCycleProtocol.class,
|
|
|
|
|
akka.remote.protocol.RemoteProtocol.LifeCycleProtocol.Builder.class);
|
2010-06-22 07:22:47 +02:00
|
|
|
internal_static_AddressProtocol_descriptor =
|
2011-03-05 14:48:37 +01:00
|
|
|
getDescriptor().getMessageTypes().get(13);
|
2010-06-22 07:22:47 +02:00
|
|
|
internal_static_AddressProtocol_fieldAccessorTable = new
|
|
|
|
|
com.google.protobuf.GeneratedMessage.FieldAccessorTable(
|
|
|
|
|
internal_static_AddressProtocol_descriptor,
|
|
|
|
|
new java.lang.String[] { "Hostname", "Port", },
|
2010-10-26 12:49:25 +02:00
|
|
|
akka.remote.protocol.RemoteProtocol.AddressProtocol.class,
|
|
|
|
|
akka.remote.protocol.RemoteProtocol.AddressProtocol.Builder.class);
|
2010-06-22 07:22:47 +02:00
|
|
|
internal_static_ExceptionProtocol_descriptor =
|
2011-03-05 14:48:37 +01:00
|
|
|
getDescriptor().getMessageTypes().get(14);
|
2010-06-22 07:22:47 +02:00
|
|
|
internal_static_ExceptionProtocol_fieldAccessorTable = new
|
|
|
|
|
com.google.protobuf.GeneratedMessage.FieldAccessorTable(
|
|
|
|
|
internal_static_ExceptionProtocol_descriptor,
|
|
|
|
|
new java.lang.String[] { "Classname", "Message", },
|
2010-10-26 12:49:25 +02:00
|
|
|
akka.remote.protocol.RemoteProtocol.ExceptionProtocol.class,
|
|
|
|
|
akka.remote.protocol.RemoteProtocol.ExceptionProtocol.Builder.class);
|
2010-06-10 11:39:26 +02:00
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
com.google.protobuf.Descriptors.FileDescriptor
|
|
|
|
|
.internalBuildGeneratedFileFrom(descriptorData,
|
|
|
|
|
new com.google.protobuf.Descriptors.FileDescriptor[] {
|
|
|
|
|
}, assigner);
|
|
|
|
|
}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-10 11:39:26 +02:00
|
|
|
public static void internalForceInit() {}
|
2010-09-06 21:07:27 +02:00
|
|
|
|
2010-06-10 11:39:26 +02:00
|
|
|
// @@protoc_insertion_point(outer_class_scope)
|
|
|
|
|
}
|