POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: POGOProtos/Networking/Requests/Messages/PlatformClientActionsMessage.proto
package POGOProtos.Networking.Requests.Messages;
public final class PlatformClientActionsMessage {
private PlatformClientActionsMessage() {}
public static void registerAllExtensions(
com.google.protobuf.ExtensionRegistryLite registry) {
}
public static void registerAllExtensions(
com.google.protobuf.ExtensionRegistry registry) {
registerAllExtensions(
(com.google.protobuf.ExtensionRegistryLite) registry);
}
public interface RegisterPushNotificationMessageOrBuilder extends
// @@protoc_insertion_point(interface_extends:POGOProtos.Networking.Requests.Messages.RegisterPushNotificationMessage)
com.google.protobuf.MessageOrBuilder {
/**
* .POGOProtos.Networking.Requests.Messages.RegisterPushNotificationMessage.ApnToken apn_token = 1;
*/
boolean hasApnToken();
/**
* .POGOProtos.Networking.Requests.Messages.RegisterPushNotificationMessage.ApnToken apn_token = 1;
*/
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnToken getApnToken();
/**
* .POGOProtos.Networking.Requests.Messages.RegisterPushNotificationMessage.ApnToken apn_token = 1;
*/
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnTokenOrBuilder getApnTokenOrBuilder();
/**
* .POGOProtos.Networking.Requests.Messages.RegisterPushNotificationMessage.GcmToken gcm_token = 2;
*/
boolean hasGcmToken();
/**
* .POGOProtos.Networking.Requests.Messages.RegisterPushNotificationMessage.GcmToken gcm_token = 2;
*/
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmToken getGcmToken();
/**
* .POGOProtos.Networking.Requests.Messages.RegisterPushNotificationMessage.GcmToken gcm_token = 2;
*/
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmTokenOrBuilder getGcmTokenOrBuilder();
}
/**
* Protobuf type {@code POGOProtos.Networking.Requests.Messages.RegisterPushNotificationMessage}
*/
public static final class RegisterPushNotificationMessage extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:POGOProtos.Networking.Requests.Messages.RegisterPushNotificationMessage)
RegisterPushNotificationMessageOrBuilder {
private static final long serialVersionUID = 0L;
// Use RegisterPushNotificationMessage.newBuilder() to construct.
private RegisterPushNotificationMessage(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private RegisterPushNotificationMessage() {
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private RegisterPushNotificationMessage(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
this();
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
int mutable_bitField0_ = 0;
com.google.protobuf.UnknownFieldSet.Builder unknownFields =
com.google.protobuf.UnknownFieldSet.newBuilder();
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 10: {
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnToken.Builder subBuilder = null;
if (apnToken_ != null) {
subBuilder = apnToken_.toBuilder();
}
apnToken_ = input.readMessage(POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnToken.parser(), extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(apnToken_);
apnToken_ = subBuilder.buildPartial();
}
break;
}
case 18: {
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmToken.Builder subBuilder = null;
if (gcmToken_ != null) {
subBuilder = gcmToken_.toBuilder();
}
gcmToken_ = input.readMessage(POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmToken.parser(), extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(gcmToken_);
gcmToken_ = subBuilder.buildPartial();
}
break;
}
default: {
if (!parseUnknownFieldProto3(
input, unknownFields, extensionRegistry, tag)) {
done = true;
}
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e).setUnfinishedMessage(this);
} finally {
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_RegisterPushNotificationMessage_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_RegisterPushNotificationMessage_fieldAccessorTable
.ensureFieldAccessorsInitialized(
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.class, POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.Builder.class);
}
public interface ApnTokenOrBuilder extends
// @@protoc_insertion_point(interface_extends:POGOProtos.Networking.Requests.Messages.RegisterPushNotificationMessage.ApnToken)
com.google.protobuf.MessageOrBuilder {
/**
* string registration_id = 1;
*/
java.lang.String getRegistrationId();
/**
* string registration_id = 1;
*/
com.google.protobuf.ByteString
getRegistrationIdBytes();
/**
* string bundle_identifier = 2;
*/
java.lang.String getBundleIdentifier();
/**
* string bundle_identifier = 2;
*/
com.google.protobuf.ByteString
getBundleIdentifierBytes();
/**
* int32 payload_byte_size = 3;
*/
int getPayloadByteSize();
}
/**
* Protobuf type {@code POGOProtos.Networking.Requests.Messages.RegisterPushNotificationMessage.ApnToken}
*/
public static final class ApnToken extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:POGOProtos.Networking.Requests.Messages.RegisterPushNotificationMessage.ApnToken)
ApnTokenOrBuilder {
private static final long serialVersionUID = 0L;
// Use ApnToken.newBuilder() to construct.
private ApnToken(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private ApnToken() {
registrationId_ = "";
bundleIdentifier_ = "";
payloadByteSize_ = 0;
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private ApnToken(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
this();
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
int mutable_bitField0_ = 0;
com.google.protobuf.UnknownFieldSet.Builder unknownFields =
com.google.protobuf.UnknownFieldSet.newBuilder();
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 10: {
java.lang.String s = input.readStringRequireUtf8();
registrationId_ = s;
break;
}
case 18: {
java.lang.String s = input.readStringRequireUtf8();
bundleIdentifier_ = s;
break;
}
case 24: {
payloadByteSize_ = input.readInt32();
break;
}
default: {
if (!parseUnknownFieldProto3(
input, unknownFields, extensionRegistry, tag)) {
done = true;
}
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e).setUnfinishedMessage(this);
} finally {
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_RegisterPushNotificationMessage_ApnToken_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_RegisterPushNotificationMessage_ApnToken_fieldAccessorTable
.ensureFieldAccessorsInitialized(
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnToken.class, POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnToken.Builder.class);
}
public static final int REGISTRATION_ID_FIELD_NUMBER = 1;
private volatile java.lang.Object registrationId_;
/**
* string registration_id = 1;
*/
public java.lang.String getRegistrationId() {
java.lang.Object ref = registrationId_;
if (ref instanceof java.lang.String) {
return (java.lang.String) ref;
} else {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
registrationId_ = s;
return s;
}
}
/**
* string registration_id = 1;
*/
public com.google.protobuf.ByteString
getRegistrationIdBytes() {
java.lang.Object ref = registrationId_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
registrationId_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int BUNDLE_IDENTIFIER_FIELD_NUMBER = 2;
private volatile java.lang.Object bundleIdentifier_;
/**
* string bundle_identifier = 2;
*/
public java.lang.String getBundleIdentifier() {
java.lang.Object ref = bundleIdentifier_;
if (ref instanceof java.lang.String) {
return (java.lang.String) ref;
} else {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
bundleIdentifier_ = s;
return s;
}
}
/**
* string bundle_identifier = 2;
*/
public com.google.protobuf.ByteString
getBundleIdentifierBytes() {
java.lang.Object ref = bundleIdentifier_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
bundleIdentifier_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int PAYLOAD_BYTE_SIZE_FIELD_NUMBER = 3;
private int payloadByteSize_;
/**
* int32 payload_byte_size = 3;
*/
public int getPayloadByteSize() {
return payloadByteSize_;
}
private byte memoizedIsInitialized = -1;
@java.lang.Override
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
@java.lang.Override
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
if (!getRegistrationIdBytes().isEmpty()) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 1, registrationId_);
}
if (!getBundleIdentifierBytes().isEmpty()) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 2, bundleIdentifier_);
}
if (payloadByteSize_ != 0) {
output.writeInt32(3, payloadByteSize_);
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (!getRegistrationIdBytes().isEmpty()) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, registrationId_);
}
if (!getBundleIdentifierBytes().isEmpty()) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, bundleIdentifier_);
}
if (payloadByteSize_ != 0) {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(3, payloadByteSize_);
}
size += unknownFields.getSerializedSize();
memoizedSize = size;
return size;
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnToken)) {
return super.equals(obj);
}
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnToken other = (POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnToken) obj;
boolean result = true;
result = result && getRegistrationId()
.equals(other.getRegistrationId());
result = result && getBundleIdentifier()
.equals(other.getBundleIdentifier());
result = result && (getPayloadByteSize()
== other.getPayloadByteSize());
result = result && unknownFields.equals(other.unknownFields);
return result;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
hash = (37 * hash) + REGISTRATION_ID_FIELD_NUMBER;
hash = (53 * hash) + getRegistrationId().hashCode();
hash = (37 * hash) + BUNDLE_IDENTIFIER_FIELD_NUMBER;
hash = (53 * hash) + getBundleIdentifier().hashCode();
hash = (37 * hash) + PAYLOAD_BYTE_SIZE_FIELD_NUMBER;
hash = (53 * hash) + getPayloadByteSize();
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnToken parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnToken parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnToken parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnToken parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnToken parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnToken parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnToken parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnToken parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnToken parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnToken parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnToken parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnToken parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
@java.lang.Override
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder() {
return DEFAULT_INSTANCE.toBuilder();
}
public static Builder newBuilder(POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnToken prototype) {
return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
}
@java.lang.Override
public Builder toBuilder() {
return this == DEFAULT_INSTANCE
? new Builder() : new Builder().mergeFrom(this);
}
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
* Protobuf type {@code POGOProtos.Networking.Requests.Messages.RegisterPushNotificationMessage.ApnToken}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:POGOProtos.Networking.Requests.Messages.RegisterPushNotificationMessage.ApnToken)
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnTokenOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_RegisterPushNotificationMessage_ApnToken_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_RegisterPushNotificationMessage_ApnToken_fieldAccessorTable
.ensureFieldAccessorsInitialized(
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnToken.class, POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnToken.Builder.class);
}
// Construct using POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnToken.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
}
}
@java.lang.Override
public Builder clear() {
super.clear();
registrationId_ = "";
bundleIdentifier_ = "";
payloadByteSize_ = 0;
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_RegisterPushNotificationMessage_ApnToken_descriptor;
}
@java.lang.Override
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnToken getDefaultInstanceForType() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnToken.getDefaultInstance();
}
@java.lang.Override
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnToken build() {
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnToken result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnToken buildPartial() {
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnToken result = new POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnToken(this);
result.registrationId_ = registrationId_;
result.bundleIdentifier_ = bundleIdentifier_;
result.payloadByteSize_ = payloadByteSize_;
onBuilt();
return result;
}
@java.lang.Override
public Builder clone() {
return (Builder) super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.setField(field, value);
}
@java.lang.Override
public Builder clearField(
com.google.protobuf.Descriptors.FieldDescriptor field) {
return (Builder) super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(
com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return (Builder) super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index, java.lang.Object value) {
return (Builder) super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnToken) {
return mergeFrom((POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnToken)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnToken other) {
if (other == POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnToken.getDefaultInstance()) return this;
if (!other.getRegistrationId().isEmpty()) {
registrationId_ = other.registrationId_;
onChanged();
}
if (!other.getBundleIdentifier().isEmpty()) {
bundleIdentifier_ = other.bundleIdentifier_;
onChanged();
}
if (other.getPayloadByteSize() != 0) {
setPayloadByteSize(other.getPayloadByteSize());
}
this.mergeUnknownFields(other.unknownFields);
onChanged();
return this;
}
@java.lang.Override
public final boolean isInitialized() {
return true;
}
@java.lang.Override
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnToken parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnToken) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private java.lang.Object registrationId_ = "";
/**
* string registration_id = 1;
*/
public java.lang.String getRegistrationId() {
java.lang.Object ref = registrationId_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
registrationId_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* string registration_id = 1;
*/
public com.google.protobuf.ByteString
getRegistrationIdBytes() {
java.lang.Object ref = registrationId_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
registrationId_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* string registration_id = 1;
*/
public Builder setRegistrationId(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
registrationId_ = value;
onChanged();
return this;
}
/**
* string registration_id = 1;
*/
public Builder clearRegistrationId() {
registrationId_ = getDefaultInstance().getRegistrationId();
onChanged();
return this;
}
/**
* string registration_id = 1;
*/
public Builder setRegistrationIdBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
registrationId_ = value;
onChanged();
return this;
}
private java.lang.Object bundleIdentifier_ = "";
/**
* string bundle_identifier = 2;
*/
public java.lang.String getBundleIdentifier() {
java.lang.Object ref = bundleIdentifier_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
bundleIdentifier_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* string bundle_identifier = 2;
*/
public com.google.protobuf.ByteString
getBundleIdentifierBytes() {
java.lang.Object ref = bundleIdentifier_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
bundleIdentifier_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* string bundle_identifier = 2;
*/
public Builder setBundleIdentifier(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
bundleIdentifier_ = value;
onChanged();
return this;
}
/**
* string bundle_identifier = 2;
*/
public Builder clearBundleIdentifier() {
bundleIdentifier_ = getDefaultInstance().getBundleIdentifier();
onChanged();
return this;
}
/**
* string bundle_identifier = 2;
*/
public Builder setBundleIdentifierBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
bundleIdentifier_ = value;
onChanged();
return this;
}
private int payloadByteSize_ ;
/**
* int32 payload_byte_size = 3;
*/
public int getPayloadByteSize() {
return payloadByteSize_;
}
/**
* int32 payload_byte_size = 3;
*/
public Builder setPayloadByteSize(int value) {
payloadByteSize_ = value;
onChanged();
return this;
}
/**
* int32 payload_byte_size = 3;
*/
public Builder clearPayloadByteSize() {
payloadByteSize_ = 0;
onChanged();
return this;
}
@java.lang.Override
public final Builder setUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.setUnknownFieldsProto3(unknownFields);
}
@java.lang.Override
public final Builder mergeUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.mergeUnknownFields(unknownFields);
}
// @@protoc_insertion_point(builder_scope:POGOProtos.Networking.Requests.Messages.RegisterPushNotificationMessage.ApnToken)
}
// @@protoc_insertion_point(class_scope:POGOProtos.Networking.Requests.Messages.RegisterPushNotificationMessage.ApnToken)
private static final POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnToken DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnToken();
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnToken getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public ApnToken parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new ApnToken(input, extensionRegistry);
}
};
public static com.google.protobuf.Parser parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
@java.lang.Override
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnToken getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
public interface GcmTokenOrBuilder extends
// @@protoc_insertion_point(interface_extends:POGOProtos.Networking.Requests.Messages.RegisterPushNotificationMessage.GcmToken)
com.google.protobuf.MessageOrBuilder {
/**
* string registration_id = 1;
*/
java.lang.String getRegistrationId();
/**
* string registration_id = 1;
*/
com.google.protobuf.ByteString
getRegistrationIdBytes();
}
/**
* Protobuf type {@code POGOProtos.Networking.Requests.Messages.RegisterPushNotificationMessage.GcmToken}
*/
public static final class GcmToken extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:POGOProtos.Networking.Requests.Messages.RegisterPushNotificationMessage.GcmToken)
GcmTokenOrBuilder {
private static final long serialVersionUID = 0L;
// Use GcmToken.newBuilder() to construct.
private GcmToken(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private GcmToken() {
registrationId_ = "";
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private GcmToken(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
this();
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
int mutable_bitField0_ = 0;
com.google.protobuf.UnknownFieldSet.Builder unknownFields =
com.google.protobuf.UnknownFieldSet.newBuilder();
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 10: {
java.lang.String s = input.readStringRequireUtf8();
registrationId_ = s;
break;
}
default: {
if (!parseUnknownFieldProto3(
input, unknownFields, extensionRegistry, tag)) {
done = true;
}
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e).setUnfinishedMessage(this);
} finally {
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_RegisterPushNotificationMessage_GcmToken_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_RegisterPushNotificationMessage_GcmToken_fieldAccessorTable
.ensureFieldAccessorsInitialized(
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmToken.class, POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmToken.Builder.class);
}
public static final int REGISTRATION_ID_FIELD_NUMBER = 1;
private volatile java.lang.Object registrationId_;
/**
* string registration_id = 1;
*/
public java.lang.String getRegistrationId() {
java.lang.Object ref = registrationId_;
if (ref instanceof java.lang.String) {
return (java.lang.String) ref;
} else {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
registrationId_ = s;
return s;
}
}
/**
* string registration_id = 1;
*/
public com.google.protobuf.ByteString
getRegistrationIdBytes() {
java.lang.Object ref = registrationId_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
registrationId_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
private byte memoizedIsInitialized = -1;
@java.lang.Override
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
@java.lang.Override
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
if (!getRegistrationIdBytes().isEmpty()) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 1, registrationId_);
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (!getRegistrationIdBytes().isEmpty()) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, registrationId_);
}
size += unknownFields.getSerializedSize();
memoizedSize = size;
return size;
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmToken)) {
return super.equals(obj);
}
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmToken other = (POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmToken) obj;
boolean result = true;
result = result && getRegistrationId()
.equals(other.getRegistrationId());
result = result && unknownFields.equals(other.unknownFields);
return result;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
hash = (37 * hash) + REGISTRATION_ID_FIELD_NUMBER;
hash = (53 * hash) + getRegistrationId().hashCode();
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmToken parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmToken parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmToken parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmToken parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmToken parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmToken parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmToken parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmToken parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmToken parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmToken parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmToken parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmToken parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
@java.lang.Override
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder() {
return DEFAULT_INSTANCE.toBuilder();
}
public static Builder newBuilder(POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmToken prototype) {
return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
}
@java.lang.Override
public Builder toBuilder() {
return this == DEFAULT_INSTANCE
? new Builder() : new Builder().mergeFrom(this);
}
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
* Protobuf type {@code POGOProtos.Networking.Requests.Messages.RegisterPushNotificationMessage.GcmToken}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:POGOProtos.Networking.Requests.Messages.RegisterPushNotificationMessage.GcmToken)
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmTokenOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_RegisterPushNotificationMessage_GcmToken_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_RegisterPushNotificationMessage_GcmToken_fieldAccessorTable
.ensureFieldAccessorsInitialized(
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmToken.class, POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmToken.Builder.class);
}
// Construct using POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmToken.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
}
}
@java.lang.Override
public Builder clear() {
super.clear();
registrationId_ = "";
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_RegisterPushNotificationMessage_GcmToken_descriptor;
}
@java.lang.Override
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmToken getDefaultInstanceForType() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmToken.getDefaultInstance();
}
@java.lang.Override
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmToken build() {
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmToken result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmToken buildPartial() {
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmToken result = new POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmToken(this);
result.registrationId_ = registrationId_;
onBuilt();
return result;
}
@java.lang.Override
public Builder clone() {
return (Builder) super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.setField(field, value);
}
@java.lang.Override
public Builder clearField(
com.google.protobuf.Descriptors.FieldDescriptor field) {
return (Builder) super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(
com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return (Builder) super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index, java.lang.Object value) {
return (Builder) super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmToken) {
return mergeFrom((POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmToken)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmToken other) {
if (other == POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmToken.getDefaultInstance()) return this;
if (!other.getRegistrationId().isEmpty()) {
registrationId_ = other.registrationId_;
onChanged();
}
this.mergeUnknownFields(other.unknownFields);
onChanged();
return this;
}
@java.lang.Override
public final boolean isInitialized() {
return true;
}
@java.lang.Override
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmToken parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmToken) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private java.lang.Object registrationId_ = "";
/**
* string registration_id = 1;
*/
public java.lang.String getRegistrationId() {
java.lang.Object ref = registrationId_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
registrationId_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* string registration_id = 1;
*/
public com.google.protobuf.ByteString
getRegistrationIdBytes() {
java.lang.Object ref = registrationId_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
registrationId_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* string registration_id = 1;
*/
public Builder setRegistrationId(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
registrationId_ = value;
onChanged();
return this;
}
/**
* string registration_id = 1;
*/
public Builder clearRegistrationId() {
registrationId_ = getDefaultInstance().getRegistrationId();
onChanged();
return this;
}
/**
* string registration_id = 1;
*/
public Builder setRegistrationIdBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
registrationId_ = value;
onChanged();
return this;
}
@java.lang.Override
public final Builder setUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.setUnknownFieldsProto3(unknownFields);
}
@java.lang.Override
public final Builder mergeUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.mergeUnknownFields(unknownFields);
}
// @@protoc_insertion_point(builder_scope:POGOProtos.Networking.Requests.Messages.RegisterPushNotificationMessage.GcmToken)
}
// @@protoc_insertion_point(class_scope:POGOProtos.Networking.Requests.Messages.RegisterPushNotificationMessage.GcmToken)
private static final POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmToken DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmToken();
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmToken getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public GcmToken parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new GcmToken(input, extensionRegistry);
}
};
public static com.google.protobuf.Parser parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
@java.lang.Override
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmToken getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
public static final int APN_TOKEN_FIELD_NUMBER = 1;
private POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnToken apnToken_;
/**
* .POGOProtos.Networking.Requests.Messages.RegisterPushNotificationMessage.ApnToken apn_token = 1;
*/
public boolean hasApnToken() {
return apnToken_ != null;
}
/**
* .POGOProtos.Networking.Requests.Messages.RegisterPushNotificationMessage.ApnToken apn_token = 1;
*/
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnToken getApnToken() {
return apnToken_ == null ? POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnToken.getDefaultInstance() : apnToken_;
}
/**
* .POGOProtos.Networking.Requests.Messages.RegisterPushNotificationMessage.ApnToken apn_token = 1;
*/
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnTokenOrBuilder getApnTokenOrBuilder() {
return getApnToken();
}
public static final int GCM_TOKEN_FIELD_NUMBER = 2;
private POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmToken gcmToken_;
/**
* .POGOProtos.Networking.Requests.Messages.RegisterPushNotificationMessage.GcmToken gcm_token = 2;
*/
public boolean hasGcmToken() {
return gcmToken_ != null;
}
/**
* .POGOProtos.Networking.Requests.Messages.RegisterPushNotificationMessage.GcmToken gcm_token = 2;
*/
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmToken getGcmToken() {
return gcmToken_ == null ? POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmToken.getDefaultInstance() : gcmToken_;
}
/**
* .POGOProtos.Networking.Requests.Messages.RegisterPushNotificationMessage.GcmToken gcm_token = 2;
*/
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmTokenOrBuilder getGcmTokenOrBuilder() {
return getGcmToken();
}
private byte memoizedIsInitialized = -1;
@java.lang.Override
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
@java.lang.Override
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
if (apnToken_ != null) {
output.writeMessage(1, getApnToken());
}
if (gcmToken_ != null) {
output.writeMessage(2, getGcmToken());
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (apnToken_ != null) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(1, getApnToken());
}
if (gcmToken_ != null) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(2, getGcmToken());
}
size += unknownFields.getSerializedSize();
memoizedSize = size;
return size;
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage)) {
return super.equals(obj);
}
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage other = (POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage) obj;
boolean result = true;
result = result && (hasApnToken() == other.hasApnToken());
if (hasApnToken()) {
result = result && getApnToken()
.equals(other.getApnToken());
}
result = result && (hasGcmToken() == other.hasGcmToken());
if (hasGcmToken()) {
result = result && getGcmToken()
.equals(other.getGcmToken());
}
result = result && unknownFields.equals(other.unknownFields);
return result;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
if (hasApnToken()) {
hash = (37 * hash) + APN_TOKEN_FIELD_NUMBER;
hash = (53 * hash) + getApnToken().hashCode();
}
if (hasGcmToken()) {
hash = (37 * hash) + GCM_TOKEN_FIELD_NUMBER;
hash = (53 * hash) + getGcmToken().hashCode();
}
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
@java.lang.Override
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder() {
return DEFAULT_INSTANCE.toBuilder();
}
public static Builder newBuilder(POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage prototype) {
return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
}
@java.lang.Override
public Builder toBuilder() {
return this == DEFAULT_INSTANCE
? new Builder() : new Builder().mergeFrom(this);
}
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
* Protobuf type {@code POGOProtos.Networking.Requests.Messages.RegisterPushNotificationMessage}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:POGOProtos.Networking.Requests.Messages.RegisterPushNotificationMessage)
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessageOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_RegisterPushNotificationMessage_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_RegisterPushNotificationMessage_fieldAccessorTable
.ensureFieldAccessorsInitialized(
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.class, POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.Builder.class);
}
// Construct using POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
}
}
@java.lang.Override
public Builder clear() {
super.clear();
if (apnTokenBuilder_ == null) {
apnToken_ = null;
} else {
apnToken_ = null;
apnTokenBuilder_ = null;
}
if (gcmTokenBuilder_ == null) {
gcmToken_ = null;
} else {
gcmToken_ = null;
gcmTokenBuilder_ = null;
}
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_RegisterPushNotificationMessage_descriptor;
}
@java.lang.Override
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage getDefaultInstanceForType() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.getDefaultInstance();
}
@java.lang.Override
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage build() {
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage buildPartial() {
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage result = new POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage(this);
if (apnTokenBuilder_ == null) {
result.apnToken_ = apnToken_;
} else {
result.apnToken_ = apnTokenBuilder_.build();
}
if (gcmTokenBuilder_ == null) {
result.gcmToken_ = gcmToken_;
} else {
result.gcmToken_ = gcmTokenBuilder_.build();
}
onBuilt();
return result;
}
@java.lang.Override
public Builder clone() {
return (Builder) super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.setField(field, value);
}
@java.lang.Override
public Builder clearField(
com.google.protobuf.Descriptors.FieldDescriptor field) {
return (Builder) super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(
com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return (Builder) super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index, java.lang.Object value) {
return (Builder) super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage) {
return mergeFrom((POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage other) {
if (other == POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.getDefaultInstance()) return this;
if (other.hasApnToken()) {
mergeApnToken(other.getApnToken());
}
if (other.hasGcmToken()) {
mergeGcmToken(other.getGcmToken());
}
this.mergeUnknownFields(other.unknownFields);
onChanged();
return this;
}
@java.lang.Override
public final boolean isInitialized() {
return true;
}
@java.lang.Override
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnToken apnToken_ = null;
private com.google.protobuf.SingleFieldBuilderV3<
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnToken, POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnToken.Builder, POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnTokenOrBuilder> apnTokenBuilder_;
/**
* .POGOProtos.Networking.Requests.Messages.RegisterPushNotificationMessage.ApnToken apn_token = 1;
*/
public boolean hasApnToken() {
return apnTokenBuilder_ != null || apnToken_ != null;
}
/**
* .POGOProtos.Networking.Requests.Messages.RegisterPushNotificationMessage.ApnToken apn_token = 1;
*/
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnToken getApnToken() {
if (apnTokenBuilder_ == null) {
return apnToken_ == null ? POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnToken.getDefaultInstance() : apnToken_;
} else {
return apnTokenBuilder_.getMessage();
}
}
/**
* .POGOProtos.Networking.Requests.Messages.RegisterPushNotificationMessage.ApnToken apn_token = 1;
*/
public Builder setApnToken(POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnToken value) {
if (apnTokenBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
apnToken_ = value;
onChanged();
} else {
apnTokenBuilder_.setMessage(value);
}
return this;
}
/**
* .POGOProtos.Networking.Requests.Messages.RegisterPushNotificationMessage.ApnToken apn_token = 1;
*/
public Builder setApnToken(
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnToken.Builder builderForValue) {
if (apnTokenBuilder_ == null) {
apnToken_ = builderForValue.build();
onChanged();
} else {
apnTokenBuilder_.setMessage(builderForValue.build());
}
return this;
}
/**
* .POGOProtos.Networking.Requests.Messages.RegisterPushNotificationMessage.ApnToken apn_token = 1;
*/
public Builder mergeApnToken(POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnToken value) {
if (apnTokenBuilder_ == null) {
if (apnToken_ != null) {
apnToken_ =
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnToken.newBuilder(apnToken_).mergeFrom(value).buildPartial();
} else {
apnToken_ = value;
}
onChanged();
} else {
apnTokenBuilder_.mergeFrom(value);
}
return this;
}
/**
* .POGOProtos.Networking.Requests.Messages.RegisterPushNotificationMessage.ApnToken apn_token = 1;
*/
public Builder clearApnToken() {
if (apnTokenBuilder_ == null) {
apnToken_ = null;
onChanged();
} else {
apnToken_ = null;
apnTokenBuilder_ = null;
}
return this;
}
/**
* .POGOProtos.Networking.Requests.Messages.RegisterPushNotificationMessage.ApnToken apn_token = 1;
*/
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnToken.Builder getApnTokenBuilder() {
onChanged();
return getApnTokenFieldBuilder().getBuilder();
}
/**
* .POGOProtos.Networking.Requests.Messages.RegisterPushNotificationMessage.ApnToken apn_token = 1;
*/
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnTokenOrBuilder getApnTokenOrBuilder() {
if (apnTokenBuilder_ != null) {
return apnTokenBuilder_.getMessageOrBuilder();
} else {
return apnToken_ == null ?
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnToken.getDefaultInstance() : apnToken_;
}
}
/**
* .POGOProtos.Networking.Requests.Messages.RegisterPushNotificationMessage.ApnToken apn_token = 1;
*/
private com.google.protobuf.SingleFieldBuilderV3<
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnToken, POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnToken.Builder, POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnTokenOrBuilder>
getApnTokenFieldBuilder() {
if (apnTokenBuilder_ == null) {
apnTokenBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnToken, POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnToken.Builder, POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnTokenOrBuilder>(
getApnToken(),
getParentForChildren(),
isClean());
apnToken_ = null;
}
return apnTokenBuilder_;
}
private POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmToken gcmToken_ = null;
private com.google.protobuf.SingleFieldBuilderV3<
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmToken, POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmToken.Builder, POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmTokenOrBuilder> gcmTokenBuilder_;
/**
* .POGOProtos.Networking.Requests.Messages.RegisterPushNotificationMessage.GcmToken gcm_token = 2;
*/
public boolean hasGcmToken() {
return gcmTokenBuilder_ != null || gcmToken_ != null;
}
/**
* .POGOProtos.Networking.Requests.Messages.RegisterPushNotificationMessage.GcmToken gcm_token = 2;
*/
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmToken getGcmToken() {
if (gcmTokenBuilder_ == null) {
return gcmToken_ == null ? POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmToken.getDefaultInstance() : gcmToken_;
} else {
return gcmTokenBuilder_.getMessage();
}
}
/**
* .POGOProtos.Networking.Requests.Messages.RegisterPushNotificationMessage.GcmToken gcm_token = 2;
*/
public Builder setGcmToken(POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmToken value) {
if (gcmTokenBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
gcmToken_ = value;
onChanged();
} else {
gcmTokenBuilder_.setMessage(value);
}
return this;
}
/**
* .POGOProtos.Networking.Requests.Messages.RegisterPushNotificationMessage.GcmToken gcm_token = 2;
*/
public Builder setGcmToken(
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmToken.Builder builderForValue) {
if (gcmTokenBuilder_ == null) {
gcmToken_ = builderForValue.build();
onChanged();
} else {
gcmTokenBuilder_.setMessage(builderForValue.build());
}
return this;
}
/**
* .POGOProtos.Networking.Requests.Messages.RegisterPushNotificationMessage.GcmToken gcm_token = 2;
*/
public Builder mergeGcmToken(POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmToken value) {
if (gcmTokenBuilder_ == null) {
if (gcmToken_ != null) {
gcmToken_ =
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmToken.newBuilder(gcmToken_).mergeFrom(value).buildPartial();
} else {
gcmToken_ = value;
}
onChanged();
} else {
gcmTokenBuilder_.mergeFrom(value);
}
return this;
}
/**
* .POGOProtos.Networking.Requests.Messages.RegisterPushNotificationMessage.GcmToken gcm_token = 2;
*/
public Builder clearGcmToken() {
if (gcmTokenBuilder_ == null) {
gcmToken_ = null;
onChanged();
} else {
gcmToken_ = null;
gcmTokenBuilder_ = null;
}
return this;
}
/**
* .POGOProtos.Networking.Requests.Messages.RegisterPushNotificationMessage.GcmToken gcm_token = 2;
*/
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmToken.Builder getGcmTokenBuilder() {
onChanged();
return getGcmTokenFieldBuilder().getBuilder();
}
/**
* .POGOProtos.Networking.Requests.Messages.RegisterPushNotificationMessage.GcmToken gcm_token = 2;
*/
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmTokenOrBuilder getGcmTokenOrBuilder() {
if (gcmTokenBuilder_ != null) {
return gcmTokenBuilder_.getMessageOrBuilder();
} else {
return gcmToken_ == null ?
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmToken.getDefaultInstance() : gcmToken_;
}
}
/**
* .POGOProtos.Networking.Requests.Messages.RegisterPushNotificationMessage.GcmToken gcm_token = 2;
*/
private com.google.protobuf.SingleFieldBuilderV3<
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmToken, POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmToken.Builder, POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmTokenOrBuilder>
getGcmTokenFieldBuilder() {
if (gcmTokenBuilder_ == null) {
gcmTokenBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmToken, POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmToken.Builder, POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmTokenOrBuilder>(
getGcmToken(),
getParentForChildren(),
isClean());
gcmToken_ = null;
}
return gcmTokenBuilder_;
}
@java.lang.Override
public final Builder setUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.setUnknownFieldsProto3(unknownFields);
}
@java.lang.Override
public final Builder mergeUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.mergeUnknownFields(unknownFields);
}
// @@protoc_insertion_point(builder_scope:POGOProtos.Networking.Requests.Messages.RegisterPushNotificationMessage)
}
// @@protoc_insertion_point(class_scope:POGOProtos.Networking.Requests.Messages.RegisterPushNotificationMessage)
private static final POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage();
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public RegisterPushNotificationMessage parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new RegisterPushNotificationMessage(input, extensionRegistry);
}
};
public static com.google.protobuf.Parser parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
@java.lang.Override
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
public interface UpdateNotificationStatusMessageOrBuilder extends
// @@protoc_insertion_point(interface_extends:POGOProtos.Networking.Requests.Messages.UpdateNotificationStatusMessage)
com.google.protobuf.MessageOrBuilder {
/**
* repeated string notification_ids = 1;
*/
java.util.List
getNotificationIdsList();
/**
* repeated string notification_ids = 1;
*/
int getNotificationIdsCount();
/**
* repeated string notification_ids = 1;
*/
java.lang.String getNotificationIds(int index);
/**
* repeated string notification_ids = 1;
*/
com.google.protobuf.ByteString
getNotificationIdsBytes(int index);
/**
* repeated int64 create_timestamp_ms = 2;
*/
java.util.List getCreateTimestampMsList();
/**
* repeated int64 create_timestamp_ms = 2;
*/
int getCreateTimestampMsCount();
/**
* repeated int64 create_timestamp_ms = 2;
*/
long getCreateTimestampMs(int index);
/**
* .POGOProtos.Enums.NotificationState state = 3;
*/
int getStateValue();
/**
* .POGOProtos.Enums.NotificationState state = 3;
*/
POGOProtos.Enums.NotificationStateOuterClass.NotificationState getState();
}
/**
* Protobuf type {@code POGOProtos.Networking.Requests.Messages.UpdateNotificationStatusMessage}
*/
public static final class UpdateNotificationStatusMessage extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:POGOProtos.Networking.Requests.Messages.UpdateNotificationStatusMessage)
UpdateNotificationStatusMessageOrBuilder {
private static final long serialVersionUID = 0L;
// Use UpdateNotificationStatusMessage.newBuilder() to construct.
private UpdateNotificationStatusMessage(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private UpdateNotificationStatusMessage() {
notificationIds_ = com.google.protobuf.LazyStringArrayList.EMPTY;
createTimestampMs_ = java.util.Collections.emptyList();
state_ = 0;
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private UpdateNotificationStatusMessage(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
this();
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
int mutable_bitField0_ = 0;
com.google.protobuf.UnknownFieldSet.Builder unknownFields =
com.google.protobuf.UnknownFieldSet.newBuilder();
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 10: {
java.lang.String s = input.readStringRequireUtf8();
if (!((mutable_bitField0_ & 0x00000001) == 0x00000001)) {
notificationIds_ = new com.google.protobuf.LazyStringArrayList();
mutable_bitField0_ |= 0x00000001;
}
notificationIds_.add(s);
break;
}
case 16: {
if (!((mutable_bitField0_ & 0x00000002) == 0x00000002)) {
createTimestampMs_ = new java.util.ArrayList();
mutable_bitField0_ |= 0x00000002;
}
createTimestampMs_.add(input.readInt64());
break;
}
case 18: {
int length = input.readRawVarint32();
int limit = input.pushLimit(length);
if (!((mutable_bitField0_ & 0x00000002) == 0x00000002) && input.getBytesUntilLimit() > 0) {
createTimestampMs_ = new java.util.ArrayList();
mutable_bitField0_ |= 0x00000002;
}
while (input.getBytesUntilLimit() > 0) {
createTimestampMs_.add(input.readInt64());
}
input.popLimit(limit);
break;
}
case 24: {
int rawValue = input.readEnum();
state_ = rawValue;
break;
}
default: {
if (!parseUnknownFieldProto3(
input, unknownFields, extensionRegistry, tag)) {
done = true;
}
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e).setUnfinishedMessage(this);
} finally {
if (((mutable_bitField0_ & 0x00000001) == 0x00000001)) {
notificationIds_ = notificationIds_.getUnmodifiableView();
}
if (((mutable_bitField0_ & 0x00000002) == 0x00000002)) {
createTimestampMs_ = java.util.Collections.unmodifiableList(createTimestampMs_);
}
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_UpdateNotificationStatusMessage_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_UpdateNotificationStatusMessage_fieldAccessorTable
.ensureFieldAccessorsInitialized(
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.UpdateNotificationStatusMessage.class, POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.UpdateNotificationStatusMessage.Builder.class);
}
private int bitField0_;
public static final int NOTIFICATION_IDS_FIELD_NUMBER = 1;
private com.google.protobuf.LazyStringList notificationIds_;
/**
* repeated string notification_ids = 1;
*/
public com.google.protobuf.ProtocolStringList
getNotificationIdsList() {
return notificationIds_;
}
/**
* repeated string notification_ids = 1;
*/
public int getNotificationIdsCount() {
return notificationIds_.size();
}
/**
* repeated string notification_ids = 1;
*/
public java.lang.String getNotificationIds(int index) {
return notificationIds_.get(index);
}
/**
* repeated string notification_ids = 1;
*/
public com.google.protobuf.ByteString
getNotificationIdsBytes(int index) {
return notificationIds_.getByteString(index);
}
public static final int CREATE_TIMESTAMP_MS_FIELD_NUMBER = 2;
private java.util.List createTimestampMs_;
/**
* repeated int64 create_timestamp_ms = 2;
*/
public java.util.List
getCreateTimestampMsList() {
return createTimestampMs_;
}
/**
* repeated int64 create_timestamp_ms = 2;
*/
public int getCreateTimestampMsCount() {
return createTimestampMs_.size();
}
/**
* repeated int64 create_timestamp_ms = 2;
*/
public long getCreateTimestampMs(int index) {
return createTimestampMs_.get(index);
}
private int createTimestampMsMemoizedSerializedSize = -1;
public static final int STATE_FIELD_NUMBER = 3;
private int state_;
/**
* .POGOProtos.Enums.NotificationState state = 3;
*/
public int getStateValue() {
return state_;
}
/**
* .POGOProtos.Enums.NotificationState state = 3;
*/
public POGOProtos.Enums.NotificationStateOuterClass.NotificationState getState() {
@SuppressWarnings("deprecation")
POGOProtos.Enums.NotificationStateOuterClass.NotificationState result = POGOProtos.Enums.NotificationStateOuterClass.NotificationState.valueOf(state_);
return result == null ? POGOProtos.Enums.NotificationStateOuterClass.NotificationState.UNRECOGNIZED : result;
}
private byte memoizedIsInitialized = -1;
@java.lang.Override
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
@java.lang.Override
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
getSerializedSize();
for (int i = 0; i < notificationIds_.size(); i++) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 1, notificationIds_.getRaw(i));
}
if (getCreateTimestampMsList().size() > 0) {
output.writeUInt32NoTag(18);
output.writeUInt32NoTag(createTimestampMsMemoizedSerializedSize);
}
for (int i = 0; i < createTimestampMs_.size(); i++) {
output.writeInt64NoTag(createTimestampMs_.get(i));
}
if (state_ != POGOProtos.Enums.NotificationStateOuterClass.NotificationState.UNSET_STATE.getNumber()) {
output.writeEnum(3, state_);
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
{
int dataSize = 0;
for (int i = 0; i < notificationIds_.size(); i++) {
dataSize += computeStringSizeNoTag(notificationIds_.getRaw(i));
}
size += dataSize;
size += 1 * getNotificationIdsList().size();
}
{
int dataSize = 0;
for (int i = 0; i < createTimestampMs_.size(); i++) {
dataSize += com.google.protobuf.CodedOutputStream
.computeInt64SizeNoTag(createTimestampMs_.get(i));
}
size += dataSize;
if (!getCreateTimestampMsList().isEmpty()) {
size += 1;
size += com.google.protobuf.CodedOutputStream
.computeInt32SizeNoTag(dataSize);
}
createTimestampMsMemoizedSerializedSize = dataSize;
}
if (state_ != POGOProtos.Enums.NotificationStateOuterClass.NotificationState.UNSET_STATE.getNumber()) {
size += com.google.protobuf.CodedOutputStream
.computeEnumSize(3, state_);
}
size += unknownFields.getSerializedSize();
memoizedSize = size;
return size;
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.UpdateNotificationStatusMessage)) {
return super.equals(obj);
}
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.UpdateNotificationStatusMessage other = (POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.UpdateNotificationStatusMessage) obj;
boolean result = true;
result = result && getNotificationIdsList()
.equals(other.getNotificationIdsList());
result = result && getCreateTimestampMsList()
.equals(other.getCreateTimestampMsList());
result = result && state_ == other.state_;
result = result && unknownFields.equals(other.unknownFields);
return result;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
if (getNotificationIdsCount() > 0) {
hash = (37 * hash) + NOTIFICATION_IDS_FIELD_NUMBER;
hash = (53 * hash) + getNotificationIdsList().hashCode();
}
if (getCreateTimestampMsCount() > 0) {
hash = (37 * hash) + CREATE_TIMESTAMP_MS_FIELD_NUMBER;
hash = (53 * hash) + getCreateTimestampMsList().hashCode();
}
hash = (37 * hash) + STATE_FIELD_NUMBER;
hash = (53 * hash) + state_;
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.UpdateNotificationStatusMessage parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.UpdateNotificationStatusMessage parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.UpdateNotificationStatusMessage parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.UpdateNotificationStatusMessage parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.UpdateNotificationStatusMessage parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.UpdateNotificationStatusMessage parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.UpdateNotificationStatusMessage parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.UpdateNotificationStatusMessage parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.UpdateNotificationStatusMessage parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.UpdateNotificationStatusMessage parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.UpdateNotificationStatusMessage parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.UpdateNotificationStatusMessage parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
@java.lang.Override
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder() {
return DEFAULT_INSTANCE.toBuilder();
}
public static Builder newBuilder(POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.UpdateNotificationStatusMessage prototype) {
return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
}
@java.lang.Override
public Builder toBuilder() {
return this == DEFAULT_INSTANCE
? new Builder() : new Builder().mergeFrom(this);
}
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
* Protobuf type {@code POGOProtos.Networking.Requests.Messages.UpdateNotificationStatusMessage}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:POGOProtos.Networking.Requests.Messages.UpdateNotificationStatusMessage)
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.UpdateNotificationStatusMessageOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_UpdateNotificationStatusMessage_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_UpdateNotificationStatusMessage_fieldAccessorTable
.ensureFieldAccessorsInitialized(
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.UpdateNotificationStatusMessage.class, POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.UpdateNotificationStatusMessage.Builder.class);
}
// Construct using POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.UpdateNotificationStatusMessage.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
}
}
@java.lang.Override
public Builder clear() {
super.clear();
notificationIds_ = com.google.protobuf.LazyStringArrayList.EMPTY;
bitField0_ = (bitField0_ & ~0x00000001);
createTimestampMs_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000002);
state_ = 0;
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_UpdateNotificationStatusMessage_descriptor;
}
@java.lang.Override
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.UpdateNotificationStatusMessage getDefaultInstanceForType() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.UpdateNotificationStatusMessage.getDefaultInstance();
}
@java.lang.Override
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.UpdateNotificationStatusMessage build() {
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.UpdateNotificationStatusMessage result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.UpdateNotificationStatusMessage buildPartial() {
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.UpdateNotificationStatusMessage result = new POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.UpdateNotificationStatusMessage(this);
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((bitField0_ & 0x00000001) == 0x00000001)) {
notificationIds_ = notificationIds_.getUnmodifiableView();
bitField0_ = (bitField0_ & ~0x00000001);
}
result.notificationIds_ = notificationIds_;
if (((bitField0_ & 0x00000002) == 0x00000002)) {
createTimestampMs_ = java.util.Collections.unmodifiableList(createTimestampMs_);
bitField0_ = (bitField0_ & ~0x00000002);
}
result.createTimestampMs_ = createTimestampMs_;
result.state_ = state_;
result.bitField0_ = to_bitField0_;
onBuilt();
return result;
}
@java.lang.Override
public Builder clone() {
return (Builder) super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.setField(field, value);
}
@java.lang.Override
public Builder clearField(
com.google.protobuf.Descriptors.FieldDescriptor field) {
return (Builder) super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(
com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return (Builder) super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index, java.lang.Object value) {
return (Builder) super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.UpdateNotificationStatusMessage) {
return mergeFrom((POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.UpdateNotificationStatusMessage)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.UpdateNotificationStatusMessage other) {
if (other == POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.UpdateNotificationStatusMessage.getDefaultInstance()) return this;
if (!other.notificationIds_.isEmpty()) {
if (notificationIds_.isEmpty()) {
notificationIds_ = other.notificationIds_;
bitField0_ = (bitField0_ & ~0x00000001);
} else {
ensureNotificationIdsIsMutable();
notificationIds_.addAll(other.notificationIds_);
}
onChanged();
}
if (!other.createTimestampMs_.isEmpty()) {
if (createTimestampMs_.isEmpty()) {
createTimestampMs_ = other.createTimestampMs_;
bitField0_ = (bitField0_ & ~0x00000002);
} else {
ensureCreateTimestampMsIsMutable();
createTimestampMs_.addAll(other.createTimestampMs_);
}
onChanged();
}
if (other.state_ != 0) {
setStateValue(other.getStateValue());
}
this.mergeUnknownFields(other.unknownFields);
onChanged();
return this;
}
@java.lang.Override
public final boolean isInitialized() {
return true;
}
@java.lang.Override
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.UpdateNotificationStatusMessage parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.UpdateNotificationStatusMessage) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
private com.google.protobuf.LazyStringList notificationIds_ = com.google.protobuf.LazyStringArrayList.EMPTY;
private void ensureNotificationIdsIsMutable() {
if (!((bitField0_ & 0x00000001) == 0x00000001)) {
notificationIds_ = new com.google.protobuf.LazyStringArrayList(notificationIds_);
bitField0_ |= 0x00000001;
}
}
/**
* repeated string notification_ids = 1;
*/
public com.google.protobuf.ProtocolStringList
getNotificationIdsList() {
return notificationIds_.getUnmodifiableView();
}
/**
* repeated string notification_ids = 1;
*/
public int getNotificationIdsCount() {
return notificationIds_.size();
}
/**
* repeated string notification_ids = 1;
*/
public java.lang.String getNotificationIds(int index) {
return notificationIds_.get(index);
}
/**
* repeated string notification_ids = 1;
*/
public com.google.protobuf.ByteString
getNotificationIdsBytes(int index) {
return notificationIds_.getByteString(index);
}
/**
* repeated string notification_ids = 1;
*/
public Builder setNotificationIds(
int index, java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
ensureNotificationIdsIsMutable();
notificationIds_.set(index, value);
onChanged();
return this;
}
/**
* repeated string notification_ids = 1;
*/
public Builder addNotificationIds(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
ensureNotificationIdsIsMutable();
notificationIds_.add(value);
onChanged();
return this;
}
/**
* repeated string notification_ids = 1;
*/
public Builder addAllNotificationIds(
java.lang.Iterable values) {
ensureNotificationIdsIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, notificationIds_);
onChanged();
return this;
}
/**
* repeated string notification_ids = 1;
*/
public Builder clearNotificationIds() {
notificationIds_ = com.google.protobuf.LazyStringArrayList.EMPTY;
bitField0_ = (bitField0_ & ~0x00000001);
onChanged();
return this;
}
/**
* repeated string notification_ids = 1;
*/
public Builder addNotificationIdsBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
ensureNotificationIdsIsMutable();
notificationIds_.add(value);
onChanged();
return this;
}
private java.util.List createTimestampMs_ = java.util.Collections.emptyList();
private void ensureCreateTimestampMsIsMutable() {
if (!((bitField0_ & 0x00000002) == 0x00000002)) {
createTimestampMs_ = new java.util.ArrayList(createTimestampMs_);
bitField0_ |= 0x00000002;
}
}
/**
* repeated int64 create_timestamp_ms = 2;
*/
public java.util.List
getCreateTimestampMsList() {
return java.util.Collections.unmodifiableList(createTimestampMs_);
}
/**
* repeated int64 create_timestamp_ms = 2;
*/
public int getCreateTimestampMsCount() {
return createTimestampMs_.size();
}
/**
* repeated int64 create_timestamp_ms = 2;
*/
public long getCreateTimestampMs(int index) {
return createTimestampMs_.get(index);
}
/**
* repeated int64 create_timestamp_ms = 2;
*/
public Builder setCreateTimestampMs(
int index, long value) {
ensureCreateTimestampMsIsMutable();
createTimestampMs_.set(index, value);
onChanged();
return this;
}
/**
* repeated int64 create_timestamp_ms = 2;
*/
public Builder addCreateTimestampMs(long value) {
ensureCreateTimestampMsIsMutable();
createTimestampMs_.add(value);
onChanged();
return this;
}
/**
* repeated int64 create_timestamp_ms = 2;
*/
public Builder addAllCreateTimestampMs(
java.lang.Iterable extends java.lang.Long> values) {
ensureCreateTimestampMsIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, createTimestampMs_);
onChanged();
return this;
}
/**
* repeated int64 create_timestamp_ms = 2;
*/
public Builder clearCreateTimestampMs() {
createTimestampMs_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000002);
onChanged();
return this;
}
private int state_ = 0;
/**
* .POGOProtos.Enums.NotificationState state = 3;
*/
public int getStateValue() {
return state_;
}
/**
* .POGOProtos.Enums.NotificationState state = 3;
*/
public Builder setStateValue(int value) {
state_ = value;
onChanged();
return this;
}
/**
* .POGOProtos.Enums.NotificationState state = 3;
*/
public POGOProtos.Enums.NotificationStateOuterClass.NotificationState getState() {
@SuppressWarnings("deprecation")
POGOProtos.Enums.NotificationStateOuterClass.NotificationState result = POGOProtos.Enums.NotificationStateOuterClass.NotificationState.valueOf(state_);
return result == null ? POGOProtos.Enums.NotificationStateOuterClass.NotificationState.UNRECOGNIZED : result;
}
/**
* .POGOProtos.Enums.NotificationState state = 3;
*/
public Builder setState(POGOProtos.Enums.NotificationStateOuterClass.NotificationState value) {
if (value == null) {
throw new NullPointerException();
}
state_ = value.getNumber();
onChanged();
return this;
}
/**
* .POGOProtos.Enums.NotificationState state = 3;
*/
public Builder clearState() {
state_ = 0;
onChanged();
return this;
}
@java.lang.Override
public final Builder setUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.setUnknownFieldsProto3(unknownFields);
}
@java.lang.Override
public final Builder mergeUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.mergeUnknownFields(unknownFields);
}
// @@protoc_insertion_point(builder_scope:POGOProtos.Networking.Requests.Messages.UpdateNotificationStatusMessage)
}
// @@protoc_insertion_point(class_scope:POGOProtos.Networking.Requests.Messages.UpdateNotificationStatusMessage)
private static final POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.UpdateNotificationStatusMessage DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.UpdateNotificationStatusMessage();
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.UpdateNotificationStatusMessage getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public UpdateNotificationStatusMessage parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new UpdateNotificationStatusMessage(input, extensionRegistry);
}
};
public static com.google.protobuf.Parser parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
@java.lang.Override
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.UpdateNotificationStatusMessage getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
public interface OptOutPushNotificationCategoryMessageOrBuilder extends
// @@protoc_insertion_point(interface_extends:POGOProtos.Networking.Requests.Messages.OptOutPushNotificationCategoryMessage)
com.google.protobuf.MessageOrBuilder {
/**
* repeated string categories = 1;
*/
java.util.List
getCategoriesList();
/**
* repeated string categories = 1;
*/
int getCategoriesCount();
/**
* repeated string categories = 1;
*/
java.lang.String getCategories(int index);
/**
* repeated string categories = 1;
*/
com.google.protobuf.ByteString
getCategoriesBytes(int index);
}
/**
* Protobuf type {@code POGOProtos.Networking.Requests.Messages.OptOutPushNotificationCategoryMessage}
*/
public static final class OptOutPushNotificationCategoryMessage extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:POGOProtos.Networking.Requests.Messages.OptOutPushNotificationCategoryMessage)
OptOutPushNotificationCategoryMessageOrBuilder {
private static final long serialVersionUID = 0L;
// Use OptOutPushNotificationCategoryMessage.newBuilder() to construct.
private OptOutPushNotificationCategoryMessage(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private OptOutPushNotificationCategoryMessage() {
categories_ = com.google.protobuf.LazyStringArrayList.EMPTY;
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private OptOutPushNotificationCategoryMessage(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
this();
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
int mutable_bitField0_ = 0;
com.google.protobuf.UnknownFieldSet.Builder unknownFields =
com.google.protobuf.UnknownFieldSet.newBuilder();
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 10: {
java.lang.String s = input.readStringRequireUtf8();
if (!((mutable_bitField0_ & 0x00000001) == 0x00000001)) {
categories_ = new com.google.protobuf.LazyStringArrayList();
mutable_bitField0_ |= 0x00000001;
}
categories_.add(s);
break;
}
default: {
if (!parseUnknownFieldProto3(
input, unknownFields, extensionRegistry, tag)) {
done = true;
}
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e).setUnfinishedMessage(this);
} finally {
if (((mutable_bitField0_ & 0x00000001) == 0x00000001)) {
categories_ = categories_.getUnmodifiableView();
}
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_OptOutPushNotificationCategoryMessage_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_OptOutPushNotificationCategoryMessage_fieldAccessorTable
.ensureFieldAccessorsInitialized(
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.OptOutPushNotificationCategoryMessage.class, POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.OptOutPushNotificationCategoryMessage.Builder.class);
}
public static final int CATEGORIES_FIELD_NUMBER = 1;
private com.google.protobuf.LazyStringList categories_;
/**
* repeated string categories = 1;
*/
public com.google.protobuf.ProtocolStringList
getCategoriesList() {
return categories_;
}
/**
* repeated string categories = 1;
*/
public int getCategoriesCount() {
return categories_.size();
}
/**
* repeated string categories = 1;
*/
public java.lang.String getCategories(int index) {
return categories_.get(index);
}
/**
* repeated string categories = 1;
*/
public com.google.protobuf.ByteString
getCategoriesBytes(int index) {
return categories_.getByteString(index);
}
private byte memoizedIsInitialized = -1;
@java.lang.Override
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
@java.lang.Override
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
for (int i = 0; i < categories_.size(); i++) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 1, categories_.getRaw(i));
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
{
int dataSize = 0;
for (int i = 0; i < categories_.size(); i++) {
dataSize += computeStringSizeNoTag(categories_.getRaw(i));
}
size += dataSize;
size += 1 * getCategoriesList().size();
}
size += unknownFields.getSerializedSize();
memoizedSize = size;
return size;
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.OptOutPushNotificationCategoryMessage)) {
return super.equals(obj);
}
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.OptOutPushNotificationCategoryMessage other = (POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.OptOutPushNotificationCategoryMessage) obj;
boolean result = true;
result = result && getCategoriesList()
.equals(other.getCategoriesList());
result = result && unknownFields.equals(other.unknownFields);
return result;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
if (getCategoriesCount() > 0) {
hash = (37 * hash) + CATEGORIES_FIELD_NUMBER;
hash = (53 * hash) + getCategoriesList().hashCode();
}
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.OptOutPushNotificationCategoryMessage parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.OptOutPushNotificationCategoryMessage parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.OptOutPushNotificationCategoryMessage parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.OptOutPushNotificationCategoryMessage parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.OptOutPushNotificationCategoryMessage parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.OptOutPushNotificationCategoryMessage parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.OptOutPushNotificationCategoryMessage parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.OptOutPushNotificationCategoryMessage parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.OptOutPushNotificationCategoryMessage parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.OptOutPushNotificationCategoryMessage parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.OptOutPushNotificationCategoryMessage parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.OptOutPushNotificationCategoryMessage parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
@java.lang.Override
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder() {
return DEFAULT_INSTANCE.toBuilder();
}
public static Builder newBuilder(POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.OptOutPushNotificationCategoryMessage prototype) {
return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
}
@java.lang.Override
public Builder toBuilder() {
return this == DEFAULT_INSTANCE
? new Builder() : new Builder().mergeFrom(this);
}
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
* Protobuf type {@code POGOProtos.Networking.Requests.Messages.OptOutPushNotificationCategoryMessage}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:POGOProtos.Networking.Requests.Messages.OptOutPushNotificationCategoryMessage)
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.OptOutPushNotificationCategoryMessageOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_OptOutPushNotificationCategoryMessage_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_OptOutPushNotificationCategoryMessage_fieldAccessorTable
.ensureFieldAccessorsInitialized(
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.OptOutPushNotificationCategoryMessage.class, POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.OptOutPushNotificationCategoryMessage.Builder.class);
}
// Construct using POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.OptOutPushNotificationCategoryMessage.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
}
}
@java.lang.Override
public Builder clear() {
super.clear();
categories_ = com.google.protobuf.LazyStringArrayList.EMPTY;
bitField0_ = (bitField0_ & ~0x00000001);
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_OptOutPushNotificationCategoryMessage_descriptor;
}
@java.lang.Override
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.OptOutPushNotificationCategoryMessage getDefaultInstanceForType() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.OptOutPushNotificationCategoryMessage.getDefaultInstance();
}
@java.lang.Override
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.OptOutPushNotificationCategoryMessage build() {
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.OptOutPushNotificationCategoryMessage result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.OptOutPushNotificationCategoryMessage buildPartial() {
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.OptOutPushNotificationCategoryMessage result = new POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.OptOutPushNotificationCategoryMessage(this);
int from_bitField0_ = bitField0_;
if (((bitField0_ & 0x00000001) == 0x00000001)) {
categories_ = categories_.getUnmodifiableView();
bitField0_ = (bitField0_ & ~0x00000001);
}
result.categories_ = categories_;
onBuilt();
return result;
}
@java.lang.Override
public Builder clone() {
return (Builder) super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.setField(field, value);
}
@java.lang.Override
public Builder clearField(
com.google.protobuf.Descriptors.FieldDescriptor field) {
return (Builder) super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(
com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return (Builder) super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index, java.lang.Object value) {
return (Builder) super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.OptOutPushNotificationCategoryMessage) {
return mergeFrom((POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.OptOutPushNotificationCategoryMessage)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.OptOutPushNotificationCategoryMessage other) {
if (other == POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.OptOutPushNotificationCategoryMessage.getDefaultInstance()) return this;
if (!other.categories_.isEmpty()) {
if (categories_.isEmpty()) {
categories_ = other.categories_;
bitField0_ = (bitField0_ & ~0x00000001);
} else {
ensureCategoriesIsMutable();
categories_.addAll(other.categories_);
}
onChanged();
}
this.mergeUnknownFields(other.unknownFields);
onChanged();
return this;
}
@java.lang.Override
public final boolean isInitialized() {
return true;
}
@java.lang.Override
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.OptOutPushNotificationCategoryMessage parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.OptOutPushNotificationCategoryMessage) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
private com.google.protobuf.LazyStringList categories_ = com.google.protobuf.LazyStringArrayList.EMPTY;
private void ensureCategoriesIsMutable() {
if (!((bitField0_ & 0x00000001) == 0x00000001)) {
categories_ = new com.google.protobuf.LazyStringArrayList(categories_);
bitField0_ |= 0x00000001;
}
}
/**
* repeated string categories = 1;
*/
public com.google.protobuf.ProtocolStringList
getCategoriesList() {
return categories_.getUnmodifiableView();
}
/**
* repeated string categories = 1;
*/
public int getCategoriesCount() {
return categories_.size();
}
/**
* repeated string categories = 1;
*/
public java.lang.String getCategories(int index) {
return categories_.get(index);
}
/**
* repeated string categories = 1;
*/
public com.google.protobuf.ByteString
getCategoriesBytes(int index) {
return categories_.getByteString(index);
}
/**
* repeated string categories = 1;
*/
public Builder setCategories(
int index, java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
ensureCategoriesIsMutable();
categories_.set(index, value);
onChanged();
return this;
}
/**
* repeated string categories = 1;
*/
public Builder addCategories(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
ensureCategoriesIsMutable();
categories_.add(value);
onChanged();
return this;
}
/**
* repeated string categories = 1;
*/
public Builder addAllCategories(
java.lang.Iterable values) {
ensureCategoriesIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, categories_);
onChanged();
return this;
}
/**
* repeated string categories = 1;
*/
public Builder clearCategories() {
categories_ = com.google.protobuf.LazyStringArrayList.EMPTY;
bitField0_ = (bitField0_ & ~0x00000001);
onChanged();
return this;
}
/**
* repeated string categories = 1;
*/
public Builder addCategoriesBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
ensureCategoriesIsMutable();
categories_.add(value);
onChanged();
return this;
}
@java.lang.Override
public final Builder setUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.setUnknownFieldsProto3(unknownFields);
}
@java.lang.Override
public final Builder mergeUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.mergeUnknownFields(unknownFields);
}
// @@protoc_insertion_point(builder_scope:POGOProtos.Networking.Requests.Messages.OptOutPushNotificationCategoryMessage)
}
// @@protoc_insertion_point(class_scope:POGOProtos.Networking.Requests.Messages.OptOutPushNotificationCategoryMessage)
private static final POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.OptOutPushNotificationCategoryMessage DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.OptOutPushNotificationCategoryMessage();
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.OptOutPushNotificationCategoryMessage getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public OptOutPushNotificationCategoryMessage parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new OptOutPushNotificationCategoryMessage(input, extensionRegistry);
}
};
public static com.google.protobuf.Parser parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
@java.lang.Override
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.OptOutPushNotificationCategoryMessage getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
public interface RedeemPasscodeMessageOrBuilder extends
// @@protoc_insertion_point(interface_extends:POGOProtos.Networking.Requests.Messages.RedeemPasscodeMessage)
com.google.protobuf.MessageOrBuilder {
/**
* string passcode = 1;
*/
java.lang.String getPasscode();
/**
* string passcode = 1;
*/
com.google.protobuf.ByteString
getPasscodeBytes();
}
/**
* Protobuf type {@code POGOProtos.Networking.Requests.Messages.RedeemPasscodeMessage}
*/
public static final class RedeemPasscodeMessage extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:POGOProtos.Networking.Requests.Messages.RedeemPasscodeMessage)
RedeemPasscodeMessageOrBuilder {
private static final long serialVersionUID = 0L;
// Use RedeemPasscodeMessage.newBuilder() to construct.
private RedeemPasscodeMessage(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private RedeemPasscodeMessage() {
passcode_ = "";
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private RedeemPasscodeMessage(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
this();
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
int mutable_bitField0_ = 0;
com.google.protobuf.UnknownFieldSet.Builder unknownFields =
com.google.protobuf.UnknownFieldSet.newBuilder();
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 10: {
java.lang.String s = input.readStringRequireUtf8();
passcode_ = s;
break;
}
default: {
if (!parseUnknownFieldProto3(
input, unknownFields, extensionRegistry, tag)) {
done = true;
}
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e).setUnfinishedMessage(this);
} finally {
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_RedeemPasscodeMessage_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_RedeemPasscodeMessage_fieldAccessorTable
.ensureFieldAccessorsInitialized(
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RedeemPasscodeMessage.class, POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RedeemPasscodeMessage.Builder.class);
}
public static final int PASSCODE_FIELD_NUMBER = 1;
private volatile java.lang.Object passcode_;
/**
* string passcode = 1;
*/
public java.lang.String getPasscode() {
java.lang.Object ref = passcode_;
if (ref instanceof java.lang.String) {
return (java.lang.String) ref;
} else {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
passcode_ = s;
return s;
}
}
/**
* string passcode = 1;
*/
public com.google.protobuf.ByteString
getPasscodeBytes() {
java.lang.Object ref = passcode_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
passcode_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
private byte memoizedIsInitialized = -1;
@java.lang.Override
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
@java.lang.Override
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
if (!getPasscodeBytes().isEmpty()) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 1, passcode_);
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (!getPasscodeBytes().isEmpty()) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, passcode_);
}
size += unknownFields.getSerializedSize();
memoizedSize = size;
return size;
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RedeemPasscodeMessage)) {
return super.equals(obj);
}
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RedeemPasscodeMessage other = (POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RedeemPasscodeMessage) obj;
boolean result = true;
result = result && getPasscode()
.equals(other.getPasscode());
result = result && unknownFields.equals(other.unknownFields);
return result;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
hash = (37 * hash) + PASSCODE_FIELD_NUMBER;
hash = (53 * hash) + getPasscode().hashCode();
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RedeemPasscodeMessage parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RedeemPasscodeMessage parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RedeemPasscodeMessage parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RedeemPasscodeMessage parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RedeemPasscodeMessage parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RedeemPasscodeMessage parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RedeemPasscodeMessage parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RedeemPasscodeMessage parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RedeemPasscodeMessage parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RedeemPasscodeMessage parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RedeemPasscodeMessage parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RedeemPasscodeMessage parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
@java.lang.Override
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder() {
return DEFAULT_INSTANCE.toBuilder();
}
public static Builder newBuilder(POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RedeemPasscodeMessage prototype) {
return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
}
@java.lang.Override
public Builder toBuilder() {
return this == DEFAULT_INSTANCE
? new Builder() : new Builder().mergeFrom(this);
}
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
* Protobuf type {@code POGOProtos.Networking.Requests.Messages.RedeemPasscodeMessage}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:POGOProtos.Networking.Requests.Messages.RedeemPasscodeMessage)
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RedeemPasscodeMessageOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_RedeemPasscodeMessage_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_RedeemPasscodeMessage_fieldAccessorTable
.ensureFieldAccessorsInitialized(
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RedeemPasscodeMessage.class, POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RedeemPasscodeMessage.Builder.class);
}
// Construct using POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RedeemPasscodeMessage.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
}
}
@java.lang.Override
public Builder clear() {
super.clear();
passcode_ = "";
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_RedeemPasscodeMessage_descriptor;
}
@java.lang.Override
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RedeemPasscodeMessage getDefaultInstanceForType() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RedeemPasscodeMessage.getDefaultInstance();
}
@java.lang.Override
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RedeemPasscodeMessage build() {
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RedeemPasscodeMessage result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RedeemPasscodeMessage buildPartial() {
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RedeemPasscodeMessage result = new POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RedeemPasscodeMessage(this);
result.passcode_ = passcode_;
onBuilt();
return result;
}
@java.lang.Override
public Builder clone() {
return (Builder) super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.setField(field, value);
}
@java.lang.Override
public Builder clearField(
com.google.protobuf.Descriptors.FieldDescriptor field) {
return (Builder) super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(
com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return (Builder) super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index, java.lang.Object value) {
return (Builder) super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RedeemPasscodeMessage) {
return mergeFrom((POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RedeemPasscodeMessage)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RedeemPasscodeMessage other) {
if (other == POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RedeemPasscodeMessage.getDefaultInstance()) return this;
if (!other.getPasscode().isEmpty()) {
passcode_ = other.passcode_;
onChanged();
}
this.mergeUnknownFields(other.unknownFields);
onChanged();
return this;
}
@java.lang.Override
public final boolean isInitialized() {
return true;
}
@java.lang.Override
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RedeemPasscodeMessage parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RedeemPasscodeMessage) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private java.lang.Object passcode_ = "";
/**
* string passcode = 1;
*/
public java.lang.String getPasscode() {
java.lang.Object ref = passcode_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
passcode_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* string passcode = 1;
*/
public com.google.protobuf.ByteString
getPasscodeBytes() {
java.lang.Object ref = passcode_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
passcode_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* string passcode = 1;
*/
public Builder setPasscode(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
passcode_ = value;
onChanged();
return this;
}
/**
* string passcode = 1;
*/
public Builder clearPasscode() {
passcode_ = getDefaultInstance().getPasscode();
onChanged();
return this;
}
/**
* string passcode = 1;
*/
public Builder setPasscodeBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
passcode_ = value;
onChanged();
return this;
}
@java.lang.Override
public final Builder setUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.setUnknownFieldsProto3(unknownFields);
}
@java.lang.Override
public final Builder mergeUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.mergeUnknownFields(unknownFields);
}
// @@protoc_insertion_point(builder_scope:POGOProtos.Networking.Requests.Messages.RedeemPasscodeMessage)
}
// @@protoc_insertion_point(class_scope:POGOProtos.Networking.Requests.Messages.RedeemPasscodeMessage)
private static final POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RedeemPasscodeMessage DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RedeemPasscodeMessage();
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RedeemPasscodeMessage getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public RedeemPasscodeMessage parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new RedeemPasscodeMessage(input, extensionRegistry);
}
};
public static com.google.protobuf.Parser parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
@java.lang.Override
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RedeemPasscodeMessage getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
public interface AddNewPoiMessageOrBuilder extends
// @@protoc_insertion_point(interface_extends:POGOProtos.Networking.Requests.Messages.AddNewPoiMessage)
com.google.protobuf.MessageOrBuilder {
/**
* string title = 1;
*/
java.lang.String getTitle();
/**
* string title = 1;
*/
com.google.protobuf.ByteString
getTitleBytes();
/**
* string long_description = 2;
*/
java.lang.String getLongDescription();
/**
* string long_description = 2;
*/
com.google.protobuf.ByteString
getLongDescriptionBytes();
/**
* string image_gs_file_path = 3;
*/
java.lang.String getImageGsFilePath();
/**
* string image_gs_file_path = 3;
*/
com.google.protobuf.ByteString
getImageGsFilePathBytes();
/**
* int32 lat_e6 = 4;
*/
int getLatE6();
/**
* int32 lng_e6 = 5;
*/
int getLngE6();
/**
* string image_serving_url = 6;
*/
java.lang.String getImageServingUrl();
/**
* string image_serving_url = 6;
*/
com.google.protobuf.ByteString
getImageServingUrlBytes();
/**
* string user_id = 7;
*/
java.lang.String getUserId();
/**
* string user_id = 7;
*/
com.google.protobuf.ByteString
getUserIdBytes();
/**
* string player_language = 8;
*/
java.lang.String getPlayerLanguage();
/**
* string player_language = 8;
*/
com.google.protobuf.ByteString
getPlayerLanguageBytes();
/**
* string game_unique_id = 9;
*/
java.lang.String getGameUniqueId();
/**
* string game_unique_id = 9;
*/
com.google.protobuf.ByteString
getGameUniqueIdBytes();
/**
* string app_id = 10;
*/
java.lang.String getAppId();
/**
* string app_id = 10;
*/
com.google.protobuf.ByteString
getAppIdBytes();
/**
* .POGOProtos.Data.Player.PlayerReputation player_reputation = 11;
*/
boolean hasPlayerReputation();
/**
* .POGOProtos.Data.Player.PlayerReputation player_reputation = 11;
*/
POGOProtos.Data.Player.PlayerReputationOuterClass.PlayerReputation getPlayerReputation();
/**
* .POGOProtos.Data.Player.PlayerReputation player_reputation = 11;
*/
POGOProtos.Data.Player.PlayerReputationOuterClass.PlayerReputationOrBuilder getPlayerReputationOrBuilder();
}
/**
* Protobuf type {@code POGOProtos.Networking.Requests.Messages.AddNewPoiMessage}
*/
public static final class AddNewPoiMessage extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:POGOProtos.Networking.Requests.Messages.AddNewPoiMessage)
AddNewPoiMessageOrBuilder {
private static final long serialVersionUID = 0L;
// Use AddNewPoiMessage.newBuilder() to construct.
private AddNewPoiMessage(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private AddNewPoiMessage() {
title_ = "";
longDescription_ = "";
imageGsFilePath_ = "";
latE6_ = 0;
lngE6_ = 0;
imageServingUrl_ = "";
userId_ = "";
playerLanguage_ = "";
gameUniqueId_ = "";
appId_ = "";
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private AddNewPoiMessage(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
this();
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
int mutable_bitField0_ = 0;
com.google.protobuf.UnknownFieldSet.Builder unknownFields =
com.google.protobuf.UnknownFieldSet.newBuilder();
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 10: {
java.lang.String s = input.readStringRequireUtf8();
title_ = s;
break;
}
case 18: {
java.lang.String s = input.readStringRequireUtf8();
longDescription_ = s;
break;
}
case 26: {
java.lang.String s = input.readStringRequireUtf8();
imageGsFilePath_ = s;
break;
}
case 32: {
latE6_ = input.readInt32();
break;
}
case 40: {
lngE6_ = input.readInt32();
break;
}
case 50: {
java.lang.String s = input.readStringRequireUtf8();
imageServingUrl_ = s;
break;
}
case 58: {
java.lang.String s = input.readStringRequireUtf8();
userId_ = s;
break;
}
case 66: {
java.lang.String s = input.readStringRequireUtf8();
playerLanguage_ = s;
break;
}
case 74: {
java.lang.String s = input.readStringRequireUtf8();
gameUniqueId_ = s;
break;
}
case 82: {
java.lang.String s = input.readStringRequireUtf8();
appId_ = s;
break;
}
case 90: {
POGOProtos.Data.Player.PlayerReputationOuterClass.PlayerReputation.Builder subBuilder = null;
if (playerReputation_ != null) {
subBuilder = playerReputation_.toBuilder();
}
playerReputation_ = input.readMessage(POGOProtos.Data.Player.PlayerReputationOuterClass.PlayerReputation.parser(), extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(playerReputation_);
playerReputation_ = subBuilder.buildPartial();
}
break;
}
default: {
if (!parseUnknownFieldProto3(
input, unknownFields, extensionRegistry, tag)) {
done = true;
}
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e).setUnfinishedMessage(this);
} finally {
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_AddNewPoiMessage_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_AddNewPoiMessage_fieldAccessorTable
.ensureFieldAccessorsInitialized(
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddNewPoiMessage.class, POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddNewPoiMessage.Builder.class);
}
public static final int TITLE_FIELD_NUMBER = 1;
private volatile java.lang.Object title_;
/**
* string title = 1;
*/
public java.lang.String getTitle() {
java.lang.Object ref = title_;
if (ref instanceof java.lang.String) {
return (java.lang.String) ref;
} else {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
title_ = s;
return s;
}
}
/**
* string title = 1;
*/
public com.google.protobuf.ByteString
getTitleBytes() {
java.lang.Object ref = title_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
title_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int LONG_DESCRIPTION_FIELD_NUMBER = 2;
private volatile java.lang.Object longDescription_;
/**
* string long_description = 2;
*/
public java.lang.String getLongDescription() {
java.lang.Object ref = longDescription_;
if (ref instanceof java.lang.String) {
return (java.lang.String) ref;
} else {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
longDescription_ = s;
return s;
}
}
/**
* string long_description = 2;
*/
public com.google.protobuf.ByteString
getLongDescriptionBytes() {
java.lang.Object ref = longDescription_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
longDescription_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int IMAGE_GS_FILE_PATH_FIELD_NUMBER = 3;
private volatile java.lang.Object imageGsFilePath_;
/**
* string image_gs_file_path = 3;
*/
public java.lang.String getImageGsFilePath() {
java.lang.Object ref = imageGsFilePath_;
if (ref instanceof java.lang.String) {
return (java.lang.String) ref;
} else {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
imageGsFilePath_ = s;
return s;
}
}
/**
* string image_gs_file_path = 3;
*/
public com.google.protobuf.ByteString
getImageGsFilePathBytes() {
java.lang.Object ref = imageGsFilePath_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
imageGsFilePath_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int LAT_E6_FIELD_NUMBER = 4;
private int latE6_;
/**
* int32 lat_e6 = 4;
*/
public int getLatE6() {
return latE6_;
}
public static final int LNG_E6_FIELD_NUMBER = 5;
private int lngE6_;
/**
* int32 lng_e6 = 5;
*/
public int getLngE6() {
return lngE6_;
}
public static final int IMAGE_SERVING_URL_FIELD_NUMBER = 6;
private volatile java.lang.Object imageServingUrl_;
/**
* string image_serving_url = 6;
*/
public java.lang.String getImageServingUrl() {
java.lang.Object ref = imageServingUrl_;
if (ref instanceof java.lang.String) {
return (java.lang.String) ref;
} else {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
imageServingUrl_ = s;
return s;
}
}
/**
* string image_serving_url = 6;
*/
public com.google.protobuf.ByteString
getImageServingUrlBytes() {
java.lang.Object ref = imageServingUrl_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
imageServingUrl_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int USER_ID_FIELD_NUMBER = 7;
private volatile java.lang.Object userId_;
/**
* string user_id = 7;
*/
public java.lang.String getUserId() {
java.lang.Object ref = userId_;
if (ref instanceof java.lang.String) {
return (java.lang.String) ref;
} else {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
userId_ = s;
return s;
}
}
/**
* string user_id = 7;
*/
public com.google.protobuf.ByteString
getUserIdBytes() {
java.lang.Object ref = userId_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
userId_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int PLAYER_LANGUAGE_FIELD_NUMBER = 8;
private volatile java.lang.Object playerLanguage_;
/**
* string player_language = 8;
*/
public java.lang.String getPlayerLanguage() {
java.lang.Object ref = playerLanguage_;
if (ref instanceof java.lang.String) {
return (java.lang.String) ref;
} else {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
playerLanguage_ = s;
return s;
}
}
/**
* string player_language = 8;
*/
public com.google.protobuf.ByteString
getPlayerLanguageBytes() {
java.lang.Object ref = playerLanguage_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
playerLanguage_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int GAME_UNIQUE_ID_FIELD_NUMBER = 9;
private volatile java.lang.Object gameUniqueId_;
/**
* string game_unique_id = 9;
*/
public java.lang.String getGameUniqueId() {
java.lang.Object ref = gameUniqueId_;
if (ref instanceof java.lang.String) {
return (java.lang.String) ref;
} else {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
gameUniqueId_ = s;
return s;
}
}
/**
* string game_unique_id = 9;
*/
public com.google.protobuf.ByteString
getGameUniqueIdBytes() {
java.lang.Object ref = gameUniqueId_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
gameUniqueId_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int APP_ID_FIELD_NUMBER = 10;
private volatile java.lang.Object appId_;
/**
* string app_id = 10;
*/
public java.lang.String getAppId() {
java.lang.Object ref = appId_;
if (ref instanceof java.lang.String) {
return (java.lang.String) ref;
} else {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
appId_ = s;
return s;
}
}
/**
* string app_id = 10;
*/
public com.google.protobuf.ByteString
getAppIdBytes() {
java.lang.Object ref = appId_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
appId_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int PLAYER_REPUTATION_FIELD_NUMBER = 11;
private POGOProtos.Data.Player.PlayerReputationOuterClass.PlayerReputation playerReputation_;
/**
* .POGOProtos.Data.Player.PlayerReputation player_reputation = 11;
*/
public boolean hasPlayerReputation() {
return playerReputation_ != null;
}
/**
* .POGOProtos.Data.Player.PlayerReputation player_reputation = 11;
*/
public POGOProtos.Data.Player.PlayerReputationOuterClass.PlayerReputation getPlayerReputation() {
return playerReputation_ == null ? POGOProtos.Data.Player.PlayerReputationOuterClass.PlayerReputation.getDefaultInstance() : playerReputation_;
}
/**
* .POGOProtos.Data.Player.PlayerReputation player_reputation = 11;
*/
public POGOProtos.Data.Player.PlayerReputationOuterClass.PlayerReputationOrBuilder getPlayerReputationOrBuilder() {
return getPlayerReputation();
}
private byte memoizedIsInitialized = -1;
@java.lang.Override
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
@java.lang.Override
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
if (!getTitleBytes().isEmpty()) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 1, title_);
}
if (!getLongDescriptionBytes().isEmpty()) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 2, longDescription_);
}
if (!getImageGsFilePathBytes().isEmpty()) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 3, imageGsFilePath_);
}
if (latE6_ != 0) {
output.writeInt32(4, latE6_);
}
if (lngE6_ != 0) {
output.writeInt32(5, lngE6_);
}
if (!getImageServingUrlBytes().isEmpty()) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 6, imageServingUrl_);
}
if (!getUserIdBytes().isEmpty()) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 7, userId_);
}
if (!getPlayerLanguageBytes().isEmpty()) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 8, playerLanguage_);
}
if (!getGameUniqueIdBytes().isEmpty()) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 9, gameUniqueId_);
}
if (!getAppIdBytes().isEmpty()) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 10, appId_);
}
if (playerReputation_ != null) {
output.writeMessage(11, getPlayerReputation());
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (!getTitleBytes().isEmpty()) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, title_);
}
if (!getLongDescriptionBytes().isEmpty()) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, longDescription_);
}
if (!getImageGsFilePathBytes().isEmpty()) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(3, imageGsFilePath_);
}
if (latE6_ != 0) {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(4, latE6_);
}
if (lngE6_ != 0) {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(5, lngE6_);
}
if (!getImageServingUrlBytes().isEmpty()) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(6, imageServingUrl_);
}
if (!getUserIdBytes().isEmpty()) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(7, userId_);
}
if (!getPlayerLanguageBytes().isEmpty()) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(8, playerLanguage_);
}
if (!getGameUniqueIdBytes().isEmpty()) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(9, gameUniqueId_);
}
if (!getAppIdBytes().isEmpty()) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(10, appId_);
}
if (playerReputation_ != null) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(11, getPlayerReputation());
}
size += unknownFields.getSerializedSize();
memoizedSize = size;
return size;
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddNewPoiMessage)) {
return super.equals(obj);
}
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddNewPoiMessage other = (POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddNewPoiMessage) obj;
boolean result = true;
result = result && getTitle()
.equals(other.getTitle());
result = result && getLongDescription()
.equals(other.getLongDescription());
result = result && getImageGsFilePath()
.equals(other.getImageGsFilePath());
result = result && (getLatE6()
== other.getLatE6());
result = result && (getLngE6()
== other.getLngE6());
result = result && getImageServingUrl()
.equals(other.getImageServingUrl());
result = result && getUserId()
.equals(other.getUserId());
result = result && getPlayerLanguage()
.equals(other.getPlayerLanguage());
result = result && getGameUniqueId()
.equals(other.getGameUniqueId());
result = result && getAppId()
.equals(other.getAppId());
result = result && (hasPlayerReputation() == other.hasPlayerReputation());
if (hasPlayerReputation()) {
result = result && getPlayerReputation()
.equals(other.getPlayerReputation());
}
result = result && unknownFields.equals(other.unknownFields);
return result;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
hash = (37 * hash) + TITLE_FIELD_NUMBER;
hash = (53 * hash) + getTitle().hashCode();
hash = (37 * hash) + LONG_DESCRIPTION_FIELD_NUMBER;
hash = (53 * hash) + getLongDescription().hashCode();
hash = (37 * hash) + IMAGE_GS_FILE_PATH_FIELD_NUMBER;
hash = (53 * hash) + getImageGsFilePath().hashCode();
hash = (37 * hash) + LAT_E6_FIELD_NUMBER;
hash = (53 * hash) + getLatE6();
hash = (37 * hash) + LNG_E6_FIELD_NUMBER;
hash = (53 * hash) + getLngE6();
hash = (37 * hash) + IMAGE_SERVING_URL_FIELD_NUMBER;
hash = (53 * hash) + getImageServingUrl().hashCode();
hash = (37 * hash) + USER_ID_FIELD_NUMBER;
hash = (53 * hash) + getUserId().hashCode();
hash = (37 * hash) + PLAYER_LANGUAGE_FIELD_NUMBER;
hash = (53 * hash) + getPlayerLanguage().hashCode();
hash = (37 * hash) + GAME_UNIQUE_ID_FIELD_NUMBER;
hash = (53 * hash) + getGameUniqueId().hashCode();
hash = (37 * hash) + APP_ID_FIELD_NUMBER;
hash = (53 * hash) + getAppId().hashCode();
if (hasPlayerReputation()) {
hash = (37 * hash) + PLAYER_REPUTATION_FIELD_NUMBER;
hash = (53 * hash) + getPlayerReputation().hashCode();
}
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddNewPoiMessage parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddNewPoiMessage parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddNewPoiMessage parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddNewPoiMessage parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddNewPoiMessage parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddNewPoiMessage parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddNewPoiMessage parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddNewPoiMessage parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddNewPoiMessage parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddNewPoiMessage parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddNewPoiMessage parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddNewPoiMessage parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
@java.lang.Override
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder() {
return DEFAULT_INSTANCE.toBuilder();
}
public static Builder newBuilder(POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddNewPoiMessage prototype) {
return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
}
@java.lang.Override
public Builder toBuilder() {
return this == DEFAULT_INSTANCE
? new Builder() : new Builder().mergeFrom(this);
}
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
* Protobuf type {@code POGOProtos.Networking.Requests.Messages.AddNewPoiMessage}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:POGOProtos.Networking.Requests.Messages.AddNewPoiMessage)
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddNewPoiMessageOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_AddNewPoiMessage_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_AddNewPoiMessage_fieldAccessorTable
.ensureFieldAccessorsInitialized(
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddNewPoiMessage.class, POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddNewPoiMessage.Builder.class);
}
// Construct using POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddNewPoiMessage.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
}
}
@java.lang.Override
public Builder clear() {
super.clear();
title_ = "";
longDescription_ = "";
imageGsFilePath_ = "";
latE6_ = 0;
lngE6_ = 0;
imageServingUrl_ = "";
userId_ = "";
playerLanguage_ = "";
gameUniqueId_ = "";
appId_ = "";
if (playerReputationBuilder_ == null) {
playerReputation_ = null;
} else {
playerReputation_ = null;
playerReputationBuilder_ = null;
}
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_AddNewPoiMessage_descriptor;
}
@java.lang.Override
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddNewPoiMessage getDefaultInstanceForType() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddNewPoiMessage.getDefaultInstance();
}
@java.lang.Override
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddNewPoiMessage build() {
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddNewPoiMessage result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddNewPoiMessage buildPartial() {
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddNewPoiMessage result = new POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddNewPoiMessage(this);
result.title_ = title_;
result.longDescription_ = longDescription_;
result.imageGsFilePath_ = imageGsFilePath_;
result.latE6_ = latE6_;
result.lngE6_ = lngE6_;
result.imageServingUrl_ = imageServingUrl_;
result.userId_ = userId_;
result.playerLanguage_ = playerLanguage_;
result.gameUniqueId_ = gameUniqueId_;
result.appId_ = appId_;
if (playerReputationBuilder_ == null) {
result.playerReputation_ = playerReputation_;
} else {
result.playerReputation_ = playerReputationBuilder_.build();
}
onBuilt();
return result;
}
@java.lang.Override
public Builder clone() {
return (Builder) super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.setField(field, value);
}
@java.lang.Override
public Builder clearField(
com.google.protobuf.Descriptors.FieldDescriptor field) {
return (Builder) super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(
com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return (Builder) super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index, java.lang.Object value) {
return (Builder) super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddNewPoiMessage) {
return mergeFrom((POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddNewPoiMessage)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddNewPoiMessage other) {
if (other == POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddNewPoiMessage.getDefaultInstance()) return this;
if (!other.getTitle().isEmpty()) {
title_ = other.title_;
onChanged();
}
if (!other.getLongDescription().isEmpty()) {
longDescription_ = other.longDescription_;
onChanged();
}
if (!other.getImageGsFilePath().isEmpty()) {
imageGsFilePath_ = other.imageGsFilePath_;
onChanged();
}
if (other.getLatE6() != 0) {
setLatE6(other.getLatE6());
}
if (other.getLngE6() != 0) {
setLngE6(other.getLngE6());
}
if (!other.getImageServingUrl().isEmpty()) {
imageServingUrl_ = other.imageServingUrl_;
onChanged();
}
if (!other.getUserId().isEmpty()) {
userId_ = other.userId_;
onChanged();
}
if (!other.getPlayerLanguage().isEmpty()) {
playerLanguage_ = other.playerLanguage_;
onChanged();
}
if (!other.getGameUniqueId().isEmpty()) {
gameUniqueId_ = other.gameUniqueId_;
onChanged();
}
if (!other.getAppId().isEmpty()) {
appId_ = other.appId_;
onChanged();
}
if (other.hasPlayerReputation()) {
mergePlayerReputation(other.getPlayerReputation());
}
this.mergeUnknownFields(other.unknownFields);
onChanged();
return this;
}
@java.lang.Override
public final boolean isInitialized() {
return true;
}
@java.lang.Override
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddNewPoiMessage parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddNewPoiMessage) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private java.lang.Object title_ = "";
/**
* string title = 1;
*/
public java.lang.String getTitle() {
java.lang.Object ref = title_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
title_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* string title = 1;
*/
public com.google.protobuf.ByteString
getTitleBytes() {
java.lang.Object ref = title_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
title_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* string title = 1;
*/
public Builder setTitle(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
title_ = value;
onChanged();
return this;
}
/**
* string title = 1;
*/
public Builder clearTitle() {
title_ = getDefaultInstance().getTitle();
onChanged();
return this;
}
/**
* string title = 1;
*/
public Builder setTitleBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
title_ = value;
onChanged();
return this;
}
private java.lang.Object longDescription_ = "";
/**
* string long_description = 2;
*/
public java.lang.String getLongDescription() {
java.lang.Object ref = longDescription_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
longDescription_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* string long_description = 2;
*/
public com.google.protobuf.ByteString
getLongDescriptionBytes() {
java.lang.Object ref = longDescription_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
longDescription_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* string long_description = 2;
*/
public Builder setLongDescription(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
longDescription_ = value;
onChanged();
return this;
}
/**
* string long_description = 2;
*/
public Builder clearLongDescription() {
longDescription_ = getDefaultInstance().getLongDescription();
onChanged();
return this;
}
/**
* string long_description = 2;
*/
public Builder setLongDescriptionBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
longDescription_ = value;
onChanged();
return this;
}
private java.lang.Object imageGsFilePath_ = "";
/**
* string image_gs_file_path = 3;
*/
public java.lang.String getImageGsFilePath() {
java.lang.Object ref = imageGsFilePath_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
imageGsFilePath_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* string image_gs_file_path = 3;
*/
public com.google.protobuf.ByteString
getImageGsFilePathBytes() {
java.lang.Object ref = imageGsFilePath_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
imageGsFilePath_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* string image_gs_file_path = 3;
*/
public Builder setImageGsFilePath(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
imageGsFilePath_ = value;
onChanged();
return this;
}
/**
* string image_gs_file_path = 3;
*/
public Builder clearImageGsFilePath() {
imageGsFilePath_ = getDefaultInstance().getImageGsFilePath();
onChanged();
return this;
}
/**
* string image_gs_file_path = 3;
*/
public Builder setImageGsFilePathBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
imageGsFilePath_ = value;
onChanged();
return this;
}
private int latE6_ ;
/**
* int32 lat_e6 = 4;
*/
public int getLatE6() {
return latE6_;
}
/**
* int32 lat_e6 = 4;
*/
public Builder setLatE6(int value) {
latE6_ = value;
onChanged();
return this;
}
/**
* int32 lat_e6 = 4;
*/
public Builder clearLatE6() {
latE6_ = 0;
onChanged();
return this;
}
private int lngE6_ ;
/**
* int32 lng_e6 = 5;
*/
public int getLngE6() {
return lngE6_;
}
/**
* int32 lng_e6 = 5;
*/
public Builder setLngE6(int value) {
lngE6_ = value;
onChanged();
return this;
}
/**
* int32 lng_e6 = 5;
*/
public Builder clearLngE6() {
lngE6_ = 0;
onChanged();
return this;
}
private java.lang.Object imageServingUrl_ = "";
/**
* string image_serving_url = 6;
*/
public java.lang.String getImageServingUrl() {
java.lang.Object ref = imageServingUrl_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
imageServingUrl_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* string image_serving_url = 6;
*/
public com.google.protobuf.ByteString
getImageServingUrlBytes() {
java.lang.Object ref = imageServingUrl_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
imageServingUrl_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* string image_serving_url = 6;
*/
public Builder setImageServingUrl(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
imageServingUrl_ = value;
onChanged();
return this;
}
/**
* string image_serving_url = 6;
*/
public Builder clearImageServingUrl() {
imageServingUrl_ = getDefaultInstance().getImageServingUrl();
onChanged();
return this;
}
/**
* string image_serving_url = 6;
*/
public Builder setImageServingUrlBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
imageServingUrl_ = value;
onChanged();
return this;
}
private java.lang.Object userId_ = "";
/**
* string user_id = 7;
*/
public java.lang.String getUserId() {
java.lang.Object ref = userId_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
userId_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* string user_id = 7;
*/
public com.google.protobuf.ByteString
getUserIdBytes() {
java.lang.Object ref = userId_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
userId_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* string user_id = 7;
*/
public Builder setUserId(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
userId_ = value;
onChanged();
return this;
}
/**
* string user_id = 7;
*/
public Builder clearUserId() {
userId_ = getDefaultInstance().getUserId();
onChanged();
return this;
}
/**
* string user_id = 7;
*/
public Builder setUserIdBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
userId_ = value;
onChanged();
return this;
}
private java.lang.Object playerLanguage_ = "";
/**
* string player_language = 8;
*/
public java.lang.String getPlayerLanguage() {
java.lang.Object ref = playerLanguage_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
playerLanguage_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* string player_language = 8;
*/
public com.google.protobuf.ByteString
getPlayerLanguageBytes() {
java.lang.Object ref = playerLanguage_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
playerLanguage_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* string player_language = 8;
*/
public Builder setPlayerLanguage(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
playerLanguage_ = value;
onChanged();
return this;
}
/**
* string player_language = 8;
*/
public Builder clearPlayerLanguage() {
playerLanguage_ = getDefaultInstance().getPlayerLanguage();
onChanged();
return this;
}
/**
* string player_language = 8;
*/
public Builder setPlayerLanguageBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
playerLanguage_ = value;
onChanged();
return this;
}
private java.lang.Object gameUniqueId_ = "";
/**
* string game_unique_id = 9;
*/
public java.lang.String getGameUniqueId() {
java.lang.Object ref = gameUniqueId_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
gameUniqueId_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* string game_unique_id = 9;
*/
public com.google.protobuf.ByteString
getGameUniqueIdBytes() {
java.lang.Object ref = gameUniqueId_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
gameUniqueId_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* string game_unique_id = 9;
*/
public Builder setGameUniqueId(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
gameUniqueId_ = value;
onChanged();
return this;
}
/**
* string game_unique_id = 9;
*/
public Builder clearGameUniqueId() {
gameUniqueId_ = getDefaultInstance().getGameUniqueId();
onChanged();
return this;
}
/**
* string game_unique_id = 9;
*/
public Builder setGameUniqueIdBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
gameUniqueId_ = value;
onChanged();
return this;
}
private java.lang.Object appId_ = "";
/**
* string app_id = 10;
*/
public java.lang.String getAppId() {
java.lang.Object ref = appId_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
appId_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* string app_id = 10;
*/
public com.google.protobuf.ByteString
getAppIdBytes() {
java.lang.Object ref = appId_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
appId_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* string app_id = 10;
*/
public Builder setAppId(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
appId_ = value;
onChanged();
return this;
}
/**
* string app_id = 10;
*/
public Builder clearAppId() {
appId_ = getDefaultInstance().getAppId();
onChanged();
return this;
}
/**
* string app_id = 10;
*/
public Builder setAppIdBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
appId_ = value;
onChanged();
return this;
}
private POGOProtos.Data.Player.PlayerReputationOuterClass.PlayerReputation playerReputation_ = null;
private com.google.protobuf.SingleFieldBuilderV3<
POGOProtos.Data.Player.PlayerReputationOuterClass.PlayerReputation, POGOProtos.Data.Player.PlayerReputationOuterClass.PlayerReputation.Builder, POGOProtos.Data.Player.PlayerReputationOuterClass.PlayerReputationOrBuilder> playerReputationBuilder_;
/**
* .POGOProtos.Data.Player.PlayerReputation player_reputation = 11;
*/
public boolean hasPlayerReputation() {
return playerReputationBuilder_ != null || playerReputation_ != null;
}
/**
* .POGOProtos.Data.Player.PlayerReputation player_reputation = 11;
*/
public POGOProtos.Data.Player.PlayerReputationOuterClass.PlayerReputation getPlayerReputation() {
if (playerReputationBuilder_ == null) {
return playerReputation_ == null ? POGOProtos.Data.Player.PlayerReputationOuterClass.PlayerReputation.getDefaultInstance() : playerReputation_;
} else {
return playerReputationBuilder_.getMessage();
}
}
/**
* .POGOProtos.Data.Player.PlayerReputation player_reputation = 11;
*/
public Builder setPlayerReputation(POGOProtos.Data.Player.PlayerReputationOuterClass.PlayerReputation value) {
if (playerReputationBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
playerReputation_ = value;
onChanged();
} else {
playerReputationBuilder_.setMessage(value);
}
return this;
}
/**
* .POGOProtos.Data.Player.PlayerReputation player_reputation = 11;
*/
public Builder setPlayerReputation(
POGOProtos.Data.Player.PlayerReputationOuterClass.PlayerReputation.Builder builderForValue) {
if (playerReputationBuilder_ == null) {
playerReputation_ = builderForValue.build();
onChanged();
} else {
playerReputationBuilder_.setMessage(builderForValue.build());
}
return this;
}
/**
* .POGOProtos.Data.Player.PlayerReputation player_reputation = 11;
*/
public Builder mergePlayerReputation(POGOProtos.Data.Player.PlayerReputationOuterClass.PlayerReputation value) {
if (playerReputationBuilder_ == null) {
if (playerReputation_ != null) {
playerReputation_ =
POGOProtos.Data.Player.PlayerReputationOuterClass.PlayerReputation.newBuilder(playerReputation_).mergeFrom(value).buildPartial();
} else {
playerReputation_ = value;
}
onChanged();
} else {
playerReputationBuilder_.mergeFrom(value);
}
return this;
}
/**
* .POGOProtos.Data.Player.PlayerReputation player_reputation = 11;
*/
public Builder clearPlayerReputation() {
if (playerReputationBuilder_ == null) {
playerReputation_ = null;
onChanged();
} else {
playerReputation_ = null;
playerReputationBuilder_ = null;
}
return this;
}
/**
* .POGOProtos.Data.Player.PlayerReputation player_reputation = 11;
*/
public POGOProtos.Data.Player.PlayerReputationOuterClass.PlayerReputation.Builder getPlayerReputationBuilder() {
onChanged();
return getPlayerReputationFieldBuilder().getBuilder();
}
/**
* .POGOProtos.Data.Player.PlayerReputation player_reputation = 11;
*/
public POGOProtos.Data.Player.PlayerReputationOuterClass.PlayerReputationOrBuilder getPlayerReputationOrBuilder() {
if (playerReputationBuilder_ != null) {
return playerReputationBuilder_.getMessageOrBuilder();
} else {
return playerReputation_ == null ?
POGOProtos.Data.Player.PlayerReputationOuterClass.PlayerReputation.getDefaultInstance() : playerReputation_;
}
}
/**
* .POGOProtos.Data.Player.PlayerReputation player_reputation = 11;
*/
private com.google.protobuf.SingleFieldBuilderV3<
POGOProtos.Data.Player.PlayerReputationOuterClass.PlayerReputation, POGOProtos.Data.Player.PlayerReputationOuterClass.PlayerReputation.Builder, POGOProtos.Data.Player.PlayerReputationOuterClass.PlayerReputationOrBuilder>
getPlayerReputationFieldBuilder() {
if (playerReputationBuilder_ == null) {
playerReputationBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
POGOProtos.Data.Player.PlayerReputationOuterClass.PlayerReputation, POGOProtos.Data.Player.PlayerReputationOuterClass.PlayerReputation.Builder, POGOProtos.Data.Player.PlayerReputationOuterClass.PlayerReputationOrBuilder>(
getPlayerReputation(),
getParentForChildren(),
isClean());
playerReputation_ = null;
}
return playerReputationBuilder_;
}
@java.lang.Override
public final Builder setUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.setUnknownFieldsProto3(unknownFields);
}
@java.lang.Override
public final Builder mergeUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.mergeUnknownFields(unknownFields);
}
// @@protoc_insertion_point(builder_scope:POGOProtos.Networking.Requests.Messages.AddNewPoiMessage)
}
// @@protoc_insertion_point(class_scope:POGOProtos.Networking.Requests.Messages.AddNewPoiMessage)
private static final POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddNewPoiMessage DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddNewPoiMessage();
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddNewPoiMessage getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public AddNewPoiMessage parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new AddNewPoiMessage(input, extensionRegistry);
}
};
public static com.google.protobuf.Parser parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
@java.lang.Override
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddNewPoiMessage getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
public interface ProxySocialActionMessageOrBuilder extends
// @@protoc_insertion_point(interface_extends:POGOProtos.Networking.Requests.Messages.ProxySocialActionMessage)
com.google.protobuf.MessageOrBuilder {
/**
* uint32 action = 1;
*/
int getAction();
/**
* string host = 2;
*/
java.lang.String getHost();
/**
* string host = 2;
*/
com.google.protobuf.ByteString
getHostBytes();
/**
* bytes payload = 3;
*/
com.google.protobuf.ByteString getPayload();
}
/**
* Protobuf type {@code POGOProtos.Networking.Requests.Messages.ProxySocialActionMessage}
*/
public static final class ProxySocialActionMessage extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:POGOProtos.Networking.Requests.Messages.ProxySocialActionMessage)
ProxySocialActionMessageOrBuilder {
private static final long serialVersionUID = 0L;
// Use ProxySocialActionMessage.newBuilder() to construct.
private ProxySocialActionMessage(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private ProxySocialActionMessage() {
action_ = 0;
host_ = "";
payload_ = com.google.protobuf.ByteString.EMPTY;
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private ProxySocialActionMessage(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
this();
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
int mutable_bitField0_ = 0;
com.google.protobuf.UnknownFieldSet.Builder unknownFields =
com.google.protobuf.UnknownFieldSet.newBuilder();
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 8: {
action_ = input.readUInt32();
break;
}
case 18: {
java.lang.String s = input.readStringRequireUtf8();
host_ = s;
break;
}
case 26: {
payload_ = input.readBytes();
break;
}
default: {
if (!parseUnknownFieldProto3(
input, unknownFields, extensionRegistry, tag)) {
done = true;
}
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e).setUnfinishedMessage(this);
} finally {
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_ProxySocialActionMessage_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_ProxySocialActionMessage_fieldAccessorTable
.ensureFieldAccessorsInitialized(
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ProxySocialActionMessage.class, POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ProxySocialActionMessage.Builder.class);
}
public static final int ACTION_FIELD_NUMBER = 1;
private int action_;
/**
* uint32 action = 1;
*/
public int getAction() {
return action_;
}
public static final int HOST_FIELD_NUMBER = 2;
private volatile java.lang.Object host_;
/**
* string host = 2;
*/
public java.lang.String getHost() {
java.lang.Object ref = host_;
if (ref instanceof java.lang.String) {
return (java.lang.String) ref;
} else {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
host_ = s;
return s;
}
}
/**
* string host = 2;
*/
public com.google.protobuf.ByteString
getHostBytes() {
java.lang.Object ref = host_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
host_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int PAYLOAD_FIELD_NUMBER = 3;
private com.google.protobuf.ByteString payload_;
/**
* bytes payload = 3;
*/
public com.google.protobuf.ByteString getPayload() {
return payload_;
}
private byte memoizedIsInitialized = -1;
@java.lang.Override
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
@java.lang.Override
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
if (action_ != 0) {
output.writeUInt32(1, action_);
}
if (!getHostBytes().isEmpty()) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 2, host_);
}
if (!payload_.isEmpty()) {
output.writeBytes(3, payload_);
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (action_ != 0) {
size += com.google.protobuf.CodedOutputStream
.computeUInt32Size(1, action_);
}
if (!getHostBytes().isEmpty()) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, host_);
}
if (!payload_.isEmpty()) {
size += com.google.protobuf.CodedOutputStream
.computeBytesSize(3, payload_);
}
size += unknownFields.getSerializedSize();
memoizedSize = size;
return size;
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ProxySocialActionMessage)) {
return super.equals(obj);
}
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ProxySocialActionMessage other = (POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ProxySocialActionMessage) obj;
boolean result = true;
result = result && (getAction()
== other.getAction());
result = result && getHost()
.equals(other.getHost());
result = result && getPayload()
.equals(other.getPayload());
result = result && unknownFields.equals(other.unknownFields);
return result;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
hash = (37 * hash) + ACTION_FIELD_NUMBER;
hash = (53 * hash) + getAction();
hash = (37 * hash) + HOST_FIELD_NUMBER;
hash = (53 * hash) + getHost().hashCode();
hash = (37 * hash) + PAYLOAD_FIELD_NUMBER;
hash = (53 * hash) + getPayload().hashCode();
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ProxySocialActionMessage parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ProxySocialActionMessage parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ProxySocialActionMessage parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ProxySocialActionMessage parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ProxySocialActionMessage parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ProxySocialActionMessage parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ProxySocialActionMessage parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ProxySocialActionMessage parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ProxySocialActionMessage parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ProxySocialActionMessage parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ProxySocialActionMessage parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ProxySocialActionMessage parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
@java.lang.Override
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder() {
return DEFAULT_INSTANCE.toBuilder();
}
public static Builder newBuilder(POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ProxySocialActionMessage prototype) {
return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
}
@java.lang.Override
public Builder toBuilder() {
return this == DEFAULT_INSTANCE
? new Builder() : new Builder().mergeFrom(this);
}
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
* Protobuf type {@code POGOProtos.Networking.Requests.Messages.ProxySocialActionMessage}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:POGOProtos.Networking.Requests.Messages.ProxySocialActionMessage)
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ProxySocialActionMessageOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_ProxySocialActionMessage_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_ProxySocialActionMessage_fieldAccessorTable
.ensureFieldAccessorsInitialized(
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ProxySocialActionMessage.class, POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ProxySocialActionMessage.Builder.class);
}
// Construct using POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ProxySocialActionMessage.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
}
}
@java.lang.Override
public Builder clear() {
super.clear();
action_ = 0;
host_ = "";
payload_ = com.google.protobuf.ByteString.EMPTY;
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_ProxySocialActionMessage_descriptor;
}
@java.lang.Override
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ProxySocialActionMessage getDefaultInstanceForType() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ProxySocialActionMessage.getDefaultInstance();
}
@java.lang.Override
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ProxySocialActionMessage build() {
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ProxySocialActionMessage result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ProxySocialActionMessage buildPartial() {
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ProxySocialActionMessage result = new POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ProxySocialActionMessage(this);
result.action_ = action_;
result.host_ = host_;
result.payload_ = payload_;
onBuilt();
return result;
}
@java.lang.Override
public Builder clone() {
return (Builder) super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.setField(field, value);
}
@java.lang.Override
public Builder clearField(
com.google.protobuf.Descriptors.FieldDescriptor field) {
return (Builder) super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(
com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return (Builder) super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index, java.lang.Object value) {
return (Builder) super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ProxySocialActionMessage) {
return mergeFrom((POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ProxySocialActionMessage)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ProxySocialActionMessage other) {
if (other == POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ProxySocialActionMessage.getDefaultInstance()) return this;
if (other.getAction() != 0) {
setAction(other.getAction());
}
if (!other.getHost().isEmpty()) {
host_ = other.host_;
onChanged();
}
if (other.getPayload() != com.google.protobuf.ByteString.EMPTY) {
setPayload(other.getPayload());
}
this.mergeUnknownFields(other.unknownFields);
onChanged();
return this;
}
@java.lang.Override
public final boolean isInitialized() {
return true;
}
@java.lang.Override
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ProxySocialActionMessage parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ProxySocialActionMessage) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int action_ ;
/**
* uint32 action = 1;
*/
public int getAction() {
return action_;
}
/**
* uint32 action = 1;
*/
public Builder setAction(int value) {
action_ = value;
onChanged();
return this;
}
/**
* uint32 action = 1;
*/
public Builder clearAction() {
action_ = 0;
onChanged();
return this;
}
private java.lang.Object host_ = "";
/**
* string host = 2;
*/
public java.lang.String getHost() {
java.lang.Object ref = host_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
host_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* string host = 2;
*/
public com.google.protobuf.ByteString
getHostBytes() {
java.lang.Object ref = host_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
host_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* string host = 2;
*/
public Builder setHost(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
host_ = value;
onChanged();
return this;
}
/**
* string host = 2;
*/
public Builder clearHost() {
host_ = getDefaultInstance().getHost();
onChanged();
return this;
}
/**
* string host = 2;
*/
public Builder setHostBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
host_ = value;
onChanged();
return this;
}
private com.google.protobuf.ByteString payload_ = com.google.protobuf.ByteString.EMPTY;
/**
* bytes payload = 3;
*/
public com.google.protobuf.ByteString getPayload() {
return payload_;
}
/**
* bytes payload = 3;
*/
public Builder setPayload(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
payload_ = value;
onChanged();
return this;
}
/**
* bytes payload = 3;
*/
public Builder clearPayload() {
payload_ = getDefaultInstance().getPayload();
onChanged();
return this;
}
@java.lang.Override
public final Builder setUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.setUnknownFieldsProto3(unknownFields);
}
@java.lang.Override
public final Builder mergeUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.mergeUnknownFields(unknownFields);
}
// @@protoc_insertion_point(builder_scope:POGOProtos.Networking.Requests.Messages.ProxySocialActionMessage)
}
// @@protoc_insertion_point(class_scope:POGOProtos.Networking.Requests.Messages.ProxySocialActionMessage)
private static final POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ProxySocialActionMessage DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ProxySocialActionMessage();
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ProxySocialActionMessage getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public ProxySocialActionMessage parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new ProxySocialActionMessage(input, extensionRegistry);
}
};
public static com.google.protobuf.Parser parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
@java.lang.Override
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ProxySocialActionMessage getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
public interface ProxySocialSideChannelActionMessageOrBuilder extends
// @@protoc_insertion_point(interface_extends:POGOProtos.Networking.Requests.Messages.ProxySocialSideChannelActionMessage)
com.google.protobuf.MessageOrBuilder {
/**
* uint32 action = 1;
*/
int getAction();
/**
* string host = 2;
*/
java.lang.String getHost();
/**
* string host = 2;
*/
com.google.protobuf.ByteString
getHostBytes();
/**
* bytes payload = 3;
*/
com.google.protobuf.ByteString getPayload();
}
/**
* Protobuf type {@code POGOProtos.Networking.Requests.Messages.ProxySocialSideChannelActionMessage}
*/
public static final class ProxySocialSideChannelActionMessage extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:POGOProtos.Networking.Requests.Messages.ProxySocialSideChannelActionMessage)
ProxySocialSideChannelActionMessageOrBuilder {
private static final long serialVersionUID = 0L;
// Use ProxySocialSideChannelActionMessage.newBuilder() to construct.
private ProxySocialSideChannelActionMessage(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private ProxySocialSideChannelActionMessage() {
action_ = 0;
host_ = "";
payload_ = com.google.protobuf.ByteString.EMPTY;
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private ProxySocialSideChannelActionMessage(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
this();
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
int mutable_bitField0_ = 0;
com.google.protobuf.UnknownFieldSet.Builder unknownFields =
com.google.protobuf.UnknownFieldSet.newBuilder();
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 8: {
action_ = input.readUInt32();
break;
}
case 18: {
java.lang.String s = input.readStringRequireUtf8();
host_ = s;
break;
}
case 26: {
payload_ = input.readBytes();
break;
}
default: {
if (!parseUnknownFieldProto3(
input, unknownFields, extensionRegistry, tag)) {
done = true;
}
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e).setUnfinishedMessage(this);
} finally {
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_ProxySocialSideChannelActionMessage_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_ProxySocialSideChannelActionMessage_fieldAccessorTable
.ensureFieldAccessorsInitialized(
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ProxySocialSideChannelActionMessage.class, POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ProxySocialSideChannelActionMessage.Builder.class);
}
public static final int ACTION_FIELD_NUMBER = 1;
private int action_;
/**
* uint32 action = 1;
*/
public int getAction() {
return action_;
}
public static final int HOST_FIELD_NUMBER = 2;
private volatile java.lang.Object host_;
/**
* string host = 2;
*/
public java.lang.String getHost() {
java.lang.Object ref = host_;
if (ref instanceof java.lang.String) {
return (java.lang.String) ref;
} else {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
host_ = s;
return s;
}
}
/**
* string host = 2;
*/
public com.google.protobuf.ByteString
getHostBytes() {
java.lang.Object ref = host_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
host_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int PAYLOAD_FIELD_NUMBER = 3;
private com.google.protobuf.ByteString payload_;
/**
* bytes payload = 3;
*/
public com.google.protobuf.ByteString getPayload() {
return payload_;
}
private byte memoizedIsInitialized = -1;
@java.lang.Override
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
@java.lang.Override
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
if (action_ != 0) {
output.writeUInt32(1, action_);
}
if (!getHostBytes().isEmpty()) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 2, host_);
}
if (!payload_.isEmpty()) {
output.writeBytes(3, payload_);
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (action_ != 0) {
size += com.google.protobuf.CodedOutputStream
.computeUInt32Size(1, action_);
}
if (!getHostBytes().isEmpty()) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, host_);
}
if (!payload_.isEmpty()) {
size += com.google.protobuf.CodedOutputStream
.computeBytesSize(3, payload_);
}
size += unknownFields.getSerializedSize();
memoizedSize = size;
return size;
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ProxySocialSideChannelActionMessage)) {
return super.equals(obj);
}
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ProxySocialSideChannelActionMessage other = (POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ProxySocialSideChannelActionMessage) obj;
boolean result = true;
result = result && (getAction()
== other.getAction());
result = result && getHost()
.equals(other.getHost());
result = result && getPayload()
.equals(other.getPayload());
result = result && unknownFields.equals(other.unknownFields);
return result;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
hash = (37 * hash) + ACTION_FIELD_NUMBER;
hash = (53 * hash) + getAction();
hash = (37 * hash) + HOST_FIELD_NUMBER;
hash = (53 * hash) + getHost().hashCode();
hash = (37 * hash) + PAYLOAD_FIELD_NUMBER;
hash = (53 * hash) + getPayload().hashCode();
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ProxySocialSideChannelActionMessage parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ProxySocialSideChannelActionMessage parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ProxySocialSideChannelActionMessage parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ProxySocialSideChannelActionMessage parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ProxySocialSideChannelActionMessage parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ProxySocialSideChannelActionMessage parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ProxySocialSideChannelActionMessage parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ProxySocialSideChannelActionMessage parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ProxySocialSideChannelActionMessage parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ProxySocialSideChannelActionMessage parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ProxySocialSideChannelActionMessage parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ProxySocialSideChannelActionMessage parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
@java.lang.Override
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder() {
return DEFAULT_INSTANCE.toBuilder();
}
public static Builder newBuilder(POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ProxySocialSideChannelActionMessage prototype) {
return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
}
@java.lang.Override
public Builder toBuilder() {
return this == DEFAULT_INSTANCE
? new Builder() : new Builder().mergeFrom(this);
}
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
* Protobuf type {@code POGOProtos.Networking.Requests.Messages.ProxySocialSideChannelActionMessage}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:POGOProtos.Networking.Requests.Messages.ProxySocialSideChannelActionMessage)
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ProxySocialSideChannelActionMessageOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_ProxySocialSideChannelActionMessage_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_ProxySocialSideChannelActionMessage_fieldAccessorTable
.ensureFieldAccessorsInitialized(
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ProxySocialSideChannelActionMessage.class, POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ProxySocialSideChannelActionMessage.Builder.class);
}
// Construct using POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ProxySocialSideChannelActionMessage.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
}
}
@java.lang.Override
public Builder clear() {
super.clear();
action_ = 0;
host_ = "";
payload_ = com.google.protobuf.ByteString.EMPTY;
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_ProxySocialSideChannelActionMessage_descriptor;
}
@java.lang.Override
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ProxySocialSideChannelActionMessage getDefaultInstanceForType() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ProxySocialSideChannelActionMessage.getDefaultInstance();
}
@java.lang.Override
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ProxySocialSideChannelActionMessage build() {
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ProxySocialSideChannelActionMessage result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ProxySocialSideChannelActionMessage buildPartial() {
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ProxySocialSideChannelActionMessage result = new POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ProxySocialSideChannelActionMessage(this);
result.action_ = action_;
result.host_ = host_;
result.payload_ = payload_;
onBuilt();
return result;
}
@java.lang.Override
public Builder clone() {
return (Builder) super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.setField(field, value);
}
@java.lang.Override
public Builder clearField(
com.google.protobuf.Descriptors.FieldDescriptor field) {
return (Builder) super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(
com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return (Builder) super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index, java.lang.Object value) {
return (Builder) super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ProxySocialSideChannelActionMessage) {
return mergeFrom((POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ProxySocialSideChannelActionMessage)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ProxySocialSideChannelActionMessage other) {
if (other == POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ProxySocialSideChannelActionMessage.getDefaultInstance()) return this;
if (other.getAction() != 0) {
setAction(other.getAction());
}
if (!other.getHost().isEmpty()) {
host_ = other.host_;
onChanged();
}
if (other.getPayload() != com.google.protobuf.ByteString.EMPTY) {
setPayload(other.getPayload());
}
this.mergeUnknownFields(other.unknownFields);
onChanged();
return this;
}
@java.lang.Override
public final boolean isInitialized() {
return true;
}
@java.lang.Override
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ProxySocialSideChannelActionMessage parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ProxySocialSideChannelActionMessage) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int action_ ;
/**
* uint32 action = 1;
*/
public int getAction() {
return action_;
}
/**
* uint32 action = 1;
*/
public Builder setAction(int value) {
action_ = value;
onChanged();
return this;
}
/**
* uint32 action = 1;
*/
public Builder clearAction() {
action_ = 0;
onChanged();
return this;
}
private java.lang.Object host_ = "";
/**
* string host = 2;
*/
public java.lang.String getHost() {
java.lang.Object ref = host_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
host_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* string host = 2;
*/
public com.google.protobuf.ByteString
getHostBytes() {
java.lang.Object ref = host_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
host_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* string host = 2;
*/
public Builder setHost(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
host_ = value;
onChanged();
return this;
}
/**
* string host = 2;
*/
public Builder clearHost() {
host_ = getDefaultInstance().getHost();
onChanged();
return this;
}
/**
* string host = 2;
*/
public Builder setHostBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
host_ = value;
onChanged();
return this;
}
private com.google.protobuf.ByteString payload_ = com.google.protobuf.ByteString.EMPTY;
/**
* bytes payload = 3;
*/
public com.google.protobuf.ByteString getPayload() {
return payload_;
}
/**
* bytes payload = 3;
*/
public Builder setPayload(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
payload_ = value;
onChanged();
return this;
}
/**
* bytes payload = 3;
*/
public Builder clearPayload() {
payload_ = getDefaultInstance().getPayload();
onChanged();
return this;
}
@java.lang.Override
public final Builder setUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.setUnknownFieldsProto3(unknownFields);
}
@java.lang.Override
public final Builder mergeUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.mergeUnknownFields(unknownFields);
}
// @@protoc_insertion_point(builder_scope:POGOProtos.Networking.Requests.Messages.ProxySocialSideChannelActionMessage)
}
// @@protoc_insertion_point(class_scope:POGOProtos.Networking.Requests.Messages.ProxySocialSideChannelActionMessage)
private static final POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ProxySocialSideChannelActionMessage DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ProxySocialSideChannelActionMessage();
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ProxySocialSideChannelActionMessage getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public ProxySocialSideChannelActionMessage parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new ProxySocialSideChannelActionMessage(input, extensionRegistry);
}
};
public static com.google.protobuf.Parser parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
@java.lang.Override
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ProxySocialSideChannelActionMessage getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
public interface GetAvailableSubmissionsMessageOrBuilder extends
// @@protoc_insertion_point(interface_extends:POGOProtos.Networking.Requests.Messages.GetAvailableSubmissionsMessage)
com.google.protobuf.MessageOrBuilder {
}
/**
* Protobuf type {@code POGOProtos.Networking.Requests.Messages.GetAvailableSubmissionsMessage}
*/
public static final class GetAvailableSubmissionsMessage extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:POGOProtos.Networking.Requests.Messages.GetAvailableSubmissionsMessage)
GetAvailableSubmissionsMessageOrBuilder {
private static final long serialVersionUID = 0L;
// Use GetAvailableSubmissionsMessage.newBuilder() to construct.
private GetAvailableSubmissionsMessage(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private GetAvailableSubmissionsMessage() {
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private GetAvailableSubmissionsMessage(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
this();
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
com.google.protobuf.UnknownFieldSet.Builder unknownFields =
com.google.protobuf.UnknownFieldSet.newBuilder();
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
default: {
if (!parseUnknownFieldProto3(
input, unknownFields, extensionRegistry, tag)) {
done = true;
}
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e).setUnfinishedMessage(this);
} finally {
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_GetAvailableSubmissionsMessage_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_GetAvailableSubmissionsMessage_fieldAccessorTable
.ensureFieldAccessorsInitialized(
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.GetAvailableSubmissionsMessage.class, POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.GetAvailableSubmissionsMessage.Builder.class);
}
private byte memoizedIsInitialized = -1;
@java.lang.Override
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
@java.lang.Override
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
size += unknownFields.getSerializedSize();
memoizedSize = size;
return size;
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.GetAvailableSubmissionsMessage)) {
return super.equals(obj);
}
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.GetAvailableSubmissionsMessage other = (POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.GetAvailableSubmissionsMessage) obj;
boolean result = true;
result = result && unknownFields.equals(other.unknownFields);
return result;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.GetAvailableSubmissionsMessage parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.GetAvailableSubmissionsMessage parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.GetAvailableSubmissionsMessage parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.GetAvailableSubmissionsMessage parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.GetAvailableSubmissionsMessage parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.GetAvailableSubmissionsMessage parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.GetAvailableSubmissionsMessage parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.GetAvailableSubmissionsMessage parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.GetAvailableSubmissionsMessage parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.GetAvailableSubmissionsMessage parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.GetAvailableSubmissionsMessage parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.GetAvailableSubmissionsMessage parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
@java.lang.Override
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder() {
return DEFAULT_INSTANCE.toBuilder();
}
public static Builder newBuilder(POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.GetAvailableSubmissionsMessage prototype) {
return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
}
@java.lang.Override
public Builder toBuilder() {
return this == DEFAULT_INSTANCE
? new Builder() : new Builder().mergeFrom(this);
}
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
* Protobuf type {@code POGOProtos.Networking.Requests.Messages.GetAvailableSubmissionsMessage}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:POGOProtos.Networking.Requests.Messages.GetAvailableSubmissionsMessage)
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.GetAvailableSubmissionsMessageOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_GetAvailableSubmissionsMessage_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_GetAvailableSubmissionsMessage_fieldAccessorTable
.ensureFieldAccessorsInitialized(
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.GetAvailableSubmissionsMessage.class, POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.GetAvailableSubmissionsMessage.Builder.class);
}
// Construct using POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.GetAvailableSubmissionsMessage.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
}
}
@java.lang.Override
public Builder clear() {
super.clear();
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_GetAvailableSubmissionsMessage_descriptor;
}
@java.lang.Override
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.GetAvailableSubmissionsMessage getDefaultInstanceForType() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.GetAvailableSubmissionsMessage.getDefaultInstance();
}
@java.lang.Override
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.GetAvailableSubmissionsMessage build() {
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.GetAvailableSubmissionsMessage result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.GetAvailableSubmissionsMessage buildPartial() {
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.GetAvailableSubmissionsMessage result = new POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.GetAvailableSubmissionsMessage(this);
onBuilt();
return result;
}
@java.lang.Override
public Builder clone() {
return (Builder) super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.setField(field, value);
}
@java.lang.Override
public Builder clearField(
com.google.protobuf.Descriptors.FieldDescriptor field) {
return (Builder) super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(
com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return (Builder) super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index, java.lang.Object value) {
return (Builder) super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.GetAvailableSubmissionsMessage) {
return mergeFrom((POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.GetAvailableSubmissionsMessage)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.GetAvailableSubmissionsMessage other) {
if (other == POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.GetAvailableSubmissionsMessage.getDefaultInstance()) return this;
this.mergeUnknownFields(other.unknownFields);
onChanged();
return this;
}
@java.lang.Override
public final boolean isInitialized() {
return true;
}
@java.lang.Override
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.GetAvailableSubmissionsMessage parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.GetAvailableSubmissionsMessage) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
@java.lang.Override
public final Builder setUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.setUnknownFieldsProto3(unknownFields);
}
@java.lang.Override
public final Builder mergeUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.mergeUnknownFields(unknownFields);
}
// @@protoc_insertion_point(builder_scope:POGOProtos.Networking.Requests.Messages.GetAvailableSubmissionsMessage)
}
// @@protoc_insertion_point(class_scope:POGOProtos.Networking.Requests.Messages.GetAvailableSubmissionsMessage)
private static final POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.GetAvailableSubmissionsMessage DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.GetAvailableSubmissionsMessage();
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.GetAvailableSubmissionsMessage getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public GetAvailableSubmissionsMessage parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new GetAvailableSubmissionsMessage(input, extensionRegistry);
}
};
public static com.google.protobuf.Parser parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
@java.lang.Override
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.GetAvailableSubmissionsMessage getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
public interface PushNotificationRegistryMessageOrBuilder extends
// @@protoc_insertion_point(interface_extends:POGOProtos.Networking.Requests.Messages.PushNotificationRegistryMessage)
com.google.protobuf.MessageOrBuilder {
/**
* .POGOProtos.Networking.Requests.Messages.RegisterPushNotificationMessage.ApnToken apn_token = 1;
*/
boolean hasApnToken();
/**
* .POGOProtos.Networking.Requests.Messages.RegisterPushNotificationMessage.ApnToken apn_token = 1;
*/
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnToken getApnToken();
/**
* .POGOProtos.Networking.Requests.Messages.RegisterPushNotificationMessage.ApnToken apn_token = 1;
*/
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnTokenOrBuilder getApnTokenOrBuilder();
/**
* .POGOProtos.Networking.Requests.Messages.RegisterPushNotificationMessage.GcmToken gcm_token = 2;
*/
boolean hasGcmToken();
/**
* .POGOProtos.Networking.Requests.Messages.RegisterPushNotificationMessage.GcmToken gcm_token = 2;
*/
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmToken getGcmToken();
/**
* .POGOProtos.Networking.Requests.Messages.RegisterPushNotificationMessage.GcmToken gcm_token = 2;
*/
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmTokenOrBuilder getGcmTokenOrBuilder();
}
/**
* Protobuf type {@code POGOProtos.Networking.Requests.Messages.PushNotificationRegistryMessage}
*/
public static final class PushNotificationRegistryMessage extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:POGOProtos.Networking.Requests.Messages.PushNotificationRegistryMessage)
PushNotificationRegistryMessageOrBuilder {
private static final long serialVersionUID = 0L;
// Use PushNotificationRegistryMessage.newBuilder() to construct.
private PushNotificationRegistryMessage(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private PushNotificationRegistryMessage() {
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private PushNotificationRegistryMessage(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
this();
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
int mutable_bitField0_ = 0;
com.google.protobuf.UnknownFieldSet.Builder unknownFields =
com.google.protobuf.UnknownFieldSet.newBuilder();
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 10: {
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnToken.Builder subBuilder = null;
if (apnToken_ != null) {
subBuilder = apnToken_.toBuilder();
}
apnToken_ = input.readMessage(POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnToken.parser(), extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(apnToken_);
apnToken_ = subBuilder.buildPartial();
}
break;
}
case 18: {
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmToken.Builder subBuilder = null;
if (gcmToken_ != null) {
subBuilder = gcmToken_.toBuilder();
}
gcmToken_ = input.readMessage(POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmToken.parser(), extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(gcmToken_);
gcmToken_ = subBuilder.buildPartial();
}
break;
}
default: {
if (!parseUnknownFieldProto3(
input, unknownFields, extensionRegistry, tag)) {
done = true;
}
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e).setUnfinishedMessage(this);
} finally {
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_PushNotificationRegistryMessage_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_PushNotificationRegistryMessage_fieldAccessorTable
.ensureFieldAccessorsInitialized(
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.PushNotificationRegistryMessage.class, POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.PushNotificationRegistryMessage.Builder.class);
}
public static final int APN_TOKEN_FIELD_NUMBER = 1;
private POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnToken apnToken_;
/**
* .POGOProtos.Networking.Requests.Messages.RegisterPushNotificationMessage.ApnToken apn_token = 1;
*/
public boolean hasApnToken() {
return apnToken_ != null;
}
/**
* .POGOProtos.Networking.Requests.Messages.RegisterPushNotificationMessage.ApnToken apn_token = 1;
*/
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnToken getApnToken() {
return apnToken_ == null ? POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnToken.getDefaultInstance() : apnToken_;
}
/**
* .POGOProtos.Networking.Requests.Messages.RegisterPushNotificationMessage.ApnToken apn_token = 1;
*/
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnTokenOrBuilder getApnTokenOrBuilder() {
return getApnToken();
}
public static final int GCM_TOKEN_FIELD_NUMBER = 2;
private POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmToken gcmToken_;
/**
* .POGOProtos.Networking.Requests.Messages.RegisterPushNotificationMessage.GcmToken gcm_token = 2;
*/
public boolean hasGcmToken() {
return gcmToken_ != null;
}
/**
* .POGOProtos.Networking.Requests.Messages.RegisterPushNotificationMessage.GcmToken gcm_token = 2;
*/
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmToken getGcmToken() {
return gcmToken_ == null ? POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmToken.getDefaultInstance() : gcmToken_;
}
/**
* .POGOProtos.Networking.Requests.Messages.RegisterPushNotificationMessage.GcmToken gcm_token = 2;
*/
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmTokenOrBuilder getGcmTokenOrBuilder() {
return getGcmToken();
}
private byte memoizedIsInitialized = -1;
@java.lang.Override
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
@java.lang.Override
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
if (apnToken_ != null) {
output.writeMessage(1, getApnToken());
}
if (gcmToken_ != null) {
output.writeMessage(2, getGcmToken());
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (apnToken_ != null) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(1, getApnToken());
}
if (gcmToken_ != null) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(2, getGcmToken());
}
size += unknownFields.getSerializedSize();
memoizedSize = size;
return size;
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.PushNotificationRegistryMessage)) {
return super.equals(obj);
}
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.PushNotificationRegistryMessage other = (POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.PushNotificationRegistryMessage) obj;
boolean result = true;
result = result && (hasApnToken() == other.hasApnToken());
if (hasApnToken()) {
result = result && getApnToken()
.equals(other.getApnToken());
}
result = result && (hasGcmToken() == other.hasGcmToken());
if (hasGcmToken()) {
result = result && getGcmToken()
.equals(other.getGcmToken());
}
result = result && unknownFields.equals(other.unknownFields);
return result;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
if (hasApnToken()) {
hash = (37 * hash) + APN_TOKEN_FIELD_NUMBER;
hash = (53 * hash) + getApnToken().hashCode();
}
if (hasGcmToken()) {
hash = (37 * hash) + GCM_TOKEN_FIELD_NUMBER;
hash = (53 * hash) + getGcmToken().hashCode();
}
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.PushNotificationRegistryMessage parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.PushNotificationRegistryMessage parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.PushNotificationRegistryMessage parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.PushNotificationRegistryMessage parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.PushNotificationRegistryMessage parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.PushNotificationRegistryMessage parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.PushNotificationRegistryMessage parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.PushNotificationRegistryMessage parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.PushNotificationRegistryMessage parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.PushNotificationRegistryMessage parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.PushNotificationRegistryMessage parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.PushNotificationRegistryMessage parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
@java.lang.Override
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder() {
return DEFAULT_INSTANCE.toBuilder();
}
public static Builder newBuilder(POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.PushNotificationRegistryMessage prototype) {
return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
}
@java.lang.Override
public Builder toBuilder() {
return this == DEFAULT_INSTANCE
? new Builder() : new Builder().mergeFrom(this);
}
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
* Protobuf type {@code POGOProtos.Networking.Requests.Messages.PushNotificationRegistryMessage}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:POGOProtos.Networking.Requests.Messages.PushNotificationRegistryMessage)
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.PushNotificationRegistryMessageOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_PushNotificationRegistryMessage_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_PushNotificationRegistryMessage_fieldAccessorTable
.ensureFieldAccessorsInitialized(
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.PushNotificationRegistryMessage.class, POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.PushNotificationRegistryMessage.Builder.class);
}
// Construct using POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.PushNotificationRegistryMessage.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
}
}
@java.lang.Override
public Builder clear() {
super.clear();
if (apnTokenBuilder_ == null) {
apnToken_ = null;
} else {
apnToken_ = null;
apnTokenBuilder_ = null;
}
if (gcmTokenBuilder_ == null) {
gcmToken_ = null;
} else {
gcmToken_ = null;
gcmTokenBuilder_ = null;
}
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_PushNotificationRegistryMessage_descriptor;
}
@java.lang.Override
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.PushNotificationRegistryMessage getDefaultInstanceForType() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.PushNotificationRegistryMessage.getDefaultInstance();
}
@java.lang.Override
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.PushNotificationRegistryMessage build() {
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.PushNotificationRegistryMessage result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.PushNotificationRegistryMessage buildPartial() {
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.PushNotificationRegistryMessage result = new POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.PushNotificationRegistryMessage(this);
if (apnTokenBuilder_ == null) {
result.apnToken_ = apnToken_;
} else {
result.apnToken_ = apnTokenBuilder_.build();
}
if (gcmTokenBuilder_ == null) {
result.gcmToken_ = gcmToken_;
} else {
result.gcmToken_ = gcmTokenBuilder_.build();
}
onBuilt();
return result;
}
@java.lang.Override
public Builder clone() {
return (Builder) super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.setField(field, value);
}
@java.lang.Override
public Builder clearField(
com.google.protobuf.Descriptors.FieldDescriptor field) {
return (Builder) super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(
com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return (Builder) super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index, java.lang.Object value) {
return (Builder) super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.PushNotificationRegistryMessage) {
return mergeFrom((POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.PushNotificationRegistryMessage)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.PushNotificationRegistryMessage other) {
if (other == POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.PushNotificationRegistryMessage.getDefaultInstance()) return this;
if (other.hasApnToken()) {
mergeApnToken(other.getApnToken());
}
if (other.hasGcmToken()) {
mergeGcmToken(other.getGcmToken());
}
this.mergeUnknownFields(other.unknownFields);
onChanged();
return this;
}
@java.lang.Override
public final boolean isInitialized() {
return true;
}
@java.lang.Override
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.PushNotificationRegistryMessage parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.PushNotificationRegistryMessage) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnToken apnToken_ = null;
private com.google.protobuf.SingleFieldBuilderV3<
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnToken, POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnToken.Builder, POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnTokenOrBuilder> apnTokenBuilder_;
/**
* .POGOProtos.Networking.Requests.Messages.RegisterPushNotificationMessage.ApnToken apn_token = 1;
*/
public boolean hasApnToken() {
return apnTokenBuilder_ != null || apnToken_ != null;
}
/**
* .POGOProtos.Networking.Requests.Messages.RegisterPushNotificationMessage.ApnToken apn_token = 1;
*/
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnToken getApnToken() {
if (apnTokenBuilder_ == null) {
return apnToken_ == null ? POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnToken.getDefaultInstance() : apnToken_;
} else {
return apnTokenBuilder_.getMessage();
}
}
/**
* .POGOProtos.Networking.Requests.Messages.RegisterPushNotificationMessage.ApnToken apn_token = 1;
*/
public Builder setApnToken(POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnToken value) {
if (apnTokenBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
apnToken_ = value;
onChanged();
} else {
apnTokenBuilder_.setMessage(value);
}
return this;
}
/**
* .POGOProtos.Networking.Requests.Messages.RegisterPushNotificationMessage.ApnToken apn_token = 1;
*/
public Builder setApnToken(
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnToken.Builder builderForValue) {
if (apnTokenBuilder_ == null) {
apnToken_ = builderForValue.build();
onChanged();
} else {
apnTokenBuilder_.setMessage(builderForValue.build());
}
return this;
}
/**
* .POGOProtos.Networking.Requests.Messages.RegisterPushNotificationMessage.ApnToken apn_token = 1;
*/
public Builder mergeApnToken(POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnToken value) {
if (apnTokenBuilder_ == null) {
if (apnToken_ != null) {
apnToken_ =
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnToken.newBuilder(apnToken_).mergeFrom(value).buildPartial();
} else {
apnToken_ = value;
}
onChanged();
} else {
apnTokenBuilder_.mergeFrom(value);
}
return this;
}
/**
* .POGOProtos.Networking.Requests.Messages.RegisterPushNotificationMessage.ApnToken apn_token = 1;
*/
public Builder clearApnToken() {
if (apnTokenBuilder_ == null) {
apnToken_ = null;
onChanged();
} else {
apnToken_ = null;
apnTokenBuilder_ = null;
}
return this;
}
/**
* .POGOProtos.Networking.Requests.Messages.RegisterPushNotificationMessage.ApnToken apn_token = 1;
*/
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnToken.Builder getApnTokenBuilder() {
onChanged();
return getApnTokenFieldBuilder().getBuilder();
}
/**
* .POGOProtos.Networking.Requests.Messages.RegisterPushNotificationMessage.ApnToken apn_token = 1;
*/
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnTokenOrBuilder getApnTokenOrBuilder() {
if (apnTokenBuilder_ != null) {
return apnTokenBuilder_.getMessageOrBuilder();
} else {
return apnToken_ == null ?
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnToken.getDefaultInstance() : apnToken_;
}
}
/**
* .POGOProtos.Networking.Requests.Messages.RegisterPushNotificationMessage.ApnToken apn_token = 1;
*/
private com.google.protobuf.SingleFieldBuilderV3<
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnToken, POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnToken.Builder, POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnTokenOrBuilder>
getApnTokenFieldBuilder() {
if (apnTokenBuilder_ == null) {
apnTokenBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnToken, POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnToken.Builder, POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.ApnTokenOrBuilder>(
getApnToken(),
getParentForChildren(),
isClean());
apnToken_ = null;
}
return apnTokenBuilder_;
}
private POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmToken gcmToken_ = null;
private com.google.protobuf.SingleFieldBuilderV3<
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmToken, POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmToken.Builder, POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmTokenOrBuilder> gcmTokenBuilder_;
/**
* .POGOProtos.Networking.Requests.Messages.RegisterPushNotificationMessage.GcmToken gcm_token = 2;
*/
public boolean hasGcmToken() {
return gcmTokenBuilder_ != null || gcmToken_ != null;
}
/**
* .POGOProtos.Networking.Requests.Messages.RegisterPushNotificationMessage.GcmToken gcm_token = 2;
*/
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmToken getGcmToken() {
if (gcmTokenBuilder_ == null) {
return gcmToken_ == null ? POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmToken.getDefaultInstance() : gcmToken_;
} else {
return gcmTokenBuilder_.getMessage();
}
}
/**
* .POGOProtos.Networking.Requests.Messages.RegisterPushNotificationMessage.GcmToken gcm_token = 2;
*/
public Builder setGcmToken(POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmToken value) {
if (gcmTokenBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
gcmToken_ = value;
onChanged();
} else {
gcmTokenBuilder_.setMessage(value);
}
return this;
}
/**
* .POGOProtos.Networking.Requests.Messages.RegisterPushNotificationMessage.GcmToken gcm_token = 2;
*/
public Builder setGcmToken(
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmToken.Builder builderForValue) {
if (gcmTokenBuilder_ == null) {
gcmToken_ = builderForValue.build();
onChanged();
} else {
gcmTokenBuilder_.setMessage(builderForValue.build());
}
return this;
}
/**
* .POGOProtos.Networking.Requests.Messages.RegisterPushNotificationMessage.GcmToken gcm_token = 2;
*/
public Builder mergeGcmToken(POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmToken value) {
if (gcmTokenBuilder_ == null) {
if (gcmToken_ != null) {
gcmToken_ =
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmToken.newBuilder(gcmToken_).mergeFrom(value).buildPartial();
} else {
gcmToken_ = value;
}
onChanged();
} else {
gcmTokenBuilder_.mergeFrom(value);
}
return this;
}
/**
* .POGOProtos.Networking.Requests.Messages.RegisterPushNotificationMessage.GcmToken gcm_token = 2;
*/
public Builder clearGcmToken() {
if (gcmTokenBuilder_ == null) {
gcmToken_ = null;
onChanged();
} else {
gcmToken_ = null;
gcmTokenBuilder_ = null;
}
return this;
}
/**
* .POGOProtos.Networking.Requests.Messages.RegisterPushNotificationMessage.GcmToken gcm_token = 2;
*/
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmToken.Builder getGcmTokenBuilder() {
onChanged();
return getGcmTokenFieldBuilder().getBuilder();
}
/**
* .POGOProtos.Networking.Requests.Messages.RegisterPushNotificationMessage.GcmToken gcm_token = 2;
*/
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmTokenOrBuilder getGcmTokenOrBuilder() {
if (gcmTokenBuilder_ != null) {
return gcmTokenBuilder_.getMessageOrBuilder();
} else {
return gcmToken_ == null ?
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmToken.getDefaultInstance() : gcmToken_;
}
}
/**
* .POGOProtos.Networking.Requests.Messages.RegisterPushNotificationMessage.GcmToken gcm_token = 2;
*/
private com.google.protobuf.SingleFieldBuilderV3<
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmToken, POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmToken.Builder, POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmTokenOrBuilder>
getGcmTokenFieldBuilder() {
if (gcmTokenBuilder_ == null) {
gcmTokenBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmToken, POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmToken.Builder, POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RegisterPushNotificationMessage.GcmTokenOrBuilder>(
getGcmToken(),
getParentForChildren(),
isClean());
gcmToken_ = null;
}
return gcmTokenBuilder_;
}
@java.lang.Override
public final Builder setUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.setUnknownFieldsProto3(unknownFields);
}
@java.lang.Override
public final Builder mergeUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.mergeUnknownFields(unknownFields);
}
// @@protoc_insertion_point(builder_scope:POGOProtos.Networking.Requests.Messages.PushNotificationRegistryMessage)
}
// @@protoc_insertion_point(class_scope:POGOProtos.Networking.Requests.Messages.PushNotificationRegistryMessage)
private static final POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.PushNotificationRegistryMessage DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.PushNotificationRegistryMessage();
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.PushNotificationRegistryMessage getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public PushNotificationRegistryMessage parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new PushNotificationRegistryMessage(input, extensionRegistry);
}
};
public static com.google.protobuf.Parser parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
@java.lang.Override
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.PushNotificationRegistryMessage getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
public interface AddLoginActionMessageOrBuilder extends
// @@protoc_insertion_point(interface_extends:POGOProtos.Networking.Requests.Messages.AddLoginActionMessage)
com.google.protobuf.MessageOrBuilder {
/**
* .POGOProtos.Enums.IdentityProvider identity_provider = 1;
*/
int getIdentityProviderValue();
/**
* .POGOProtos.Enums.IdentityProvider identity_provider = 1;
*/
POGOProtos.Enums.IdentityProviderOuterClass.IdentityProvider getIdentityProvider();
/**
* bytes inner_message = 2;
*/
com.google.protobuf.ByteString getInnerMessage();
}
/**
* Protobuf type {@code POGOProtos.Networking.Requests.Messages.AddLoginActionMessage}
*/
public static final class AddLoginActionMessage extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:POGOProtos.Networking.Requests.Messages.AddLoginActionMessage)
AddLoginActionMessageOrBuilder {
private static final long serialVersionUID = 0L;
// Use AddLoginActionMessage.newBuilder() to construct.
private AddLoginActionMessage(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private AddLoginActionMessage() {
identityProvider_ = 0;
innerMessage_ = com.google.protobuf.ByteString.EMPTY;
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private AddLoginActionMessage(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
this();
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
int mutable_bitField0_ = 0;
com.google.protobuf.UnknownFieldSet.Builder unknownFields =
com.google.protobuf.UnknownFieldSet.newBuilder();
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 8: {
int rawValue = input.readEnum();
identityProvider_ = rawValue;
break;
}
case 18: {
innerMessage_ = input.readBytes();
break;
}
default: {
if (!parseUnknownFieldProto3(
input, unknownFields, extensionRegistry, tag)) {
done = true;
}
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e).setUnfinishedMessage(this);
} finally {
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_AddLoginActionMessage_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_AddLoginActionMessage_fieldAccessorTable
.ensureFieldAccessorsInitialized(
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddLoginActionMessage.class, POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddLoginActionMessage.Builder.class);
}
public static final int IDENTITY_PROVIDER_FIELD_NUMBER = 1;
private int identityProvider_;
/**
* .POGOProtos.Enums.IdentityProvider identity_provider = 1;
*/
public int getIdentityProviderValue() {
return identityProvider_;
}
/**
* .POGOProtos.Enums.IdentityProvider identity_provider = 1;
*/
public POGOProtos.Enums.IdentityProviderOuterClass.IdentityProvider getIdentityProvider() {
@SuppressWarnings("deprecation")
POGOProtos.Enums.IdentityProviderOuterClass.IdentityProvider result = POGOProtos.Enums.IdentityProviderOuterClass.IdentityProvider.valueOf(identityProvider_);
return result == null ? POGOProtos.Enums.IdentityProviderOuterClass.IdentityProvider.UNRECOGNIZED : result;
}
public static final int INNER_MESSAGE_FIELD_NUMBER = 2;
private com.google.protobuf.ByteString innerMessage_;
/**
* bytes inner_message = 2;
*/
public com.google.protobuf.ByteString getInnerMessage() {
return innerMessage_;
}
private byte memoizedIsInitialized = -1;
@java.lang.Override
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
@java.lang.Override
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
if (identityProvider_ != POGOProtos.Enums.IdentityProviderOuterClass.IdentityProvider.UNSET_IDENTITY_PROVIDER.getNumber()) {
output.writeEnum(1, identityProvider_);
}
if (!innerMessage_.isEmpty()) {
output.writeBytes(2, innerMessage_);
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (identityProvider_ != POGOProtos.Enums.IdentityProviderOuterClass.IdentityProvider.UNSET_IDENTITY_PROVIDER.getNumber()) {
size += com.google.protobuf.CodedOutputStream
.computeEnumSize(1, identityProvider_);
}
if (!innerMessage_.isEmpty()) {
size += com.google.protobuf.CodedOutputStream
.computeBytesSize(2, innerMessage_);
}
size += unknownFields.getSerializedSize();
memoizedSize = size;
return size;
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddLoginActionMessage)) {
return super.equals(obj);
}
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddLoginActionMessage other = (POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddLoginActionMessage) obj;
boolean result = true;
result = result && identityProvider_ == other.identityProvider_;
result = result && getInnerMessage()
.equals(other.getInnerMessage());
result = result && unknownFields.equals(other.unknownFields);
return result;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
hash = (37 * hash) + IDENTITY_PROVIDER_FIELD_NUMBER;
hash = (53 * hash) + identityProvider_;
hash = (37 * hash) + INNER_MESSAGE_FIELD_NUMBER;
hash = (53 * hash) + getInnerMessage().hashCode();
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddLoginActionMessage parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddLoginActionMessage parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddLoginActionMessage parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddLoginActionMessage parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddLoginActionMessage parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddLoginActionMessage parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddLoginActionMessage parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddLoginActionMessage parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddLoginActionMessage parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddLoginActionMessage parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddLoginActionMessage parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddLoginActionMessage parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
@java.lang.Override
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder() {
return DEFAULT_INSTANCE.toBuilder();
}
public static Builder newBuilder(POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddLoginActionMessage prototype) {
return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
}
@java.lang.Override
public Builder toBuilder() {
return this == DEFAULT_INSTANCE
? new Builder() : new Builder().mergeFrom(this);
}
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
* Protobuf type {@code POGOProtos.Networking.Requests.Messages.AddLoginActionMessage}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:POGOProtos.Networking.Requests.Messages.AddLoginActionMessage)
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddLoginActionMessageOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_AddLoginActionMessage_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_AddLoginActionMessage_fieldAccessorTable
.ensureFieldAccessorsInitialized(
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddLoginActionMessage.class, POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddLoginActionMessage.Builder.class);
}
// Construct using POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddLoginActionMessage.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
}
}
@java.lang.Override
public Builder clear() {
super.clear();
identityProvider_ = 0;
innerMessage_ = com.google.protobuf.ByteString.EMPTY;
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_AddLoginActionMessage_descriptor;
}
@java.lang.Override
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddLoginActionMessage getDefaultInstanceForType() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddLoginActionMessage.getDefaultInstance();
}
@java.lang.Override
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddLoginActionMessage build() {
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddLoginActionMessage result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddLoginActionMessage buildPartial() {
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddLoginActionMessage result = new POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddLoginActionMessage(this);
result.identityProvider_ = identityProvider_;
result.innerMessage_ = innerMessage_;
onBuilt();
return result;
}
@java.lang.Override
public Builder clone() {
return (Builder) super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.setField(field, value);
}
@java.lang.Override
public Builder clearField(
com.google.protobuf.Descriptors.FieldDescriptor field) {
return (Builder) super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(
com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return (Builder) super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index, java.lang.Object value) {
return (Builder) super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddLoginActionMessage) {
return mergeFrom((POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddLoginActionMessage)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddLoginActionMessage other) {
if (other == POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddLoginActionMessage.getDefaultInstance()) return this;
if (other.identityProvider_ != 0) {
setIdentityProviderValue(other.getIdentityProviderValue());
}
if (other.getInnerMessage() != com.google.protobuf.ByteString.EMPTY) {
setInnerMessage(other.getInnerMessage());
}
this.mergeUnknownFields(other.unknownFields);
onChanged();
return this;
}
@java.lang.Override
public final boolean isInitialized() {
return true;
}
@java.lang.Override
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddLoginActionMessage parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddLoginActionMessage) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int identityProvider_ = 0;
/**
* .POGOProtos.Enums.IdentityProvider identity_provider = 1;
*/
public int getIdentityProviderValue() {
return identityProvider_;
}
/**
* .POGOProtos.Enums.IdentityProvider identity_provider = 1;
*/
public Builder setIdentityProviderValue(int value) {
identityProvider_ = value;
onChanged();
return this;
}
/**
* .POGOProtos.Enums.IdentityProvider identity_provider = 1;
*/
public POGOProtos.Enums.IdentityProviderOuterClass.IdentityProvider getIdentityProvider() {
@SuppressWarnings("deprecation")
POGOProtos.Enums.IdentityProviderOuterClass.IdentityProvider result = POGOProtos.Enums.IdentityProviderOuterClass.IdentityProvider.valueOf(identityProvider_);
return result == null ? POGOProtos.Enums.IdentityProviderOuterClass.IdentityProvider.UNRECOGNIZED : result;
}
/**
* .POGOProtos.Enums.IdentityProvider identity_provider = 1;
*/
public Builder setIdentityProvider(POGOProtos.Enums.IdentityProviderOuterClass.IdentityProvider value) {
if (value == null) {
throw new NullPointerException();
}
identityProvider_ = value.getNumber();
onChanged();
return this;
}
/**
* .POGOProtos.Enums.IdentityProvider identity_provider = 1;
*/
public Builder clearIdentityProvider() {
identityProvider_ = 0;
onChanged();
return this;
}
private com.google.protobuf.ByteString innerMessage_ = com.google.protobuf.ByteString.EMPTY;
/**
* bytes inner_message = 2;
*/
public com.google.protobuf.ByteString getInnerMessage() {
return innerMessage_;
}
/**
* bytes inner_message = 2;
*/
public Builder setInnerMessage(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
innerMessage_ = value;
onChanged();
return this;
}
/**
* bytes inner_message = 2;
*/
public Builder clearInnerMessage() {
innerMessage_ = getDefaultInstance().getInnerMessage();
onChanged();
return this;
}
@java.lang.Override
public final Builder setUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.setUnknownFieldsProto3(unknownFields);
}
@java.lang.Override
public final Builder mergeUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.mergeUnknownFields(unknownFields);
}
// @@protoc_insertion_point(builder_scope:POGOProtos.Networking.Requests.Messages.AddLoginActionMessage)
}
// @@protoc_insertion_point(class_scope:POGOProtos.Networking.Requests.Messages.AddLoginActionMessage)
private static final POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddLoginActionMessage DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddLoginActionMessage();
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddLoginActionMessage getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public AddLoginActionMessage parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new AddLoginActionMessage(input, extensionRegistry);
}
};
public static com.google.protobuf.Parser parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
@java.lang.Override
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddLoginActionMessage getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
public interface RemoveLoginActionMessageOrBuilder extends
// @@protoc_insertion_point(interface_extends:POGOProtos.Networking.Requests.Messages.RemoveLoginActionMessage)
com.google.protobuf.MessageOrBuilder {
/**
* .POGOProtos.Enums.IdentityProvider identity_provider = 1;
*/
int getIdentityProviderValue();
/**
* .POGOProtos.Enums.IdentityProvider identity_provider = 1;
*/
POGOProtos.Enums.IdentityProviderOuterClass.IdentityProvider getIdentityProvider();
}
/**
* Protobuf type {@code POGOProtos.Networking.Requests.Messages.RemoveLoginActionMessage}
*/
public static final class RemoveLoginActionMessage extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:POGOProtos.Networking.Requests.Messages.RemoveLoginActionMessage)
RemoveLoginActionMessageOrBuilder {
private static final long serialVersionUID = 0L;
// Use RemoveLoginActionMessage.newBuilder() to construct.
private RemoveLoginActionMessage(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private RemoveLoginActionMessage() {
identityProvider_ = 0;
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private RemoveLoginActionMessage(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
this();
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
int mutable_bitField0_ = 0;
com.google.protobuf.UnknownFieldSet.Builder unknownFields =
com.google.protobuf.UnknownFieldSet.newBuilder();
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 8: {
int rawValue = input.readEnum();
identityProvider_ = rawValue;
break;
}
default: {
if (!parseUnknownFieldProto3(
input, unknownFields, extensionRegistry, tag)) {
done = true;
}
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e).setUnfinishedMessage(this);
} finally {
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_RemoveLoginActionMessage_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_RemoveLoginActionMessage_fieldAccessorTable
.ensureFieldAccessorsInitialized(
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RemoveLoginActionMessage.class, POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RemoveLoginActionMessage.Builder.class);
}
public static final int IDENTITY_PROVIDER_FIELD_NUMBER = 1;
private int identityProvider_;
/**
* .POGOProtos.Enums.IdentityProvider identity_provider = 1;
*/
public int getIdentityProviderValue() {
return identityProvider_;
}
/**
* .POGOProtos.Enums.IdentityProvider identity_provider = 1;
*/
public POGOProtos.Enums.IdentityProviderOuterClass.IdentityProvider getIdentityProvider() {
@SuppressWarnings("deprecation")
POGOProtos.Enums.IdentityProviderOuterClass.IdentityProvider result = POGOProtos.Enums.IdentityProviderOuterClass.IdentityProvider.valueOf(identityProvider_);
return result == null ? POGOProtos.Enums.IdentityProviderOuterClass.IdentityProvider.UNRECOGNIZED : result;
}
private byte memoizedIsInitialized = -1;
@java.lang.Override
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
@java.lang.Override
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
if (identityProvider_ != POGOProtos.Enums.IdentityProviderOuterClass.IdentityProvider.UNSET_IDENTITY_PROVIDER.getNumber()) {
output.writeEnum(1, identityProvider_);
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (identityProvider_ != POGOProtos.Enums.IdentityProviderOuterClass.IdentityProvider.UNSET_IDENTITY_PROVIDER.getNumber()) {
size += com.google.protobuf.CodedOutputStream
.computeEnumSize(1, identityProvider_);
}
size += unknownFields.getSerializedSize();
memoizedSize = size;
return size;
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RemoveLoginActionMessage)) {
return super.equals(obj);
}
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RemoveLoginActionMessage other = (POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RemoveLoginActionMessage) obj;
boolean result = true;
result = result && identityProvider_ == other.identityProvider_;
result = result && unknownFields.equals(other.unknownFields);
return result;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
hash = (37 * hash) + IDENTITY_PROVIDER_FIELD_NUMBER;
hash = (53 * hash) + identityProvider_;
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RemoveLoginActionMessage parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RemoveLoginActionMessage parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RemoveLoginActionMessage parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RemoveLoginActionMessage parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RemoveLoginActionMessage parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RemoveLoginActionMessage parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RemoveLoginActionMessage parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RemoveLoginActionMessage parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RemoveLoginActionMessage parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RemoveLoginActionMessage parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RemoveLoginActionMessage parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RemoveLoginActionMessage parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
@java.lang.Override
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder() {
return DEFAULT_INSTANCE.toBuilder();
}
public static Builder newBuilder(POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RemoveLoginActionMessage prototype) {
return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
}
@java.lang.Override
public Builder toBuilder() {
return this == DEFAULT_INSTANCE
? new Builder() : new Builder().mergeFrom(this);
}
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
* Protobuf type {@code POGOProtos.Networking.Requests.Messages.RemoveLoginActionMessage}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:POGOProtos.Networking.Requests.Messages.RemoveLoginActionMessage)
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RemoveLoginActionMessageOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_RemoveLoginActionMessage_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_RemoveLoginActionMessage_fieldAccessorTable
.ensureFieldAccessorsInitialized(
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RemoveLoginActionMessage.class, POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RemoveLoginActionMessage.Builder.class);
}
// Construct using POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RemoveLoginActionMessage.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
}
}
@java.lang.Override
public Builder clear() {
super.clear();
identityProvider_ = 0;
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_RemoveLoginActionMessage_descriptor;
}
@java.lang.Override
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RemoveLoginActionMessage getDefaultInstanceForType() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RemoveLoginActionMessage.getDefaultInstance();
}
@java.lang.Override
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RemoveLoginActionMessage build() {
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RemoveLoginActionMessage result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RemoveLoginActionMessage buildPartial() {
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RemoveLoginActionMessage result = new POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RemoveLoginActionMessage(this);
result.identityProvider_ = identityProvider_;
onBuilt();
return result;
}
@java.lang.Override
public Builder clone() {
return (Builder) super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.setField(field, value);
}
@java.lang.Override
public Builder clearField(
com.google.protobuf.Descriptors.FieldDescriptor field) {
return (Builder) super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(
com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return (Builder) super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index, java.lang.Object value) {
return (Builder) super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RemoveLoginActionMessage) {
return mergeFrom((POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RemoveLoginActionMessage)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RemoveLoginActionMessage other) {
if (other == POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RemoveLoginActionMessage.getDefaultInstance()) return this;
if (other.identityProvider_ != 0) {
setIdentityProviderValue(other.getIdentityProviderValue());
}
this.mergeUnknownFields(other.unknownFields);
onChanged();
return this;
}
@java.lang.Override
public final boolean isInitialized() {
return true;
}
@java.lang.Override
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RemoveLoginActionMessage parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RemoveLoginActionMessage) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int identityProvider_ = 0;
/**
* .POGOProtos.Enums.IdentityProvider identity_provider = 1;
*/
public int getIdentityProviderValue() {
return identityProvider_;
}
/**
* .POGOProtos.Enums.IdentityProvider identity_provider = 1;
*/
public Builder setIdentityProviderValue(int value) {
identityProvider_ = value;
onChanged();
return this;
}
/**
* .POGOProtos.Enums.IdentityProvider identity_provider = 1;
*/
public POGOProtos.Enums.IdentityProviderOuterClass.IdentityProvider getIdentityProvider() {
@SuppressWarnings("deprecation")
POGOProtos.Enums.IdentityProviderOuterClass.IdentityProvider result = POGOProtos.Enums.IdentityProviderOuterClass.IdentityProvider.valueOf(identityProvider_);
return result == null ? POGOProtos.Enums.IdentityProviderOuterClass.IdentityProvider.UNRECOGNIZED : result;
}
/**
* .POGOProtos.Enums.IdentityProvider identity_provider = 1;
*/
public Builder setIdentityProvider(POGOProtos.Enums.IdentityProviderOuterClass.IdentityProvider value) {
if (value == null) {
throw new NullPointerException();
}
identityProvider_ = value.getNumber();
onChanged();
return this;
}
/**
* .POGOProtos.Enums.IdentityProvider identity_provider = 1;
*/
public Builder clearIdentityProvider() {
identityProvider_ = 0;
onChanged();
return this;
}
@java.lang.Override
public final Builder setUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.setUnknownFieldsProto3(unknownFields);
}
@java.lang.Override
public final Builder mergeUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.mergeUnknownFields(unknownFields);
}
// @@protoc_insertion_point(builder_scope:POGOProtos.Networking.Requests.Messages.RemoveLoginActionMessage)
}
// @@protoc_insertion_point(class_scope:POGOProtos.Networking.Requests.Messages.RemoveLoginActionMessage)
private static final POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RemoveLoginActionMessage DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RemoveLoginActionMessage();
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RemoveLoginActionMessage getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public RemoveLoginActionMessage parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new RemoveLoginActionMessage(input, extensionRegistry);
}
};
public static com.google.protobuf.Parser parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
@java.lang.Override
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.RemoveLoginActionMessage getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
public interface SubmitNewPoiMessageOrBuilder extends
// @@protoc_insertion_point(interface_extends:POGOProtos.Networking.Requests.Messages.SubmitNewPoiMessage)
com.google.protobuf.MessageOrBuilder {
/**
* string title = 1;
*/
java.lang.String getTitle();
/**
* string title = 1;
*/
com.google.protobuf.ByteString
getTitleBytes();
/**
* string long_description = 2;
*/
java.lang.String getLongDescription();
/**
* string long_description = 2;
*/
com.google.protobuf.ByteString
getLongDescriptionBytes();
/**
* int32 lat_e6 = 4;
*/
int getLatE6();
/**
* int32 lng_e6 = 5;
*/
int getLngE6();
/**
* string supporting_statement = 14;
*/
java.lang.String getSupportingStatement();
/**
* string supporting_statement = 14;
*/
com.google.protobuf.ByteString
getSupportingStatementBytes();
}
/**
* Protobuf type {@code POGOProtos.Networking.Requests.Messages.SubmitNewPoiMessage}
*/
public static final class SubmitNewPoiMessage extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:POGOProtos.Networking.Requests.Messages.SubmitNewPoiMessage)
SubmitNewPoiMessageOrBuilder {
private static final long serialVersionUID = 0L;
// Use SubmitNewPoiMessage.newBuilder() to construct.
private SubmitNewPoiMessage(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private SubmitNewPoiMessage() {
title_ = "";
longDescription_ = "";
latE6_ = 0;
lngE6_ = 0;
supportingStatement_ = "";
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private SubmitNewPoiMessage(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
this();
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
int mutable_bitField0_ = 0;
com.google.protobuf.UnknownFieldSet.Builder unknownFields =
com.google.protobuf.UnknownFieldSet.newBuilder();
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 10: {
java.lang.String s = input.readStringRequireUtf8();
title_ = s;
break;
}
case 18: {
java.lang.String s = input.readStringRequireUtf8();
longDescription_ = s;
break;
}
case 32: {
latE6_ = input.readInt32();
break;
}
case 40: {
lngE6_ = input.readInt32();
break;
}
case 114: {
java.lang.String s = input.readStringRequireUtf8();
supportingStatement_ = s;
break;
}
default: {
if (!parseUnknownFieldProto3(
input, unknownFields, extensionRegistry, tag)) {
done = true;
}
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e).setUnfinishedMessage(this);
} finally {
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_SubmitNewPoiMessage_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_SubmitNewPoiMessage_fieldAccessorTable
.ensureFieldAccessorsInitialized(
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.SubmitNewPoiMessage.class, POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.SubmitNewPoiMessage.Builder.class);
}
public static final int TITLE_FIELD_NUMBER = 1;
private volatile java.lang.Object title_;
/**
* string title = 1;
*/
public java.lang.String getTitle() {
java.lang.Object ref = title_;
if (ref instanceof java.lang.String) {
return (java.lang.String) ref;
} else {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
title_ = s;
return s;
}
}
/**
* string title = 1;
*/
public com.google.protobuf.ByteString
getTitleBytes() {
java.lang.Object ref = title_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
title_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int LONG_DESCRIPTION_FIELD_NUMBER = 2;
private volatile java.lang.Object longDescription_;
/**
* string long_description = 2;
*/
public java.lang.String getLongDescription() {
java.lang.Object ref = longDescription_;
if (ref instanceof java.lang.String) {
return (java.lang.String) ref;
} else {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
longDescription_ = s;
return s;
}
}
/**
* string long_description = 2;
*/
public com.google.protobuf.ByteString
getLongDescriptionBytes() {
java.lang.Object ref = longDescription_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
longDescription_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int LAT_E6_FIELD_NUMBER = 4;
private int latE6_;
/**
* int32 lat_e6 = 4;
*/
public int getLatE6() {
return latE6_;
}
public static final int LNG_E6_FIELD_NUMBER = 5;
private int lngE6_;
/**
* int32 lng_e6 = 5;
*/
public int getLngE6() {
return lngE6_;
}
public static final int SUPPORTING_STATEMENT_FIELD_NUMBER = 14;
private volatile java.lang.Object supportingStatement_;
/**
* string supporting_statement = 14;
*/
public java.lang.String getSupportingStatement() {
java.lang.Object ref = supportingStatement_;
if (ref instanceof java.lang.String) {
return (java.lang.String) ref;
} else {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
supportingStatement_ = s;
return s;
}
}
/**
* string supporting_statement = 14;
*/
public com.google.protobuf.ByteString
getSupportingStatementBytes() {
java.lang.Object ref = supportingStatement_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
supportingStatement_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
private byte memoizedIsInitialized = -1;
@java.lang.Override
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
@java.lang.Override
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
if (!getTitleBytes().isEmpty()) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 1, title_);
}
if (!getLongDescriptionBytes().isEmpty()) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 2, longDescription_);
}
if (latE6_ != 0) {
output.writeInt32(4, latE6_);
}
if (lngE6_ != 0) {
output.writeInt32(5, lngE6_);
}
if (!getSupportingStatementBytes().isEmpty()) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 14, supportingStatement_);
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (!getTitleBytes().isEmpty()) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, title_);
}
if (!getLongDescriptionBytes().isEmpty()) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, longDescription_);
}
if (latE6_ != 0) {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(4, latE6_);
}
if (lngE6_ != 0) {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(5, lngE6_);
}
if (!getSupportingStatementBytes().isEmpty()) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(14, supportingStatement_);
}
size += unknownFields.getSerializedSize();
memoizedSize = size;
return size;
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.SubmitNewPoiMessage)) {
return super.equals(obj);
}
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.SubmitNewPoiMessage other = (POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.SubmitNewPoiMessage) obj;
boolean result = true;
result = result && getTitle()
.equals(other.getTitle());
result = result && getLongDescription()
.equals(other.getLongDescription());
result = result && (getLatE6()
== other.getLatE6());
result = result && (getLngE6()
== other.getLngE6());
result = result && getSupportingStatement()
.equals(other.getSupportingStatement());
result = result && unknownFields.equals(other.unknownFields);
return result;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
hash = (37 * hash) + TITLE_FIELD_NUMBER;
hash = (53 * hash) + getTitle().hashCode();
hash = (37 * hash) + LONG_DESCRIPTION_FIELD_NUMBER;
hash = (53 * hash) + getLongDescription().hashCode();
hash = (37 * hash) + LAT_E6_FIELD_NUMBER;
hash = (53 * hash) + getLatE6();
hash = (37 * hash) + LNG_E6_FIELD_NUMBER;
hash = (53 * hash) + getLngE6();
hash = (37 * hash) + SUPPORTING_STATEMENT_FIELD_NUMBER;
hash = (53 * hash) + getSupportingStatement().hashCode();
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.SubmitNewPoiMessage parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.SubmitNewPoiMessage parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.SubmitNewPoiMessage parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.SubmitNewPoiMessage parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.SubmitNewPoiMessage parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.SubmitNewPoiMessage parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.SubmitNewPoiMessage parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.SubmitNewPoiMessage parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.SubmitNewPoiMessage parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.SubmitNewPoiMessage parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.SubmitNewPoiMessage parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.SubmitNewPoiMessage parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
@java.lang.Override
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder() {
return DEFAULT_INSTANCE.toBuilder();
}
public static Builder newBuilder(POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.SubmitNewPoiMessage prototype) {
return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
}
@java.lang.Override
public Builder toBuilder() {
return this == DEFAULT_INSTANCE
? new Builder() : new Builder().mergeFrom(this);
}
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
* Protobuf type {@code POGOProtos.Networking.Requests.Messages.SubmitNewPoiMessage}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:POGOProtos.Networking.Requests.Messages.SubmitNewPoiMessage)
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.SubmitNewPoiMessageOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_SubmitNewPoiMessage_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_SubmitNewPoiMessage_fieldAccessorTable
.ensureFieldAccessorsInitialized(
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.SubmitNewPoiMessage.class, POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.SubmitNewPoiMessage.Builder.class);
}
// Construct using POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.SubmitNewPoiMessage.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
}
}
@java.lang.Override
public Builder clear() {
super.clear();
title_ = "";
longDescription_ = "";
latE6_ = 0;
lngE6_ = 0;
supportingStatement_ = "";
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_SubmitNewPoiMessage_descriptor;
}
@java.lang.Override
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.SubmitNewPoiMessage getDefaultInstanceForType() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.SubmitNewPoiMessage.getDefaultInstance();
}
@java.lang.Override
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.SubmitNewPoiMessage build() {
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.SubmitNewPoiMessage result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.SubmitNewPoiMessage buildPartial() {
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.SubmitNewPoiMessage result = new POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.SubmitNewPoiMessage(this);
result.title_ = title_;
result.longDescription_ = longDescription_;
result.latE6_ = latE6_;
result.lngE6_ = lngE6_;
result.supportingStatement_ = supportingStatement_;
onBuilt();
return result;
}
@java.lang.Override
public Builder clone() {
return (Builder) super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.setField(field, value);
}
@java.lang.Override
public Builder clearField(
com.google.protobuf.Descriptors.FieldDescriptor field) {
return (Builder) super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(
com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return (Builder) super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index, java.lang.Object value) {
return (Builder) super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.SubmitNewPoiMessage) {
return mergeFrom((POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.SubmitNewPoiMessage)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.SubmitNewPoiMessage other) {
if (other == POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.SubmitNewPoiMessage.getDefaultInstance()) return this;
if (!other.getTitle().isEmpty()) {
title_ = other.title_;
onChanged();
}
if (!other.getLongDescription().isEmpty()) {
longDescription_ = other.longDescription_;
onChanged();
}
if (other.getLatE6() != 0) {
setLatE6(other.getLatE6());
}
if (other.getLngE6() != 0) {
setLngE6(other.getLngE6());
}
if (!other.getSupportingStatement().isEmpty()) {
supportingStatement_ = other.supportingStatement_;
onChanged();
}
this.mergeUnknownFields(other.unknownFields);
onChanged();
return this;
}
@java.lang.Override
public final boolean isInitialized() {
return true;
}
@java.lang.Override
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.SubmitNewPoiMessage parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.SubmitNewPoiMessage) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private java.lang.Object title_ = "";
/**
* string title = 1;
*/
public java.lang.String getTitle() {
java.lang.Object ref = title_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
title_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* string title = 1;
*/
public com.google.protobuf.ByteString
getTitleBytes() {
java.lang.Object ref = title_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
title_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* string title = 1;
*/
public Builder setTitle(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
title_ = value;
onChanged();
return this;
}
/**
* string title = 1;
*/
public Builder clearTitle() {
title_ = getDefaultInstance().getTitle();
onChanged();
return this;
}
/**
* string title = 1;
*/
public Builder setTitleBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
title_ = value;
onChanged();
return this;
}
private java.lang.Object longDescription_ = "";
/**
* string long_description = 2;
*/
public java.lang.String getLongDescription() {
java.lang.Object ref = longDescription_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
longDescription_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* string long_description = 2;
*/
public com.google.protobuf.ByteString
getLongDescriptionBytes() {
java.lang.Object ref = longDescription_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
longDescription_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* string long_description = 2;
*/
public Builder setLongDescription(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
longDescription_ = value;
onChanged();
return this;
}
/**
* string long_description = 2;
*/
public Builder clearLongDescription() {
longDescription_ = getDefaultInstance().getLongDescription();
onChanged();
return this;
}
/**
* string long_description = 2;
*/
public Builder setLongDescriptionBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
longDescription_ = value;
onChanged();
return this;
}
private int latE6_ ;
/**
* int32 lat_e6 = 4;
*/
public int getLatE6() {
return latE6_;
}
/**
* int32 lat_e6 = 4;
*/
public Builder setLatE6(int value) {
latE6_ = value;
onChanged();
return this;
}
/**
* int32 lat_e6 = 4;
*/
public Builder clearLatE6() {
latE6_ = 0;
onChanged();
return this;
}
private int lngE6_ ;
/**
* int32 lng_e6 = 5;
*/
public int getLngE6() {
return lngE6_;
}
/**
* int32 lng_e6 = 5;
*/
public Builder setLngE6(int value) {
lngE6_ = value;
onChanged();
return this;
}
/**
* int32 lng_e6 = 5;
*/
public Builder clearLngE6() {
lngE6_ = 0;
onChanged();
return this;
}
private java.lang.Object supportingStatement_ = "";
/**
* string supporting_statement = 14;
*/
public java.lang.String getSupportingStatement() {
java.lang.Object ref = supportingStatement_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
supportingStatement_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* string supporting_statement = 14;
*/
public com.google.protobuf.ByteString
getSupportingStatementBytes() {
java.lang.Object ref = supportingStatement_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
supportingStatement_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* string supporting_statement = 14;
*/
public Builder setSupportingStatement(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
supportingStatement_ = value;
onChanged();
return this;
}
/**
* string supporting_statement = 14;
*/
public Builder clearSupportingStatement() {
supportingStatement_ = getDefaultInstance().getSupportingStatement();
onChanged();
return this;
}
/**
* string supporting_statement = 14;
*/
public Builder setSupportingStatementBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
supportingStatement_ = value;
onChanged();
return this;
}
@java.lang.Override
public final Builder setUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.setUnknownFieldsProto3(unknownFields);
}
@java.lang.Override
public final Builder mergeUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.mergeUnknownFields(unknownFields);
}
// @@protoc_insertion_point(builder_scope:POGOProtos.Networking.Requests.Messages.SubmitNewPoiMessage)
}
// @@protoc_insertion_point(class_scope:POGOProtos.Networking.Requests.Messages.SubmitNewPoiMessage)
private static final POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.SubmitNewPoiMessage DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.SubmitNewPoiMessage();
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.SubmitNewPoiMessage getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public SubmitNewPoiMessage parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new SubmitNewPoiMessage(input, extensionRegistry);
}
};
public static com.google.protobuf.Parser parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
@java.lang.Override
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.SubmitNewPoiMessage getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
public interface UploadPoiPhotoByUrlMessageOrBuilder extends
// @@protoc_insertion_point(interface_extends:POGOProtos.Networking.Requests.Messages.UploadPoiPhotoByUrlMessage)
com.google.protobuf.MessageOrBuilder {
/**
* string request_id = 1;
*/
java.lang.String getRequestId();
/**
* string request_id = 1;
*/
com.google.protobuf.ByteString
getRequestIdBytes();
/**
* string image_url = 2;
*/
java.lang.String getImageUrl();
/**
* string image_url = 2;
*/
com.google.protobuf.ByteString
getImageUrlBytes();
}
/**
* Protobuf type {@code POGOProtos.Networking.Requests.Messages.UploadPoiPhotoByUrlMessage}
*/
public static final class UploadPoiPhotoByUrlMessage extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:POGOProtos.Networking.Requests.Messages.UploadPoiPhotoByUrlMessage)
UploadPoiPhotoByUrlMessageOrBuilder {
private static final long serialVersionUID = 0L;
// Use UploadPoiPhotoByUrlMessage.newBuilder() to construct.
private UploadPoiPhotoByUrlMessage(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private UploadPoiPhotoByUrlMessage() {
requestId_ = "";
imageUrl_ = "";
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private UploadPoiPhotoByUrlMessage(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
this();
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
int mutable_bitField0_ = 0;
com.google.protobuf.UnknownFieldSet.Builder unknownFields =
com.google.protobuf.UnknownFieldSet.newBuilder();
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 10: {
java.lang.String s = input.readStringRequireUtf8();
requestId_ = s;
break;
}
case 18: {
java.lang.String s = input.readStringRequireUtf8();
imageUrl_ = s;
break;
}
default: {
if (!parseUnknownFieldProto3(
input, unknownFields, extensionRegistry, tag)) {
done = true;
}
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e).setUnfinishedMessage(this);
} finally {
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_UploadPoiPhotoByUrlMessage_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_UploadPoiPhotoByUrlMessage_fieldAccessorTable
.ensureFieldAccessorsInitialized(
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.UploadPoiPhotoByUrlMessage.class, POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.UploadPoiPhotoByUrlMessage.Builder.class);
}
public static final int REQUEST_ID_FIELD_NUMBER = 1;
private volatile java.lang.Object requestId_;
/**
* string request_id = 1;
*/
public java.lang.String getRequestId() {
java.lang.Object ref = requestId_;
if (ref instanceof java.lang.String) {
return (java.lang.String) ref;
} else {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
requestId_ = s;
return s;
}
}
/**
* string request_id = 1;
*/
public com.google.protobuf.ByteString
getRequestIdBytes() {
java.lang.Object ref = requestId_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
requestId_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int IMAGE_URL_FIELD_NUMBER = 2;
private volatile java.lang.Object imageUrl_;
/**
* string image_url = 2;
*/
public java.lang.String getImageUrl() {
java.lang.Object ref = imageUrl_;
if (ref instanceof java.lang.String) {
return (java.lang.String) ref;
} else {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
imageUrl_ = s;
return s;
}
}
/**
* string image_url = 2;
*/
public com.google.protobuf.ByteString
getImageUrlBytes() {
java.lang.Object ref = imageUrl_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
imageUrl_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
private byte memoizedIsInitialized = -1;
@java.lang.Override
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
@java.lang.Override
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
if (!getRequestIdBytes().isEmpty()) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 1, requestId_);
}
if (!getImageUrlBytes().isEmpty()) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 2, imageUrl_);
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (!getRequestIdBytes().isEmpty()) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, requestId_);
}
if (!getImageUrlBytes().isEmpty()) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, imageUrl_);
}
size += unknownFields.getSerializedSize();
memoizedSize = size;
return size;
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.UploadPoiPhotoByUrlMessage)) {
return super.equals(obj);
}
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.UploadPoiPhotoByUrlMessage other = (POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.UploadPoiPhotoByUrlMessage) obj;
boolean result = true;
result = result && getRequestId()
.equals(other.getRequestId());
result = result && getImageUrl()
.equals(other.getImageUrl());
result = result && unknownFields.equals(other.unknownFields);
return result;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
hash = (37 * hash) + REQUEST_ID_FIELD_NUMBER;
hash = (53 * hash) + getRequestId().hashCode();
hash = (37 * hash) + IMAGE_URL_FIELD_NUMBER;
hash = (53 * hash) + getImageUrl().hashCode();
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.UploadPoiPhotoByUrlMessage parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.UploadPoiPhotoByUrlMessage parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.UploadPoiPhotoByUrlMessage parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.UploadPoiPhotoByUrlMessage parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.UploadPoiPhotoByUrlMessage parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.UploadPoiPhotoByUrlMessage parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.UploadPoiPhotoByUrlMessage parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.UploadPoiPhotoByUrlMessage parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.UploadPoiPhotoByUrlMessage parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.UploadPoiPhotoByUrlMessage parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.UploadPoiPhotoByUrlMessage parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.UploadPoiPhotoByUrlMessage parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
@java.lang.Override
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder() {
return DEFAULT_INSTANCE.toBuilder();
}
public static Builder newBuilder(POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.UploadPoiPhotoByUrlMessage prototype) {
return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
}
@java.lang.Override
public Builder toBuilder() {
return this == DEFAULT_INSTANCE
? new Builder() : new Builder().mergeFrom(this);
}
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
* Protobuf type {@code POGOProtos.Networking.Requests.Messages.UploadPoiPhotoByUrlMessage}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:POGOProtos.Networking.Requests.Messages.UploadPoiPhotoByUrlMessage)
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.UploadPoiPhotoByUrlMessageOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_UploadPoiPhotoByUrlMessage_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_UploadPoiPhotoByUrlMessage_fieldAccessorTable
.ensureFieldAccessorsInitialized(
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.UploadPoiPhotoByUrlMessage.class, POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.UploadPoiPhotoByUrlMessage.Builder.class);
}
// Construct using POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.UploadPoiPhotoByUrlMessage.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
}
}
@java.lang.Override
public Builder clear() {
super.clear();
requestId_ = "";
imageUrl_ = "";
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_UploadPoiPhotoByUrlMessage_descriptor;
}
@java.lang.Override
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.UploadPoiPhotoByUrlMessage getDefaultInstanceForType() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.UploadPoiPhotoByUrlMessage.getDefaultInstance();
}
@java.lang.Override
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.UploadPoiPhotoByUrlMessage build() {
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.UploadPoiPhotoByUrlMessage result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.UploadPoiPhotoByUrlMessage buildPartial() {
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.UploadPoiPhotoByUrlMessage result = new POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.UploadPoiPhotoByUrlMessage(this);
result.requestId_ = requestId_;
result.imageUrl_ = imageUrl_;
onBuilt();
return result;
}
@java.lang.Override
public Builder clone() {
return (Builder) super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.setField(field, value);
}
@java.lang.Override
public Builder clearField(
com.google.protobuf.Descriptors.FieldDescriptor field) {
return (Builder) super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(
com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return (Builder) super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index, java.lang.Object value) {
return (Builder) super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.UploadPoiPhotoByUrlMessage) {
return mergeFrom((POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.UploadPoiPhotoByUrlMessage)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.UploadPoiPhotoByUrlMessage other) {
if (other == POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.UploadPoiPhotoByUrlMessage.getDefaultInstance()) return this;
if (!other.getRequestId().isEmpty()) {
requestId_ = other.requestId_;
onChanged();
}
if (!other.getImageUrl().isEmpty()) {
imageUrl_ = other.imageUrl_;
onChanged();
}
this.mergeUnknownFields(other.unknownFields);
onChanged();
return this;
}
@java.lang.Override
public final boolean isInitialized() {
return true;
}
@java.lang.Override
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.UploadPoiPhotoByUrlMessage parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.UploadPoiPhotoByUrlMessage) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private java.lang.Object requestId_ = "";
/**
* string request_id = 1;
*/
public java.lang.String getRequestId() {
java.lang.Object ref = requestId_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
requestId_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* string request_id = 1;
*/
public com.google.protobuf.ByteString
getRequestIdBytes() {
java.lang.Object ref = requestId_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
requestId_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* string request_id = 1;
*/
public Builder setRequestId(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
requestId_ = value;
onChanged();
return this;
}
/**
* string request_id = 1;
*/
public Builder clearRequestId() {
requestId_ = getDefaultInstance().getRequestId();
onChanged();
return this;
}
/**
* string request_id = 1;
*/
public Builder setRequestIdBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
requestId_ = value;
onChanged();
return this;
}
private java.lang.Object imageUrl_ = "";
/**
* string image_url = 2;
*/
public java.lang.String getImageUrl() {
java.lang.Object ref = imageUrl_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
imageUrl_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* string image_url = 2;
*/
public com.google.protobuf.ByteString
getImageUrlBytes() {
java.lang.Object ref = imageUrl_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
imageUrl_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* string image_url = 2;
*/
public Builder setImageUrl(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
imageUrl_ = value;
onChanged();
return this;
}
/**
* string image_url = 2;
*/
public Builder clearImageUrl() {
imageUrl_ = getDefaultInstance().getImageUrl();
onChanged();
return this;
}
/**
* string image_url = 2;
*/
public Builder setImageUrlBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
imageUrl_ = value;
onChanged();
return this;
}
@java.lang.Override
public final Builder setUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.setUnknownFieldsProto3(unknownFields);
}
@java.lang.Override
public final Builder mergeUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.mergeUnknownFields(unknownFields);
}
// @@protoc_insertion_point(builder_scope:POGOProtos.Networking.Requests.Messages.UploadPoiPhotoByUrlMessage)
}
// @@protoc_insertion_point(class_scope:POGOProtos.Networking.Requests.Messages.UploadPoiPhotoByUrlMessage)
private static final POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.UploadPoiPhotoByUrlMessage DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.UploadPoiPhotoByUrlMessage();
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.UploadPoiPhotoByUrlMessage getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public UploadPoiPhotoByUrlMessage parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new UploadPoiPhotoByUrlMessage(input, extensionRegistry);
}
};
public static com.google.protobuf.Parser parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
@java.lang.Override
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.UploadPoiPhotoByUrlMessage getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
public interface PingMessageOrBuilder extends
// @@protoc_insertion_point(interface_extends:POGOProtos.Networking.Requests.Messages.PingMessage)
com.google.protobuf.MessageOrBuilder {
/**
* int32 response_size_bytes = 1;
*/
int getResponseSizeBytes();
/**
* string random_request_bytes = 2;
*/
java.lang.String getRandomRequestBytes();
/**
* string random_request_bytes = 2;
*/
com.google.protobuf.ByteString
getRandomRequestBytesBytes();
/**
* bool use_cache_for_random_request_bytes = 3;
*/
boolean getUseCacheForRandomRequestBytes();
/**
* string return_value = 4;
*/
java.lang.String getReturnValue();
/**
* string return_value = 4;
*/
com.google.protobuf.ByteString
getReturnValueBytes();
}
/**
* Protobuf type {@code POGOProtos.Networking.Requests.Messages.PingMessage}
*/
public static final class PingMessage extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:POGOProtos.Networking.Requests.Messages.PingMessage)
PingMessageOrBuilder {
private static final long serialVersionUID = 0L;
// Use PingMessage.newBuilder() to construct.
private PingMessage(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private PingMessage() {
responseSizeBytes_ = 0;
randomRequestBytes_ = "";
useCacheForRandomRequestBytes_ = false;
returnValue_ = "";
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private PingMessage(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
this();
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
int mutable_bitField0_ = 0;
com.google.protobuf.UnknownFieldSet.Builder unknownFields =
com.google.protobuf.UnknownFieldSet.newBuilder();
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 8: {
responseSizeBytes_ = input.readInt32();
break;
}
case 18: {
java.lang.String s = input.readStringRequireUtf8();
randomRequestBytes_ = s;
break;
}
case 24: {
useCacheForRandomRequestBytes_ = input.readBool();
break;
}
case 34: {
java.lang.String s = input.readStringRequireUtf8();
returnValue_ = s;
break;
}
default: {
if (!parseUnknownFieldProto3(
input, unknownFields, extensionRegistry, tag)) {
done = true;
}
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e).setUnfinishedMessage(this);
} finally {
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_PingMessage_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_PingMessage_fieldAccessorTable
.ensureFieldAccessorsInitialized(
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.PingMessage.class, POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.PingMessage.Builder.class);
}
public static final int RESPONSE_SIZE_BYTES_FIELD_NUMBER = 1;
private int responseSizeBytes_;
/**
* int32 response_size_bytes = 1;
*/
public int getResponseSizeBytes() {
return responseSizeBytes_;
}
public static final int RANDOM_REQUEST_BYTES_FIELD_NUMBER = 2;
private volatile java.lang.Object randomRequestBytes_;
/**
* string random_request_bytes = 2;
*/
public java.lang.String getRandomRequestBytes() {
java.lang.Object ref = randomRequestBytes_;
if (ref instanceof java.lang.String) {
return (java.lang.String) ref;
} else {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
randomRequestBytes_ = s;
return s;
}
}
/**
* string random_request_bytes = 2;
*/
public com.google.protobuf.ByteString
getRandomRequestBytesBytes() {
java.lang.Object ref = randomRequestBytes_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
randomRequestBytes_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int USE_CACHE_FOR_RANDOM_REQUEST_BYTES_FIELD_NUMBER = 3;
private boolean useCacheForRandomRequestBytes_;
/**
* bool use_cache_for_random_request_bytes = 3;
*/
public boolean getUseCacheForRandomRequestBytes() {
return useCacheForRandomRequestBytes_;
}
public static final int RETURN_VALUE_FIELD_NUMBER = 4;
private volatile java.lang.Object returnValue_;
/**
* string return_value = 4;
*/
public java.lang.String getReturnValue() {
java.lang.Object ref = returnValue_;
if (ref instanceof java.lang.String) {
return (java.lang.String) ref;
} else {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
returnValue_ = s;
return s;
}
}
/**
* string return_value = 4;
*/
public com.google.protobuf.ByteString
getReturnValueBytes() {
java.lang.Object ref = returnValue_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
returnValue_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
private byte memoizedIsInitialized = -1;
@java.lang.Override
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
@java.lang.Override
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
if (responseSizeBytes_ != 0) {
output.writeInt32(1, responseSizeBytes_);
}
if (!getRandomRequestBytesBytes().isEmpty()) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 2, randomRequestBytes_);
}
if (useCacheForRandomRequestBytes_ != false) {
output.writeBool(3, useCacheForRandomRequestBytes_);
}
if (!getReturnValueBytes().isEmpty()) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 4, returnValue_);
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (responseSizeBytes_ != 0) {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(1, responseSizeBytes_);
}
if (!getRandomRequestBytesBytes().isEmpty()) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, randomRequestBytes_);
}
if (useCacheForRandomRequestBytes_ != false) {
size += com.google.protobuf.CodedOutputStream
.computeBoolSize(3, useCacheForRandomRequestBytes_);
}
if (!getReturnValueBytes().isEmpty()) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(4, returnValue_);
}
size += unknownFields.getSerializedSize();
memoizedSize = size;
return size;
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.PingMessage)) {
return super.equals(obj);
}
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.PingMessage other = (POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.PingMessage) obj;
boolean result = true;
result = result && (getResponseSizeBytes()
== other.getResponseSizeBytes());
result = result && getRandomRequestBytes()
.equals(other.getRandomRequestBytes());
result = result && (getUseCacheForRandomRequestBytes()
== other.getUseCacheForRandomRequestBytes());
result = result && getReturnValue()
.equals(other.getReturnValue());
result = result && unknownFields.equals(other.unknownFields);
return result;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
hash = (37 * hash) + RESPONSE_SIZE_BYTES_FIELD_NUMBER;
hash = (53 * hash) + getResponseSizeBytes();
hash = (37 * hash) + RANDOM_REQUEST_BYTES_FIELD_NUMBER;
hash = (53 * hash) + getRandomRequestBytes().hashCode();
hash = (37 * hash) + USE_CACHE_FOR_RANDOM_REQUEST_BYTES_FIELD_NUMBER;
hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(
getUseCacheForRandomRequestBytes());
hash = (37 * hash) + RETURN_VALUE_FIELD_NUMBER;
hash = (53 * hash) + getReturnValue().hashCode();
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.PingMessage parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.PingMessage parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.PingMessage parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.PingMessage parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.PingMessage parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.PingMessage parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.PingMessage parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.PingMessage parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.PingMessage parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.PingMessage parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.PingMessage parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.PingMessage parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
@java.lang.Override
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder() {
return DEFAULT_INSTANCE.toBuilder();
}
public static Builder newBuilder(POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.PingMessage prototype) {
return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
}
@java.lang.Override
public Builder toBuilder() {
return this == DEFAULT_INSTANCE
? new Builder() : new Builder().mergeFrom(this);
}
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
* Protobuf type {@code POGOProtos.Networking.Requests.Messages.PingMessage}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:POGOProtos.Networking.Requests.Messages.PingMessage)
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.PingMessageOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_PingMessage_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_PingMessage_fieldAccessorTable
.ensureFieldAccessorsInitialized(
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.PingMessage.class, POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.PingMessage.Builder.class);
}
// Construct using POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.PingMessage.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
}
}
@java.lang.Override
public Builder clear() {
super.clear();
responseSizeBytes_ = 0;
randomRequestBytes_ = "";
useCacheForRandomRequestBytes_ = false;
returnValue_ = "";
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_PingMessage_descriptor;
}
@java.lang.Override
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.PingMessage getDefaultInstanceForType() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.PingMessage.getDefaultInstance();
}
@java.lang.Override
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.PingMessage build() {
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.PingMessage result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.PingMessage buildPartial() {
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.PingMessage result = new POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.PingMessage(this);
result.responseSizeBytes_ = responseSizeBytes_;
result.randomRequestBytes_ = randomRequestBytes_;
result.useCacheForRandomRequestBytes_ = useCacheForRandomRequestBytes_;
result.returnValue_ = returnValue_;
onBuilt();
return result;
}
@java.lang.Override
public Builder clone() {
return (Builder) super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.setField(field, value);
}
@java.lang.Override
public Builder clearField(
com.google.protobuf.Descriptors.FieldDescriptor field) {
return (Builder) super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(
com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return (Builder) super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index, java.lang.Object value) {
return (Builder) super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.PingMessage) {
return mergeFrom((POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.PingMessage)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.PingMessage other) {
if (other == POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.PingMessage.getDefaultInstance()) return this;
if (other.getResponseSizeBytes() != 0) {
setResponseSizeBytes(other.getResponseSizeBytes());
}
if (!other.getRandomRequestBytes().isEmpty()) {
randomRequestBytes_ = other.randomRequestBytes_;
onChanged();
}
if (other.getUseCacheForRandomRequestBytes() != false) {
setUseCacheForRandomRequestBytes(other.getUseCacheForRandomRequestBytes());
}
if (!other.getReturnValue().isEmpty()) {
returnValue_ = other.returnValue_;
onChanged();
}
this.mergeUnknownFields(other.unknownFields);
onChanged();
return this;
}
@java.lang.Override
public final boolean isInitialized() {
return true;
}
@java.lang.Override
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.PingMessage parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.PingMessage) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int responseSizeBytes_ ;
/**
* int32 response_size_bytes = 1;
*/
public int getResponseSizeBytes() {
return responseSizeBytes_;
}
/**
* int32 response_size_bytes = 1;
*/
public Builder setResponseSizeBytes(int value) {
responseSizeBytes_ = value;
onChanged();
return this;
}
/**
* int32 response_size_bytes = 1;
*/
public Builder clearResponseSizeBytes() {
responseSizeBytes_ = 0;
onChanged();
return this;
}
private java.lang.Object randomRequestBytes_ = "";
/**
* string random_request_bytes = 2;
*/
public java.lang.String getRandomRequestBytes() {
java.lang.Object ref = randomRequestBytes_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
randomRequestBytes_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* string random_request_bytes = 2;
*/
public com.google.protobuf.ByteString
getRandomRequestBytesBytes() {
java.lang.Object ref = randomRequestBytes_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
randomRequestBytes_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* string random_request_bytes = 2;
*/
public Builder setRandomRequestBytes(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
randomRequestBytes_ = value;
onChanged();
return this;
}
/**
* string random_request_bytes = 2;
*/
public Builder clearRandomRequestBytes() {
randomRequestBytes_ = getDefaultInstance().getRandomRequestBytes();
onChanged();
return this;
}
/**
* string random_request_bytes = 2;
*/
public Builder setRandomRequestBytesBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
randomRequestBytes_ = value;
onChanged();
return this;
}
private boolean useCacheForRandomRequestBytes_ ;
/**
* bool use_cache_for_random_request_bytes = 3;
*/
public boolean getUseCacheForRandomRequestBytes() {
return useCacheForRandomRequestBytes_;
}
/**
* bool use_cache_for_random_request_bytes = 3;
*/
public Builder setUseCacheForRandomRequestBytes(boolean value) {
useCacheForRandomRequestBytes_ = value;
onChanged();
return this;
}
/**
* bool use_cache_for_random_request_bytes = 3;
*/
public Builder clearUseCacheForRandomRequestBytes() {
useCacheForRandomRequestBytes_ = false;
onChanged();
return this;
}
private java.lang.Object returnValue_ = "";
/**
* string return_value = 4;
*/
public java.lang.String getReturnValue() {
java.lang.Object ref = returnValue_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
returnValue_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* string return_value = 4;
*/
public com.google.protobuf.ByteString
getReturnValueBytes() {
java.lang.Object ref = returnValue_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
returnValue_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* string return_value = 4;
*/
public Builder setReturnValue(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
returnValue_ = value;
onChanged();
return this;
}
/**
* string return_value = 4;
*/
public Builder clearReturnValue() {
returnValue_ = getDefaultInstance().getReturnValue();
onChanged();
return this;
}
/**
* string return_value = 4;
*/
public Builder setReturnValueBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
returnValue_ = value;
onChanged();
return this;
}
@java.lang.Override
public final Builder setUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.setUnknownFieldsProto3(unknownFields);
}
@java.lang.Override
public final Builder mergeUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.mergeUnknownFields(unknownFields);
}
// @@protoc_insertion_point(builder_scope:POGOProtos.Networking.Requests.Messages.PingMessage)
}
// @@protoc_insertion_point(class_scope:POGOProtos.Networking.Requests.Messages.PingMessage)
private static final POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.PingMessage DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.PingMessage();
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.PingMessage getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public PingMessage parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new PingMessage(input, extensionRegistry);
}
};
public static com.google.protobuf.Parser parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
@java.lang.Override
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.PingMessage getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
public interface ReplaceLoginActionMessageOrBuilder extends
// @@protoc_insertion_point(interface_extends:POGOProtos.Networking.Requests.Messages.ReplaceLoginActionMessage)
com.google.protobuf.MessageOrBuilder {
/**
* .POGOProtos.Enums.IdentityProvider existing_identity_provider = 1;
*/
int getExistingIdentityProviderValue();
/**
* .POGOProtos.Enums.IdentityProvider existing_identity_provider = 1;
*/
POGOProtos.Enums.IdentityProviderOuterClass.IdentityProvider getExistingIdentityProvider();
/**
* .POGOProtos.Networking.Requests.Messages.AddLoginActionMessage new_login = 2;
*/
boolean hasNewLogin();
/**
* .POGOProtos.Networking.Requests.Messages.AddLoginActionMessage new_login = 2;
*/
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddLoginActionMessage getNewLogin();
/**
* .POGOProtos.Networking.Requests.Messages.AddLoginActionMessage new_login = 2;
*/
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddLoginActionMessageOrBuilder getNewLoginOrBuilder();
}
/**
* Protobuf type {@code POGOProtos.Networking.Requests.Messages.ReplaceLoginActionMessage}
*/
public static final class ReplaceLoginActionMessage extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:POGOProtos.Networking.Requests.Messages.ReplaceLoginActionMessage)
ReplaceLoginActionMessageOrBuilder {
private static final long serialVersionUID = 0L;
// Use ReplaceLoginActionMessage.newBuilder() to construct.
private ReplaceLoginActionMessage(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private ReplaceLoginActionMessage() {
existingIdentityProvider_ = 0;
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private ReplaceLoginActionMessage(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
this();
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
int mutable_bitField0_ = 0;
com.google.protobuf.UnknownFieldSet.Builder unknownFields =
com.google.protobuf.UnknownFieldSet.newBuilder();
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 8: {
int rawValue = input.readEnum();
existingIdentityProvider_ = rawValue;
break;
}
case 18: {
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddLoginActionMessage.Builder subBuilder = null;
if (newLogin_ != null) {
subBuilder = newLogin_.toBuilder();
}
newLogin_ = input.readMessage(POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddLoginActionMessage.parser(), extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(newLogin_);
newLogin_ = subBuilder.buildPartial();
}
break;
}
default: {
if (!parseUnknownFieldProto3(
input, unknownFields, extensionRegistry, tag)) {
done = true;
}
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e).setUnfinishedMessage(this);
} finally {
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_ReplaceLoginActionMessage_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_ReplaceLoginActionMessage_fieldAccessorTable
.ensureFieldAccessorsInitialized(
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ReplaceLoginActionMessage.class, POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ReplaceLoginActionMessage.Builder.class);
}
public static final int EXISTING_IDENTITY_PROVIDER_FIELD_NUMBER = 1;
private int existingIdentityProvider_;
/**
* .POGOProtos.Enums.IdentityProvider existing_identity_provider = 1;
*/
public int getExistingIdentityProviderValue() {
return existingIdentityProvider_;
}
/**
* .POGOProtos.Enums.IdentityProvider existing_identity_provider = 1;
*/
public POGOProtos.Enums.IdentityProviderOuterClass.IdentityProvider getExistingIdentityProvider() {
@SuppressWarnings("deprecation")
POGOProtos.Enums.IdentityProviderOuterClass.IdentityProvider result = POGOProtos.Enums.IdentityProviderOuterClass.IdentityProvider.valueOf(existingIdentityProvider_);
return result == null ? POGOProtos.Enums.IdentityProviderOuterClass.IdentityProvider.UNRECOGNIZED : result;
}
public static final int NEW_LOGIN_FIELD_NUMBER = 2;
private POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddLoginActionMessage newLogin_;
/**
* .POGOProtos.Networking.Requests.Messages.AddLoginActionMessage new_login = 2;
*/
public boolean hasNewLogin() {
return newLogin_ != null;
}
/**
* .POGOProtos.Networking.Requests.Messages.AddLoginActionMessage new_login = 2;
*/
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddLoginActionMessage getNewLogin() {
return newLogin_ == null ? POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddLoginActionMessage.getDefaultInstance() : newLogin_;
}
/**
* .POGOProtos.Networking.Requests.Messages.AddLoginActionMessage new_login = 2;
*/
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddLoginActionMessageOrBuilder getNewLoginOrBuilder() {
return getNewLogin();
}
private byte memoizedIsInitialized = -1;
@java.lang.Override
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
@java.lang.Override
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
if (existingIdentityProvider_ != POGOProtos.Enums.IdentityProviderOuterClass.IdentityProvider.UNSET_IDENTITY_PROVIDER.getNumber()) {
output.writeEnum(1, existingIdentityProvider_);
}
if (newLogin_ != null) {
output.writeMessage(2, getNewLogin());
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (existingIdentityProvider_ != POGOProtos.Enums.IdentityProviderOuterClass.IdentityProvider.UNSET_IDENTITY_PROVIDER.getNumber()) {
size += com.google.protobuf.CodedOutputStream
.computeEnumSize(1, existingIdentityProvider_);
}
if (newLogin_ != null) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(2, getNewLogin());
}
size += unknownFields.getSerializedSize();
memoizedSize = size;
return size;
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ReplaceLoginActionMessage)) {
return super.equals(obj);
}
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ReplaceLoginActionMessage other = (POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ReplaceLoginActionMessage) obj;
boolean result = true;
result = result && existingIdentityProvider_ == other.existingIdentityProvider_;
result = result && (hasNewLogin() == other.hasNewLogin());
if (hasNewLogin()) {
result = result && getNewLogin()
.equals(other.getNewLogin());
}
result = result && unknownFields.equals(other.unknownFields);
return result;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
hash = (37 * hash) + EXISTING_IDENTITY_PROVIDER_FIELD_NUMBER;
hash = (53 * hash) + existingIdentityProvider_;
if (hasNewLogin()) {
hash = (37 * hash) + NEW_LOGIN_FIELD_NUMBER;
hash = (53 * hash) + getNewLogin().hashCode();
}
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ReplaceLoginActionMessage parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ReplaceLoginActionMessage parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ReplaceLoginActionMessage parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ReplaceLoginActionMessage parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ReplaceLoginActionMessage parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ReplaceLoginActionMessage parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ReplaceLoginActionMessage parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ReplaceLoginActionMessage parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ReplaceLoginActionMessage parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ReplaceLoginActionMessage parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ReplaceLoginActionMessage parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ReplaceLoginActionMessage parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
@java.lang.Override
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder() {
return DEFAULT_INSTANCE.toBuilder();
}
public static Builder newBuilder(POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ReplaceLoginActionMessage prototype) {
return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
}
@java.lang.Override
public Builder toBuilder() {
return this == DEFAULT_INSTANCE
? new Builder() : new Builder().mergeFrom(this);
}
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
* Protobuf type {@code POGOProtos.Networking.Requests.Messages.ReplaceLoginActionMessage}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:POGOProtos.Networking.Requests.Messages.ReplaceLoginActionMessage)
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ReplaceLoginActionMessageOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_ReplaceLoginActionMessage_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_ReplaceLoginActionMessage_fieldAccessorTable
.ensureFieldAccessorsInitialized(
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ReplaceLoginActionMessage.class, POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ReplaceLoginActionMessage.Builder.class);
}
// Construct using POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ReplaceLoginActionMessage.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
}
}
@java.lang.Override
public Builder clear() {
super.clear();
existingIdentityProvider_ = 0;
if (newLoginBuilder_ == null) {
newLogin_ = null;
} else {
newLogin_ = null;
newLoginBuilder_ = null;
}
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_ReplaceLoginActionMessage_descriptor;
}
@java.lang.Override
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ReplaceLoginActionMessage getDefaultInstanceForType() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ReplaceLoginActionMessage.getDefaultInstance();
}
@java.lang.Override
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ReplaceLoginActionMessage build() {
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ReplaceLoginActionMessage result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ReplaceLoginActionMessage buildPartial() {
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ReplaceLoginActionMessage result = new POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ReplaceLoginActionMessage(this);
result.existingIdentityProvider_ = existingIdentityProvider_;
if (newLoginBuilder_ == null) {
result.newLogin_ = newLogin_;
} else {
result.newLogin_ = newLoginBuilder_.build();
}
onBuilt();
return result;
}
@java.lang.Override
public Builder clone() {
return (Builder) super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.setField(field, value);
}
@java.lang.Override
public Builder clearField(
com.google.protobuf.Descriptors.FieldDescriptor field) {
return (Builder) super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(
com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return (Builder) super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index, java.lang.Object value) {
return (Builder) super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ReplaceLoginActionMessage) {
return mergeFrom((POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ReplaceLoginActionMessage)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ReplaceLoginActionMessage other) {
if (other == POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ReplaceLoginActionMessage.getDefaultInstance()) return this;
if (other.existingIdentityProvider_ != 0) {
setExistingIdentityProviderValue(other.getExistingIdentityProviderValue());
}
if (other.hasNewLogin()) {
mergeNewLogin(other.getNewLogin());
}
this.mergeUnknownFields(other.unknownFields);
onChanged();
return this;
}
@java.lang.Override
public final boolean isInitialized() {
return true;
}
@java.lang.Override
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ReplaceLoginActionMessage parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ReplaceLoginActionMessage) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int existingIdentityProvider_ = 0;
/**
* .POGOProtos.Enums.IdentityProvider existing_identity_provider = 1;
*/
public int getExistingIdentityProviderValue() {
return existingIdentityProvider_;
}
/**
* .POGOProtos.Enums.IdentityProvider existing_identity_provider = 1;
*/
public Builder setExistingIdentityProviderValue(int value) {
existingIdentityProvider_ = value;
onChanged();
return this;
}
/**
* .POGOProtos.Enums.IdentityProvider existing_identity_provider = 1;
*/
public POGOProtos.Enums.IdentityProviderOuterClass.IdentityProvider getExistingIdentityProvider() {
@SuppressWarnings("deprecation")
POGOProtos.Enums.IdentityProviderOuterClass.IdentityProvider result = POGOProtos.Enums.IdentityProviderOuterClass.IdentityProvider.valueOf(existingIdentityProvider_);
return result == null ? POGOProtos.Enums.IdentityProviderOuterClass.IdentityProvider.UNRECOGNIZED : result;
}
/**
* .POGOProtos.Enums.IdentityProvider existing_identity_provider = 1;
*/
public Builder setExistingIdentityProvider(POGOProtos.Enums.IdentityProviderOuterClass.IdentityProvider value) {
if (value == null) {
throw new NullPointerException();
}
existingIdentityProvider_ = value.getNumber();
onChanged();
return this;
}
/**
* .POGOProtos.Enums.IdentityProvider existing_identity_provider = 1;
*/
public Builder clearExistingIdentityProvider() {
existingIdentityProvider_ = 0;
onChanged();
return this;
}
private POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddLoginActionMessage newLogin_ = null;
private com.google.protobuf.SingleFieldBuilderV3<
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddLoginActionMessage, POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddLoginActionMessage.Builder, POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddLoginActionMessageOrBuilder> newLoginBuilder_;
/**
* .POGOProtos.Networking.Requests.Messages.AddLoginActionMessage new_login = 2;
*/
public boolean hasNewLogin() {
return newLoginBuilder_ != null || newLogin_ != null;
}
/**
* .POGOProtos.Networking.Requests.Messages.AddLoginActionMessage new_login = 2;
*/
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddLoginActionMessage getNewLogin() {
if (newLoginBuilder_ == null) {
return newLogin_ == null ? POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddLoginActionMessage.getDefaultInstance() : newLogin_;
} else {
return newLoginBuilder_.getMessage();
}
}
/**
* .POGOProtos.Networking.Requests.Messages.AddLoginActionMessage new_login = 2;
*/
public Builder setNewLogin(POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddLoginActionMessage value) {
if (newLoginBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
newLogin_ = value;
onChanged();
} else {
newLoginBuilder_.setMessage(value);
}
return this;
}
/**
* .POGOProtos.Networking.Requests.Messages.AddLoginActionMessage new_login = 2;
*/
public Builder setNewLogin(
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddLoginActionMessage.Builder builderForValue) {
if (newLoginBuilder_ == null) {
newLogin_ = builderForValue.build();
onChanged();
} else {
newLoginBuilder_.setMessage(builderForValue.build());
}
return this;
}
/**
* .POGOProtos.Networking.Requests.Messages.AddLoginActionMessage new_login = 2;
*/
public Builder mergeNewLogin(POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddLoginActionMessage value) {
if (newLoginBuilder_ == null) {
if (newLogin_ != null) {
newLogin_ =
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddLoginActionMessage.newBuilder(newLogin_).mergeFrom(value).buildPartial();
} else {
newLogin_ = value;
}
onChanged();
} else {
newLoginBuilder_.mergeFrom(value);
}
return this;
}
/**
* .POGOProtos.Networking.Requests.Messages.AddLoginActionMessage new_login = 2;
*/
public Builder clearNewLogin() {
if (newLoginBuilder_ == null) {
newLogin_ = null;
onChanged();
} else {
newLogin_ = null;
newLoginBuilder_ = null;
}
return this;
}
/**
* .POGOProtos.Networking.Requests.Messages.AddLoginActionMessage new_login = 2;
*/
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddLoginActionMessage.Builder getNewLoginBuilder() {
onChanged();
return getNewLoginFieldBuilder().getBuilder();
}
/**
* .POGOProtos.Networking.Requests.Messages.AddLoginActionMessage new_login = 2;
*/
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddLoginActionMessageOrBuilder getNewLoginOrBuilder() {
if (newLoginBuilder_ != null) {
return newLoginBuilder_.getMessageOrBuilder();
} else {
return newLogin_ == null ?
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddLoginActionMessage.getDefaultInstance() : newLogin_;
}
}
/**
* .POGOProtos.Networking.Requests.Messages.AddLoginActionMessage new_login = 2;
*/
private com.google.protobuf.SingleFieldBuilderV3<
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddLoginActionMessage, POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddLoginActionMessage.Builder, POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddLoginActionMessageOrBuilder>
getNewLoginFieldBuilder() {
if (newLoginBuilder_ == null) {
newLoginBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddLoginActionMessage, POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddLoginActionMessage.Builder, POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.AddLoginActionMessageOrBuilder>(
getNewLogin(),
getParentForChildren(),
isClean());
newLogin_ = null;
}
return newLoginBuilder_;
}
@java.lang.Override
public final Builder setUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.setUnknownFieldsProto3(unknownFields);
}
@java.lang.Override
public final Builder mergeUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.mergeUnknownFields(unknownFields);
}
// @@protoc_insertion_point(builder_scope:POGOProtos.Networking.Requests.Messages.ReplaceLoginActionMessage)
}
// @@protoc_insertion_point(class_scope:POGOProtos.Networking.Requests.Messages.ReplaceLoginActionMessage)
private static final POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ReplaceLoginActionMessage DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ReplaceLoginActionMessage();
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ReplaceLoginActionMessage getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public ReplaceLoginActionMessage parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new ReplaceLoginActionMessage(input, extensionRegistry);
}
};
public static com.google.protobuf.Parser parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
@java.lang.Override
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ReplaceLoginActionMessage getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
public interface ListLoginActionMessageOrBuilder extends
// @@protoc_insertion_point(interface_extends:POGOProtos.Networking.Requests.Messages.ListLoginActionMessage)
com.google.protobuf.MessageOrBuilder {
}
/**
* Protobuf type {@code POGOProtos.Networking.Requests.Messages.ListLoginActionMessage}
*/
public static final class ListLoginActionMessage extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:POGOProtos.Networking.Requests.Messages.ListLoginActionMessage)
ListLoginActionMessageOrBuilder {
private static final long serialVersionUID = 0L;
// Use ListLoginActionMessage.newBuilder() to construct.
private ListLoginActionMessage(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private ListLoginActionMessage() {
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private ListLoginActionMessage(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
this();
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
com.google.protobuf.UnknownFieldSet.Builder unknownFields =
com.google.protobuf.UnknownFieldSet.newBuilder();
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
default: {
if (!parseUnknownFieldProto3(
input, unknownFields, extensionRegistry, tag)) {
done = true;
}
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e).setUnfinishedMessage(this);
} finally {
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_ListLoginActionMessage_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_ListLoginActionMessage_fieldAccessorTable
.ensureFieldAccessorsInitialized(
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ListLoginActionMessage.class, POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ListLoginActionMessage.Builder.class);
}
private byte memoizedIsInitialized = -1;
@java.lang.Override
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
@java.lang.Override
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
size += unknownFields.getSerializedSize();
memoizedSize = size;
return size;
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ListLoginActionMessage)) {
return super.equals(obj);
}
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ListLoginActionMessage other = (POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ListLoginActionMessage) obj;
boolean result = true;
result = result && unknownFields.equals(other.unknownFields);
return result;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ListLoginActionMessage parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ListLoginActionMessage parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ListLoginActionMessage parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ListLoginActionMessage parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ListLoginActionMessage parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ListLoginActionMessage parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ListLoginActionMessage parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ListLoginActionMessage parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ListLoginActionMessage parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ListLoginActionMessage parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input, extensionRegistry);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ListLoginActionMessage parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ListLoginActionMessage parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
@java.lang.Override
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder() {
return DEFAULT_INSTANCE.toBuilder();
}
public static Builder newBuilder(POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ListLoginActionMessage prototype) {
return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
}
@java.lang.Override
public Builder toBuilder() {
return this == DEFAULT_INSTANCE
? new Builder() : new Builder().mergeFrom(this);
}
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
* Protobuf type {@code POGOProtos.Networking.Requests.Messages.ListLoginActionMessage}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:POGOProtos.Networking.Requests.Messages.ListLoginActionMessage)
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ListLoginActionMessageOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_ListLoginActionMessage_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_ListLoginActionMessage_fieldAccessorTable
.ensureFieldAccessorsInitialized(
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ListLoginActionMessage.class, POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ListLoginActionMessage.Builder.class);
}
// Construct using POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ListLoginActionMessage.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
}
}
@java.lang.Override
public Builder clear() {
super.clear();
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.internal_static_POGOProtos_Networking_Requests_Messages_ListLoginActionMessage_descriptor;
}
@java.lang.Override
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ListLoginActionMessage getDefaultInstanceForType() {
return POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ListLoginActionMessage.getDefaultInstance();
}
@java.lang.Override
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ListLoginActionMessage build() {
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ListLoginActionMessage result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ListLoginActionMessage buildPartial() {
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ListLoginActionMessage result = new POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ListLoginActionMessage(this);
onBuilt();
return result;
}
@java.lang.Override
public Builder clone() {
return (Builder) super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.setField(field, value);
}
@java.lang.Override
public Builder clearField(
com.google.protobuf.Descriptors.FieldDescriptor field) {
return (Builder) super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(
com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return (Builder) super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index, java.lang.Object value) {
return (Builder) super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ListLoginActionMessage) {
return mergeFrom((POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ListLoginActionMessage)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ListLoginActionMessage other) {
if (other == POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ListLoginActionMessage.getDefaultInstance()) return this;
this.mergeUnknownFields(other.unknownFields);
onChanged();
return this;
}
@java.lang.Override
public final boolean isInitialized() {
return true;
}
@java.lang.Override
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ListLoginActionMessage parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ListLoginActionMessage) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
@java.lang.Override
public final Builder setUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.setUnknownFieldsProto3(unknownFields);
}
@java.lang.Override
public final Builder mergeUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.mergeUnknownFields(unknownFields);
}
// @@protoc_insertion_point(builder_scope:POGOProtos.Networking.Requests.Messages.ListLoginActionMessage)
}
// @@protoc_insertion_point(class_scope:POGOProtos.Networking.Requests.Messages.ListLoginActionMessage)
private static final POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ListLoginActionMessage DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ListLoginActionMessage();
}
public static POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ListLoginActionMessage getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public ListLoginActionMessage parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new ListLoginActionMessage(input, extensionRegistry);
}
};
public static com.google.protobuf.Parser parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
@java.lang.Override
public POGOProtos.Networking.Requests.Messages.PlatformClientActionsMessage.ListLoginActionMessage getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
private static final com.google.protobuf.Descriptors.Descriptor
internal_static_POGOProtos_Networking_Requests_Messages_RegisterPushNotificationMessage_descriptor;
private static final
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internal_static_POGOProtos_Networking_Requests_Messages_RegisterPushNotificationMessage_fieldAccessorTable;
private static final com.google.protobuf.Descriptors.Descriptor
internal_static_POGOProtos_Networking_Requests_Messages_RegisterPushNotificationMessage_ApnToken_descriptor;
private static final
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internal_static_POGOProtos_Networking_Requests_Messages_RegisterPushNotificationMessage_ApnToken_fieldAccessorTable;
private static final com.google.protobuf.Descriptors.Descriptor
internal_static_POGOProtos_Networking_Requests_Messages_RegisterPushNotificationMessage_GcmToken_descriptor;
private static final
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internal_static_POGOProtos_Networking_Requests_Messages_RegisterPushNotificationMessage_GcmToken_fieldAccessorTable;
private static final com.google.protobuf.Descriptors.Descriptor
internal_static_POGOProtos_Networking_Requests_Messages_UpdateNotificationStatusMessage_descriptor;
private static final
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internal_static_POGOProtos_Networking_Requests_Messages_UpdateNotificationStatusMessage_fieldAccessorTable;
private static final com.google.protobuf.Descriptors.Descriptor
internal_static_POGOProtos_Networking_Requests_Messages_OptOutPushNotificationCategoryMessage_descriptor;
private static final
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internal_static_POGOProtos_Networking_Requests_Messages_OptOutPushNotificationCategoryMessage_fieldAccessorTable;
private static final com.google.protobuf.Descriptors.Descriptor
internal_static_POGOProtos_Networking_Requests_Messages_RedeemPasscodeMessage_descriptor;
private static final
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internal_static_POGOProtos_Networking_Requests_Messages_RedeemPasscodeMessage_fieldAccessorTable;
private static final com.google.protobuf.Descriptors.Descriptor
internal_static_POGOProtos_Networking_Requests_Messages_AddNewPoiMessage_descriptor;
private static final
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internal_static_POGOProtos_Networking_Requests_Messages_AddNewPoiMessage_fieldAccessorTable;
private static final com.google.protobuf.Descriptors.Descriptor
internal_static_POGOProtos_Networking_Requests_Messages_ProxySocialActionMessage_descriptor;
private static final
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internal_static_POGOProtos_Networking_Requests_Messages_ProxySocialActionMessage_fieldAccessorTable;
private static final com.google.protobuf.Descriptors.Descriptor
internal_static_POGOProtos_Networking_Requests_Messages_ProxySocialSideChannelActionMessage_descriptor;
private static final
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internal_static_POGOProtos_Networking_Requests_Messages_ProxySocialSideChannelActionMessage_fieldAccessorTable;
private static final com.google.protobuf.Descriptors.Descriptor
internal_static_POGOProtos_Networking_Requests_Messages_GetAvailableSubmissionsMessage_descriptor;
private static final
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internal_static_POGOProtos_Networking_Requests_Messages_GetAvailableSubmissionsMessage_fieldAccessorTable;
private static final com.google.protobuf.Descriptors.Descriptor
internal_static_POGOProtos_Networking_Requests_Messages_PushNotificationRegistryMessage_descriptor;
private static final
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internal_static_POGOProtos_Networking_Requests_Messages_PushNotificationRegistryMessage_fieldAccessorTable;
private static final com.google.protobuf.Descriptors.Descriptor
internal_static_POGOProtos_Networking_Requests_Messages_AddLoginActionMessage_descriptor;
private static final
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internal_static_POGOProtos_Networking_Requests_Messages_AddLoginActionMessage_fieldAccessorTable;
private static final com.google.protobuf.Descriptors.Descriptor
internal_static_POGOProtos_Networking_Requests_Messages_RemoveLoginActionMessage_descriptor;
private static final
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internal_static_POGOProtos_Networking_Requests_Messages_RemoveLoginActionMessage_fieldAccessorTable;
private static final com.google.protobuf.Descriptors.Descriptor
internal_static_POGOProtos_Networking_Requests_Messages_SubmitNewPoiMessage_descriptor;
private static final
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internal_static_POGOProtos_Networking_Requests_Messages_SubmitNewPoiMessage_fieldAccessorTable;
private static final com.google.protobuf.Descriptors.Descriptor
internal_static_POGOProtos_Networking_Requests_Messages_UploadPoiPhotoByUrlMessage_descriptor;
private static final
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internal_static_POGOProtos_Networking_Requests_Messages_UploadPoiPhotoByUrlMessage_fieldAccessorTable;
private static final com.google.protobuf.Descriptors.Descriptor
internal_static_POGOProtos_Networking_Requests_Messages_PingMessage_descriptor;
private static final
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internal_static_POGOProtos_Networking_Requests_Messages_PingMessage_fieldAccessorTable;
private static final com.google.protobuf.Descriptors.Descriptor
internal_static_POGOProtos_Networking_Requests_Messages_ReplaceLoginActionMessage_descriptor;
private static final
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internal_static_POGOProtos_Networking_Requests_Messages_ReplaceLoginActionMessage_fieldAccessorTable;
private static final com.google.protobuf.Descriptors.Descriptor
internal_static_POGOProtos_Networking_Requests_Messages_ListLoginActionMessage_descriptor;
private static final
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internal_static_POGOProtos_Networking_Requests_Messages_ListLoginActionMessage_fieldAccessorTable;
public static com.google.protobuf.Descriptors.FileDescriptor
getDescriptor() {
return descriptor;
}
private static com.google.protobuf.Descriptors.FileDescriptor
descriptor;
static {
java.lang.String[] descriptorData = {
"\nJPOGOProtos/Networking/Requests/Message" +
"s/PlatformClientActionsMessage.proto\022\'PO" +
"GOProtos.Networking.Requests.Messages\032-P" +
"OGOProtos/Data/Player/PlayerReputation.p" +
"roto\032\'POGOProtos/Enums/IdentityProvider." +
"proto\032(POGOProtos/Enums/NotificationStat" +
"e.proto\"\355\002\n\037RegisterPushNotificationMess" +
"age\022d\n\tapn_token\030\001 \001(\0132Q.POGOProtos.Netw" +
"orking.Requests.Messages.RegisterPushNot" +
"ificationMessage.ApnToken\022d\n\tgcm_token\030\002" +
" \001(\0132Q.POGOProtos.Networking.Requests.Me" +
"ssages.RegisterPushNotificationMessage.G" +
"cmToken\032Y\n\010ApnToken\022\027\n\017registration_id\030\001" +
" \001(\t\022\031\n\021bundle_identifier\030\002 \001(\t\022\031\n\021paylo" +
"ad_byte_size\030\003 \001(\005\032#\n\010GcmToken\022\027\n\017regist" +
"ration_id\030\001 \001(\t\"\214\001\n\037UpdateNotificationSt" +
"atusMessage\022\030\n\020notification_ids\030\001 \003(\t\022\033\n" +
"\023create_timestamp_ms\030\002 \003(\003\0222\n\005state\030\003 \001(" +
"\0162#.POGOProtos.Enums.NotificationState\";" +
"\n%OptOutPushNotificationCategoryMessage\022" +
"\022\n\ncategories\030\001 \003(\t\")\n\025RedeemPasscodeMes" +
"sage\022\020\n\010passcode\030\001 \001(\t\"\251\002\n\020AddNewPoiMess" +
"age\022\r\n\005title\030\001 \001(\t\022\030\n\020long_description\030\002" +
" \001(\t\022\032\n\022image_gs_file_path\030\003 \001(\t\022\016\n\006lat_" +
"e6\030\004 \001(\005\022\016\n\006lng_e6\030\005 \001(\005\022\031\n\021image_servin" +
"g_url\030\006 \001(\t\022\017\n\007user_id\030\007 \001(\t\022\027\n\017player_l" +
"anguage\030\010 \001(\t\022\026\n\016game_unique_id\030\t \001(\t\022\016\n" +
"\006app_id\030\n \001(\t\022C\n\021player_reputation\030\013 \001(\013" +
"2(.POGOProtos.Data.Player.PlayerReputati" +
"on\"I\n\030ProxySocialActionMessage\022\016\n\006action" +
"\030\001 \001(\r\022\014\n\004host\030\002 \001(\t\022\017\n\007payload\030\003 \001(\014\"T\n" +
"#ProxySocialSideChannelActionMessage\022\016\n\006" +
"action\030\001 \001(\r\022\014\n\004host\030\002 \001(\t\022\017\n\007payload\030\003 " +
"\001(\014\" \n\036GetAvailableSubmissionsMessage\"\355\001" +
"\n\037PushNotificationRegistryMessage\022d\n\tapn" +
"_token\030\001 \001(\0132Q.POGOProtos.Networking.Req" +
"uests.Messages.RegisterPushNotificationM" +
"essage.ApnToken\022d\n\tgcm_token\030\002 \001(\0132Q.POG" +
"OProtos.Networking.Requests.Messages.Reg" +
"isterPushNotificationMessage.GcmToken\"m\n" +
"\025AddLoginActionMessage\022=\n\021identity_provi" +
"der\030\001 \001(\0162\".POGOProtos.Enums.IdentityPro" +
"vider\022\025\n\rinner_message\030\002 \001(\014\"Y\n\030RemoveLo" +
"ginActionMessage\022=\n\021identity_provider\030\001 " +
"\001(\0162\".POGOProtos.Enums.IdentityProvider\"" +
"|\n\023SubmitNewPoiMessage\022\r\n\005title\030\001 \001(\t\022\030\n" +
"\020long_description\030\002 \001(\t\022\016\n\006lat_e6\030\004 \001(\005\022" +
"\016\n\006lng_e6\030\005 \001(\005\022\034\n\024supporting_statement\030" +
"\016 \001(\t\"C\n\032UploadPoiPhotoByUrlMessage\022\022\n\nr" +
"equest_id\030\001 \001(\t\022\021\n\timage_url\030\002 \001(\t\"\212\001\n\013P" +
"ingMessage\022\033\n\023response_size_bytes\030\001 \001(\005\022" +
"\034\n\024random_request_bytes\030\002 \001(\t\022*\n\"use_cac" +
"he_for_random_request_bytes\030\003 \001(\010\022\024\n\014ret" +
"urn_value\030\004 \001(\t\"\266\001\n\031ReplaceLoginActionMe" +
"ssage\022F\n\032existing_identity_provider\030\001 \001(" +
"\0162\".POGOProtos.Enums.IdentityProvider\022Q\n" +
"\tnew_login\030\002 \001(\0132>.POGOProtos.Networking" +
".Requests.Messages.AddLoginActionMessage" +
"\"\030\n\026ListLoginActionMessageb\006proto3"
};
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;
return null;
}
};
com.google.protobuf.Descriptors.FileDescriptor
.internalBuildGeneratedFileFrom(descriptorData,
new com.google.protobuf.Descriptors.FileDescriptor[] {
POGOProtos.Data.Player.PlayerReputationOuterClass.getDescriptor(),
POGOProtos.Enums.IdentityProviderOuterClass.getDescriptor(),
POGOProtos.Enums.NotificationStateOuterClass.getDescriptor(),
}, assigner);
internal_static_POGOProtos_Networking_Requests_Messages_RegisterPushNotificationMessage_descriptor =
getDescriptor().getMessageTypes().get(0);
internal_static_POGOProtos_Networking_Requests_Messages_RegisterPushNotificationMessage_fieldAccessorTable = new
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
internal_static_POGOProtos_Networking_Requests_Messages_RegisterPushNotificationMessage_descriptor,
new java.lang.String[] { "ApnToken", "GcmToken", });
internal_static_POGOProtos_Networking_Requests_Messages_RegisterPushNotificationMessage_ApnToken_descriptor =
internal_static_POGOProtos_Networking_Requests_Messages_RegisterPushNotificationMessage_descriptor.getNestedTypes().get(0);
internal_static_POGOProtos_Networking_Requests_Messages_RegisterPushNotificationMessage_ApnToken_fieldAccessorTable = new
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
internal_static_POGOProtos_Networking_Requests_Messages_RegisterPushNotificationMessage_ApnToken_descriptor,
new java.lang.String[] { "RegistrationId", "BundleIdentifier", "PayloadByteSize", });
internal_static_POGOProtos_Networking_Requests_Messages_RegisterPushNotificationMessage_GcmToken_descriptor =
internal_static_POGOProtos_Networking_Requests_Messages_RegisterPushNotificationMessage_descriptor.getNestedTypes().get(1);
internal_static_POGOProtos_Networking_Requests_Messages_RegisterPushNotificationMessage_GcmToken_fieldAccessorTable = new
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
internal_static_POGOProtos_Networking_Requests_Messages_RegisterPushNotificationMessage_GcmToken_descriptor,
new java.lang.String[] { "RegistrationId", });
internal_static_POGOProtos_Networking_Requests_Messages_UpdateNotificationStatusMessage_descriptor =
getDescriptor().getMessageTypes().get(1);
internal_static_POGOProtos_Networking_Requests_Messages_UpdateNotificationStatusMessage_fieldAccessorTable = new
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
internal_static_POGOProtos_Networking_Requests_Messages_UpdateNotificationStatusMessage_descriptor,
new java.lang.String[] { "NotificationIds", "CreateTimestampMs", "State", });
internal_static_POGOProtos_Networking_Requests_Messages_OptOutPushNotificationCategoryMessage_descriptor =
getDescriptor().getMessageTypes().get(2);
internal_static_POGOProtos_Networking_Requests_Messages_OptOutPushNotificationCategoryMessage_fieldAccessorTable = new
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
internal_static_POGOProtos_Networking_Requests_Messages_OptOutPushNotificationCategoryMessage_descriptor,
new java.lang.String[] { "Categories", });
internal_static_POGOProtos_Networking_Requests_Messages_RedeemPasscodeMessage_descriptor =
getDescriptor().getMessageTypes().get(3);
internal_static_POGOProtos_Networking_Requests_Messages_RedeemPasscodeMessage_fieldAccessorTable = new
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
internal_static_POGOProtos_Networking_Requests_Messages_RedeemPasscodeMessage_descriptor,
new java.lang.String[] { "Passcode", });
internal_static_POGOProtos_Networking_Requests_Messages_AddNewPoiMessage_descriptor =
getDescriptor().getMessageTypes().get(4);
internal_static_POGOProtos_Networking_Requests_Messages_AddNewPoiMessage_fieldAccessorTable = new
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
internal_static_POGOProtos_Networking_Requests_Messages_AddNewPoiMessage_descriptor,
new java.lang.String[] { "Title", "LongDescription", "ImageGsFilePath", "LatE6", "LngE6", "ImageServingUrl", "UserId", "PlayerLanguage", "GameUniqueId", "AppId", "PlayerReputation", });
internal_static_POGOProtos_Networking_Requests_Messages_ProxySocialActionMessage_descriptor =
getDescriptor().getMessageTypes().get(5);
internal_static_POGOProtos_Networking_Requests_Messages_ProxySocialActionMessage_fieldAccessorTable = new
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
internal_static_POGOProtos_Networking_Requests_Messages_ProxySocialActionMessage_descriptor,
new java.lang.String[] { "Action", "Host", "Payload", });
internal_static_POGOProtos_Networking_Requests_Messages_ProxySocialSideChannelActionMessage_descriptor =
getDescriptor().getMessageTypes().get(6);
internal_static_POGOProtos_Networking_Requests_Messages_ProxySocialSideChannelActionMessage_fieldAccessorTable = new
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
internal_static_POGOProtos_Networking_Requests_Messages_ProxySocialSideChannelActionMessage_descriptor,
new java.lang.String[] { "Action", "Host", "Payload", });
internal_static_POGOProtos_Networking_Requests_Messages_GetAvailableSubmissionsMessage_descriptor =
getDescriptor().getMessageTypes().get(7);
internal_static_POGOProtos_Networking_Requests_Messages_GetAvailableSubmissionsMessage_fieldAccessorTable = new
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
internal_static_POGOProtos_Networking_Requests_Messages_GetAvailableSubmissionsMessage_descriptor,
new java.lang.String[] { });
internal_static_POGOProtos_Networking_Requests_Messages_PushNotificationRegistryMessage_descriptor =
getDescriptor().getMessageTypes().get(8);
internal_static_POGOProtos_Networking_Requests_Messages_PushNotificationRegistryMessage_fieldAccessorTable = new
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
internal_static_POGOProtos_Networking_Requests_Messages_PushNotificationRegistryMessage_descriptor,
new java.lang.String[] { "ApnToken", "GcmToken", });
internal_static_POGOProtos_Networking_Requests_Messages_AddLoginActionMessage_descriptor =
getDescriptor().getMessageTypes().get(9);
internal_static_POGOProtos_Networking_Requests_Messages_AddLoginActionMessage_fieldAccessorTable = new
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
internal_static_POGOProtos_Networking_Requests_Messages_AddLoginActionMessage_descriptor,
new java.lang.String[] { "IdentityProvider", "InnerMessage", });
internal_static_POGOProtos_Networking_Requests_Messages_RemoveLoginActionMessage_descriptor =
getDescriptor().getMessageTypes().get(10);
internal_static_POGOProtos_Networking_Requests_Messages_RemoveLoginActionMessage_fieldAccessorTable = new
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
internal_static_POGOProtos_Networking_Requests_Messages_RemoveLoginActionMessage_descriptor,
new java.lang.String[] { "IdentityProvider", });
internal_static_POGOProtos_Networking_Requests_Messages_SubmitNewPoiMessage_descriptor =
getDescriptor().getMessageTypes().get(11);
internal_static_POGOProtos_Networking_Requests_Messages_SubmitNewPoiMessage_fieldAccessorTable = new
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
internal_static_POGOProtos_Networking_Requests_Messages_SubmitNewPoiMessage_descriptor,
new java.lang.String[] { "Title", "LongDescription", "LatE6", "LngE6", "SupportingStatement", });
internal_static_POGOProtos_Networking_Requests_Messages_UploadPoiPhotoByUrlMessage_descriptor =
getDescriptor().getMessageTypes().get(12);
internal_static_POGOProtos_Networking_Requests_Messages_UploadPoiPhotoByUrlMessage_fieldAccessorTable = new
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
internal_static_POGOProtos_Networking_Requests_Messages_UploadPoiPhotoByUrlMessage_descriptor,
new java.lang.String[] { "RequestId", "ImageUrl", });
internal_static_POGOProtos_Networking_Requests_Messages_PingMessage_descriptor =
getDescriptor().getMessageTypes().get(13);
internal_static_POGOProtos_Networking_Requests_Messages_PingMessage_fieldAccessorTable = new
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
internal_static_POGOProtos_Networking_Requests_Messages_PingMessage_descriptor,
new java.lang.String[] { "ResponseSizeBytes", "RandomRequestBytes", "UseCacheForRandomRequestBytes", "ReturnValue", });
internal_static_POGOProtos_Networking_Requests_Messages_ReplaceLoginActionMessage_descriptor =
getDescriptor().getMessageTypes().get(14);
internal_static_POGOProtos_Networking_Requests_Messages_ReplaceLoginActionMessage_fieldAccessorTable = new
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
internal_static_POGOProtos_Networking_Requests_Messages_ReplaceLoginActionMessage_descriptor,
new java.lang.String[] { "ExistingIdentityProvider", "NewLogin", });
internal_static_POGOProtos_Networking_Requests_Messages_ListLoginActionMessage_descriptor =
getDescriptor().getMessageTypes().get(15);
internal_static_POGOProtos_Networking_Requests_Messages_ListLoginActionMessage_fieldAccessorTable = new
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
internal_static_POGOProtos_Networking_Requests_Messages_ListLoginActionMessage_descriptor,
new java.lang.String[] { });
POGOProtos.Data.Player.PlayerReputationOuterClass.getDescriptor();
POGOProtos.Enums.IdentityProviderOuterClass.getDescriptor();
POGOProtos.Enums.NotificationStateOuterClass.getDescriptor();
}
// @@protoc_insertion_point(outer_class_scope)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy