POGOProtos.Networking.Responses.PlatformClientActionsResponse Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: POGOProtos/Networking/Responses/PlatformClientActionsResponse.proto
package POGOProtos.Networking.Responses;
public final class PlatformClientActionsResponse {
private PlatformClientActionsResponse() {}
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 RegisterPushNotificationResponseOrBuilder extends
// @@protoc_insertion_point(interface_extends:POGOProtos.Networking.Responses.RegisterPushNotificationResponse)
com.google.protobuf.MessageOrBuilder {
/**
* .POGOProtos.Networking.Responses.RegisterPushNotificationResponse.Result result = 1;
*/
int getResultValue();
/**
* .POGOProtos.Networking.Responses.RegisterPushNotificationResponse.Result result = 1;
*/
POGOProtos.Networking.Responses.PlatformClientActionsResponse.RegisterPushNotificationResponse.Result getResult();
}
/**
* Protobuf type {@code POGOProtos.Networking.Responses.RegisterPushNotificationResponse}
*/
public static final class RegisterPushNotificationResponse extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:POGOProtos.Networking.Responses.RegisterPushNotificationResponse)
RegisterPushNotificationResponseOrBuilder {
private static final long serialVersionUID = 0L;
// Use RegisterPushNotificationResponse.newBuilder() to construct.
private RegisterPushNotificationResponse(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private RegisterPushNotificationResponse() {
result_ = 0;
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private RegisterPushNotificationResponse(
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();
result_ = 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.Responses.PlatformClientActionsResponse.internal_static_POGOProtos_Networking_Responses_RegisterPushNotificationResponse_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.internal_static_POGOProtos_Networking_Responses_RegisterPushNotificationResponse_fieldAccessorTable
.ensureFieldAccessorsInitialized(
POGOProtos.Networking.Responses.PlatformClientActionsResponse.RegisterPushNotificationResponse.class, POGOProtos.Networking.Responses.PlatformClientActionsResponse.RegisterPushNotificationResponse.Builder.class);
}
/**
* Protobuf enum {@code POGOProtos.Networking.Responses.RegisterPushNotificationResponse.Result}
*/
public enum Result
implements com.google.protobuf.ProtocolMessageEnum {
/**
* UNSET = 0;
*/
UNSET(0),
/**
* SUCCESS = 1;
*/
SUCCESS(1),
/**
* NO_CHANGE = 2;
*/
NO_CHANGE(2),
UNRECOGNIZED(-1),
;
/**
* UNSET = 0;
*/
public static final int UNSET_VALUE = 0;
/**
* SUCCESS = 1;
*/
public static final int SUCCESS_VALUE = 1;
/**
* NO_CHANGE = 2;
*/
public static final int NO_CHANGE_VALUE = 2;
public final int getNumber() {
if (this == UNRECOGNIZED) {
throw new java.lang.IllegalArgumentException(
"Can't get the number of an unknown enum value.");
}
return value;
}
/**
* @deprecated Use {@link #forNumber(int)} instead.
*/
@java.lang.Deprecated
public static Result valueOf(int value) {
return forNumber(value);
}
public static Result forNumber(int value) {
switch (value) {
case 0: return UNSET;
case 1: return SUCCESS;
case 2: return NO_CHANGE;
default: return null;
}
}
public static com.google.protobuf.Internal.EnumLiteMap
internalGetValueMap() {
return internalValueMap;
}
private static final com.google.protobuf.Internal.EnumLiteMap<
Result> internalValueMap =
new com.google.protobuf.Internal.EnumLiteMap() {
public Result findValueByNumber(int number) {
return Result.forNumber(number);
}
};
public final com.google.protobuf.Descriptors.EnumValueDescriptor
getValueDescriptor() {
return getDescriptor().getValues().get(ordinal());
}
public final com.google.protobuf.Descriptors.EnumDescriptor
getDescriptorForType() {
return getDescriptor();
}
public static final com.google.protobuf.Descriptors.EnumDescriptor
getDescriptor() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.RegisterPushNotificationResponse.getDescriptor().getEnumTypes().get(0);
}
private static final Result[] VALUES = values();
public static Result valueOf(
com.google.protobuf.Descriptors.EnumValueDescriptor desc) {
if (desc.getType() != getDescriptor()) {
throw new java.lang.IllegalArgumentException(
"EnumValueDescriptor is not for this type.");
}
if (desc.getIndex() == -1) {
return UNRECOGNIZED;
}
return VALUES[desc.getIndex()];
}
private final int value;
private Result(int value) {
this.value = value;
}
// @@protoc_insertion_point(enum_scope:POGOProtos.Networking.Responses.RegisterPushNotificationResponse.Result)
}
public static final int RESULT_FIELD_NUMBER = 1;
private int result_;
/**
* .POGOProtos.Networking.Responses.RegisterPushNotificationResponse.Result result = 1;
*/
public int getResultValue() {
return result_;
}
/**
* .POGOProtos.Networking.Responses.RegisterPushNotificationResponse.Result result = 1;
*/
public POGOProtos.Networking.Responses.PlatformClientActionsResponse.RegisterPushNotificationResponse.Result getResult() {
@SuppressWarnings("deprecation")
POGOProtos.Networking.Responses.PlatformClientActionsResponse.RegisterPushNotificationResponse.Result result = POGOProtos.Networking.Responses.PlatformClientActionsResponse.RegisterPushNotificationResponse.Result.valueOf(result_);
return result == null ? POGOProtos.Networking.Responses.PlatformClientActionsResponse.RegisterPushNotificationResponse.Result.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 (result_ != POGOProtos.Networking.Responses.PlatformClientActionsResponse.RegisterPushNotificationResponse.Result.UNSET.getNumber()) {
output.writeEnum(1, result_);
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (result_ != POGOProtos.Networking.Responses.PlatformClientActionsResponse.RegisterPushNotificationResponse.Result.UNSET.getNumber()) {
size += com.google.protobuf.CodedOutputStream
.computeEnumSize(1, result_);
}
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.Responses.PlatformClientActionsResponse.RegisterPushNotificationResponse)) {
return super.equals(obj);
}
POGOProtos.Networking.Responses.PlatformClientActionsResponse.RegisterPushNotificationResponse other = (POGOProtos.Networking.Responses.PlatformClientActionsResponse.RegisterPushNotificationResponse) obj;
boolean result = true;
result = result && result_ == other.result_;
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) + RESULT_FIELD_NUMBER;
hash = (53 * hash) + result_;
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.RegisterPushNotificationResponse parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.RegisterPushNotificationResponse parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.RegisterPushNotificationResponse parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.RegisterPushNotificationResponse 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.Responses.PlatformClientActionsResponse.RegisterPushNotificationResponse parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.RegisterPushNotificationResponse parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.RegisterPushNotificationResponse parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.RegisterPushNotificationResponse 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.Responses.PlatformClientActionsResponse.RegisterPushNotificationResponse parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.RegisterPushNotificationResponse 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.Responses.PlatformClientActionsResponse.RegisterPushNotificationResponse parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.RegisterPushNotificationResponse 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.Responses.PlatformClientActionsResponse.RegisterPushNotificationResponse 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.Responses.RegisterPushNotificationResponse}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:POGOProtos.Networking.Responses.RegisterPushNotificationResponse)
POGOProtos.Networking.Responses.PlatformClientActionsResponse.RegisterPushNotificationResponseOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.internal_static_POGOProtos_Networking_Responses_RegisterPushNotificationResponse_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.internal_static_POGOProtos_Networking_Responses_RegisterPushNotificationResponse_fieldAccessorTable
.ensureFieldAccessorsInitialized(
POGOProtos.Networking.Responses.PlatformClientActionsResponse.RegisterPushNotificationResponse.class, POGOProtos.Networking.Responses.PlatformClientActionsResponse.RegisterPushNotificationResponse.Builder.class);
}
// Construct using POGOProtos.Networking.Responses.PlatformClientActionsResponse.RegisterPushNotificationResponse.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();
result_ = 0;
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.internal_static_POGOProtos_Networking_Responses_RegisterPushNotificationResponse_descriptor;
}
@java.lang.Override
public POGOProtos.Networking.Responses.PlatformClientActionsResponse.RegisterPushNotificationResponse getDefaultInstanceForType() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.RegisterPushNotificationResponse.getDefaultInstance();
}
@java.lang.Override
public POGOProtos.Networking.Responses.PlatformClientActionsResponse.RegisterPushNotificationResponse build() {
POGOProtos.Networking.Responses.PlatformClientActionsResponse.RegisterPushNotificationResponse result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public POGOProtos.Networking.Responses.PlatformClientActionsResponse.RegisterPushNotificationResponse buildPartial() {
POGOProtos.Networking.Responses.PlatformClientActionsResponse.RegisterPushNotificationResponse result = new POGOProtos.Networking.Responses.PlatformClientActionsResponse.RegisterPushNotificationResponse(this);
result.result_ = result_;
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.Responses.PlatformClientActionsResponse.RegisterPushNotificationResponse) {
return mergeFrom((POGOProtos.Networking.Responses.PlatformClientActionsResponse.RegisterPushNotificationResponse)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(POGOProtos.Networking.Responses.PlatformClientActionsResponse.RegisterPushNotificationResponse other) {
if (other == POGOProtos.Networking.Responses.PlatformClientActionsResponse.RegisterPushNotificationResponse.getDefaultInstance()) return this;
if (other.result_ != 0) {
setResultValue(other.getResultValue());
}
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.Responses.PlatformClientActionsResponse.RegisterPushNotificationResponse parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (POGOProtos.Networking.Responses.PlatformClientActionsResponse.RegisterPushNotificationResponse) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int result_ = 0;
/**
* .POGOProtos.Networking.Responses.RegisterPushNotificationResponse.Result result = 1;
*/
public int getResultValue() {
return result_;
}
/**
* .POGOProtos.Networking.Responses.RegisterPushNotificationResponse.Result result = 1;
*/
public Builder setResultValue(int value) {
result_ = value;
onChanged();
return this;
}
/**
* .POGOProtos.Networking.Responses.RegisterPushNotificationResponse.Result result = 1;
*/
public POGOProtos.Networking.Responses.PlatformClientActionsResponse.RegisterPushNotificationResponse.Result getResult() {
@SuppressWarnings("deprecation")
POGOProtos.Networking.Responses.PlatformClientActionsResponse.RegisterPushNotificationResponse.Result result = POGOProtos.Networking.Responses.PlatformClientActionsResponse.RegisterPushNotificationResponse.Result.valueOf(result_);
return result == null ? POGOProtos.Networking.Responses.PlatformClientActionsResponse.RegisterPushNotificationResponse.Result.UNRECOGNIZED : result;
}
/**
* .POGOProtos.Networking.Responses.RegisterPushNotificationResponse.Result result = 1;
*/
public Builder setResult(POGOProtos.Networking.Responses.PlatformClientActionsResponse.RegisterPushNotificationResponse.Result value) {
if (value == null) {
throw new NullPointerException();
}
result_ = value.getNumber();
onChanged();
return this;
}
/**
* .POGOProtos.Networking.Responses.RegisterPushNotificationResponse.Result result = 1;
*/
public Builder clearResult() {
result_ = 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.Responses.RegisterPushNotificationResponse)
}
// @@protoc_insertion_point(class_scope:POGOProtos.Networking.Responses.RegisterPushNotificationResponse)
private static final POGOProtos.Networking.Responses.PlatformClientActionsResponse.RegisterPushNotificationResponse DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new POGOProtos.Networking.Responses.PlatformClientActionsResponse.RegisterPushNotificationResponse();
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.RegisterPushNotificationResponse getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public RegisterPushNotificationResponse parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new RegisterPushNotificationResponse(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.Responses.PlatformClientActionsResponse.RegisterPushNotificationResponse getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
public interface UpdateNotificationStatusResponseOrBuilder extends
// @@protoc_insertion_point(interface_extends:POGOProtos.Networking.Responses.UpdateNotificationStatusResponse)
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.Responses.UpdateNotificationStatusResponse}
*/
public static final class UpdateNotificationStatusResponse extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:POGOProtos.Networking.Responses.UpdateNotificationStatusResponse)
UpdateNotificationStatusResponseOrBuilder {
private static final long serialVersionUID = 0L;
// Use UpdateNotificationStatusResponse.newBuilder() to construct.
private UpdateNotificationStatusResponse(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private UpdateNotificationStatusResponse() {
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 UpdateNotificationStatusResponse(
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.Responses.PlatformClientActionsResponse.internal_static_POGOProtos_Networking_Responses_UpdateNotificationStatusResponse_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.internal_static_POGOProtos_Networking_Responses_UpdateNotificationStatusResponse_fieldAccessorTable
.ensureFieldAccessorsInitialized(
POGOProtos.Networking.Responses.PlatformClientActionsResponse.UpdateNotificationStatusResponse.class, POGOProtos.Networking.Responses.PlatformClientActionsResponse.UpdateNotificationStatusResponse.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.Responses.PlatformClientActionsResponse.UpdateNotificationStatusResponse)) {
return super.equals(obj);
}
POGOProtos.Networking.Responses.PlatformClientActionsResponse.UpdateNotificationStatusResponse other = (POGOProtos.Networking.Responses.PlatformClientActionsResponse.UpdateNotificationStatusResponse) 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.Responses.PlatformClientActionsResponse.UpdateNotificationStatusResponse parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.UpdateNotificationStatusResponse parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.UpdateNotificationStatusResponse parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.UpdateNotificationStatusResponse 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.Responses.PlatformClientActionsResponse.UpdateNotificationStatusResponse parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.UpdateNotificationStatusResponse parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.UpdateNotificationStatusResponse parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.UpdateNotificationStatusResponse 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.Responses.PlatformClientActionsResponse.UpdateNotificationStatusResponse parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.UpdateNotificationStatusResponse 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.Responses.PlatformClientActionsResponse.UpdateNotificationStatusResponse parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.UpdateNotificationStatusResponse 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.Responses.PlatformClientActionsResponse.UpdateNotificationStatusResponse 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.Responses.UpdateNotificationStatusResponse}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:POGOProtos.Networking.Responses.UpdateNotificationStatusResponse)
POGOProtos.Networking.Responses.PlatformClientActionsResponse.UpdateNotificationStatusResponseOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.internal_static_POGOProtos_Networking_Responses_UpdateNotificationStatusResponse_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.internal_static_POGOProtos_Networking_Responses_UpdateNotificationStatusResponse_fieldAccessorTable
.ensureFieldAccessorsInitialized(
POGOProtos.Networking.Responses.PlatformClientActionsResponse.UpdateNotificationStatusResponse.class, POGOProtos.Networking.Responses.PlatformClientActionsResponse.UpdateNotificationStatusResponse.Builder.class);
}
// Construct using POGOProtos.Networking.Responses.PlatformClientActionsResponse.UpdateNotificationStatusResponse.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.Responses.PlatformClientActionsResponse.internal_static_POGOProtos_Networking_Responses_UpdateNotificationStatusResponse_descriptor;
}
@java.lang.Override
public POGOProtos.Networking.Responses.PlatformClientActionsResponse.UpdateNotificationStatusResponse getDefaultInstanceForType() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.UpdateNotificationStatusResponse.getDefaultInstance();
}
@java.lang.Override
public POGOProtos.Networking.Responses.PlatformClientActionsResponse.UpdateNotificationStatusResponse build() {
POGOProtos.Networking.Responses.PlatformClientActionsResponse.UpdateNotificationStatusResponse result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public POGOProtos.Networking.Responses.PlatformClientActionsResponse.UpdateNotificationStatusResponse buildPartial() {
POGOProtos.Networking.Responses.PlatformClientActionsResponse.UpdateNotificationStatusResponse result = new POGOProtos.Networking.Responses.PlatformClientActionsResponse.UpdateNotificationStatusResponse(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.Responses.PlatformClientActionsResponse.UpdateNotificationStatusResponse) {
return mergeFrom((POGOProtos.Networking.Responses.PlatformClientActionsResponse.UpdateNotificationStatusResponse)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(POGOProtos.Networking.Responses.PlatformClientActionsResponse.UpdateNotificationStatusResponse other) {
if (other == POGOProtos.Networking.Responses.PlatformClientActionsResponse.UpdateNotificationStatusResponse.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.Responses.PlatformClientActionsResponse.UpdateNotificationStatusResponse parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (POGOProtos.Networking.Responses.PlatformClientActionsResponse.UpdateNotificationStatusResponse) 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.Responses.UpdateNotificationStatusResponse)
}
// @@protoc_insertion_point(class_scope:POGOProtos.Networking.Responses.UpdateNotificationStatusResponse)
private static final POGOProtos.Networking.Responses.PlatformClientActionsResponse.UpdateNotificationStatusResponse DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new POGOProtos.Networking.Responses.PlatformClientActionsResponse.UpdateNotificationStatusResponse();
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.UpdateNotificationStatusResponse getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public UpdateNotificationStatusResponse parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new UpdateNotificationStatusResponse(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.Responses.PlatformClientActionsResponse.UpdateNotificationStatusResponse getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
public interface OptOutPushNotificationCategoryResponseOrBuilder extends
// @@protoc_insertion_point(interface_extends:POGOProtos.Networking.Responses.OptOutPushNotificationCategoryResponse)
com.google.protobuf.MessageOrBuilder {
}
/**
*
*
*
* Protobuf type {@code POGOProtos.Networking.Responses.OptOutPushNotificationCategoryResponse}
*/
public static final class OptOutPushNotificationCategoryResponse extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:POGOProtos.Networking.Responses.OptOutPushNotificationCategoryResponse)
OptOutPushNotificationCategoryResponseOrBuilder {
private static final long serialVersionUID = 0L;
// Use OptOutPushNotificationCategoryResponse.newBuilder() to construct.
private OptOutPushNotificationCategoryResponse(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private OptOutPushNotificationCategoryResponse() {
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private OptOutPushNotificationCategoryResponse(
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.Responses.PlatformClientActionsResponse.internal_static_POGOProtos_Networking_Responses_OptOutPushNotificationCategoryResponse_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.internal_static_POGOProtos_Networking_Responses_OptOutPushNotificationCategoryResponse_fieldAccessorTable
.ensureFieldAccessorsInitialized(
POGOProtos.Networking.Responses.PlatformClientActionsResponse.OptOutPushNotificationCategoryResponse.class, POGOProtos.Networking.Responses.PlatformClientActionsResponse.OptOutPushNotificationCategoryResponse.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.Responses.PlatformClientActionsResponse.OptOutPushNotificationCategoryResponse)) {
return super.equals(obj);
}
POGOProtos.Networking.Responses.PlatformClientActionsResponse.OptOutPushNotificationCategoryResponse other = (POGOProtos.Networking.Responses.PlatformClientActionsResponse.OptOutPushNotificationCategoryResponse) 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.Responses.PlatformClientActionsResponse.OptOutPushNotificationCategoryResponse parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.OptOutPushNotificationCategoryResponse parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.OptOutPushNotificationCategoryResponse parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.OptOutPushNotificationCategoryResponse 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.Responses.PlatformClientActionsResponse.OptOutPushNotificationCategoryResponse parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.OptOutPushNotificationCategoryResponse parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.OptOutPushNotificationCategoryResponse parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.OptOutPushNotificationCategoryResponse 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.Responses.PlatformClientActionsResponse.OptOutPushNotificationCategoryResponse parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.OptOutPushNotificationCategoryResponse 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.Responses.PlatformClientActionsResponse.OptOutPushNotificationCategoryResponse parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.OptOutPushNotificationCategoryResponse 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.Responses.PlatformClientActionsResponse.OptOutPushNotificationCategoryResponse 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.Responses.OptOutPushNotificationCategoryResponse}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:POGOProtos.Networking.Responses.OptOutPushNotificationCategoryResponse)
POGOProtos.Networking.Responses.PlatformClientActionsResponse.OptOutPushNotificationCategoryResponseOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.internal_static_POGOProtos_Networking_Responses_OptOutPushNotificationCategoryResponse_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.internal_static_POGOProtos_Networking_Responses_OptOutPushNotificationCategoryResponse_fieldAccessorTable
.ensureFieldAccessorsInitialized(
POGOProtos.Networking.Responses.PlatformClientActionsResponse.OptOutPushNotificationCategoryResponse.class, POGOProtos.Networking.Responses.PlatformClientActionsResponse.OptOutPushNotificationCategoryResponse.Builder.class);
}
// Construct using POGOProtos.Networking.Responses.PlatformClientActionsResponse.OptOutPushNotificationCategoryResponse.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.Responses.PlatformClientActionsResponse.internal_static_POGOProtos_Networking_Responses_OptOutPushNotificationCategoryResponse_descriptor;
}
@java.lang.Override
public POGOProtos.Networking.Responses.PlatformClientActionsResponse.OptOutPushNotificationCategoryResponse getDefaultInstanceForType() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.OptOutPushNotificationCategoryResponse.getDefaultInstance();
}
@java.lang.Override
public POGOProtos.Networking.Responses.PlatformClientActionsResponse.OptOutPushNotificationCategoryResponse build() {
POGOProtos.Networking.Responses.PlatformClientActionsResponse.OptOutPushNotificationCategoryResponse result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public POGOProtos.Networking.Responses.PlatformClientActionsResponse.OptOutPushNotificationCategoryResponse buildPartial() {
POGOProtos.Networking.Responses.PlatformClientActionsResponse.OptOutPushNotificationCategoryResponse result = new POGOProtos.Networking.Responses.PlatformClientActionsResponse.OptOutPushNotificationCategoryResponse(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.Responses.PlatformClientActionsResponse.OptOutPushNotificationCategoryResponse) {
return mergeFrom((POGOProtos.Networking.Responses.PlatformClientActionsResponse.OptOutPushNotificationCategoryResponse)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(POGOProtos.Networking.Responses.PlatformClientActionsResponse.OptOutPushNotificationCategoryResponse other) {
if (other == POGOProtos.Networking.Responses.PlatformClientActionsResponse.OptOutPushNotificationCategoryResponse.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.Responses.PlatformClientActionsResponse.OptOutPushNotificationCategoryResponse parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (POGOProtos.Networking.Responses.PlatformClientActionsResponse.OptOutPushNotificationCategoryResponse) 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.Responses.OptOutPushNotificationCategoryResponse)
}
// @@protoc_insertion_point(class_scope:POGOProtos.Networking.Responses.OptOutPushNotificationCategoryResponse)
private static final POGOProtos.Networking.Responses.PlatformClientActionsResponse.OptOutPushNotificationCategoryResponse DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new POGOProtos.Networking.Responses.PlatformClientActionsResponse.OptOutPushNotificationCategoryResponse();
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.OptOutPushNotificationCategoryResponse getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public OptOutPushNotificationCategoryResponse parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new OptOutPushNotificationCategoryResponse(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.Responses.PlatformClientActionsResponse.OptOutPushNotificationCategoryResponse getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
public interface RedeemPasscodeResponseOrBuilder extends
// @@protoc_insertion_point(interface_extends:POGOProtos.Networking.Responses.RedeemPasscodeResponse)
com.google.protobuf.MessageOrBuilder {
/**
* .POGOProtos.Networking.Responses.RedeemPasscodeResponse.Result result = 1;
*/
int getResultValue();
/**
* .POGOProtos.Networking.Responses.RedeemPasscodeResponse.Result result = 1;
*/
POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.Result getResult();
/**
* repeated .POGOProtos.Networking.Responses.RedeemPasscodeResponse.AcquiredItem acquired_item = 2;
*/
java.util.List
getAcquiredItemList();
/**
* repeated .POGOProtos.Networking.Responses.RedeemPasscodeResponse.AcquiredItem acquired_item = 2;
*/
POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.AcquiredItem getAcquiredItem(int index);
/**
* repeated .POGOProtos.Networking.Responses.RedeemPasscodeResponse.AcquiredItem acquired_item = 2;
*/
int getAcquiredItemCount();
/**
* repeated .POGOProtos.Networking.Responses.RedeemPasscodeResponse.AcquiredItem acquired_item = 2;
*/
java.util.List extends POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.AcquiredItemOrBuilder>
getAcquiredItemOrBuilderList();
/**
* repeated .POGOProtos.Networking.Responses.RedeemPasscodeResponse.AcquiredItem acquired_item = 2;
*/
POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.AcquiredItemOrBuilder getAcquiredItemOrBuilder(
int index);
/**
* bytes acquired_items_proto = 3;
*/
com.google.protobuf.ByteString getAcquiredItemsProto();
/**
* string passcode = 4;
*/
java.lang.String getPasscode();
/**
* string passcode = 4;
*/
com.google.protobuf.ByteString
getPasscodeBytes();
}
/**
* Protobuf type {@code POGOProtos.Networking.Responses.RedeemPasscodeResponse}
*/
public static final class RedeemPasscodeResponse extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:POGOProtos.Networking.Responses.RedeemPasscodeResponse)
RedeemPasscodeResponseOrBuilder {
private static final long serialVersionUID = 0L;
// Use RedeemPasscodeResponse.newBuilder() to construct.
private RedeemPasscodeResponse(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private RedeemPasscodeResponse() {
result_ = 0;
acquiredItem_ = java.util.Collections.emptyList();
acquiredItemsProto_ = com.google.protobuf.ByteString.EMPTY;
passcode_ = "";
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private RedeemPasscodeResponse(
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();
result_ = rawValue;
break;
}
case 18: {
if (!((mutable_bitField0_ & 0x00000002) == 0x00000002)) {
acquiredItem_ = new java.util.ArrayList();
mutable_bitField0_ |= 0x00000002;
}
acquiredItem_.add(
input.readMessage(POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.AcquiredItem.parser(), extensionRegistry));
break;
}
case 26: {
acquiredItemsProto_ = input.readBytes();
break;
}
case 34: {
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 {
if (((mutable_bitField0_ & 0x00000002) == 0x00000002)) {
acquiredItem_ = java.util.Collections.unmodifiableList(acquiredItem_);
}
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.internal_static_POGOProtos_Networking_Responses_RedeemPasscodeResponse_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.internal_static_POGOProtos_Networking_Responses_RedeemPasscodeResponse_fieldAccessorTable
.ensureFieldAccessorsInitialized(
POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.class, POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.Builder.class);
}
/**
* Protobuf enum {@code POGOProtos.Networking.Responses.RedeemPasscodeResponse.Result}
*/
public enum Result
implements com.google.protobuf.ProtocolMessageEnum {
/**
* UNSET = 0;
*/
UNSET(0),
/**
* SUCCESS = 1;
*/
SUCCESS(1),
/**
* NOT_AVAILABLE = 2;
*/
NOT_AVAILABLE(2),
/**
* OVER_INVENTORY_LIMIT = 3;
*/
OVER_INVENTORY_LIMIT(3),
/**
* ALREADY_REDEEMED = 4;
*/
ALREADY_REDEEMED(4),
/**
* OVER_PLAYER_REDEMPTION_LIMIT = 5;
*/
OVER_PLAYER_REDEMPTION_LIMIT(5),
UNRECOGNIZED(-1),
;
/**
* UNSET = 0;
*/
public static final int UNSET_VALUE = 0;
/**
* SUCCESS = 1;
*/
public static final int SUCCESS_VALUE = 1;
/**
* NOT_AVAILABLE = 2;
*/
public static final int NOT_AVAILABLE_VALUE = 2;
/**
* OVER_INVENTORY_LIMIT = 3;
*/
public static final int OVER_INVENTORY_LIMIT_VALUE = 3;
/**
* ALREADY_REDEEMED = 4;
*/
public static final int ALREADY_REDEEMED_VALUE = 4;
/**
* OVER_PLAYER_REDEMPTION_LIMIT = 5;
*/
public static final int OVER_PLAYER_REDEMPTION_LIMIT_VALUE = 5;
public final int getNumber() {
if (this == UNRECOGNIZED) {
throw new java.lang.IllegalArgumentException(
"Can't get the number of an unknown enum value.");
}
return value;
}
/**
* @deprecated Use {@link #forNumber(int)} instead.
*/
@java.lang.Deprecated
public static Result valueOf(int value) {
return forNumber(value);
}
public static Result forNumber(int value) {
switch (value) {
case 0: return UNSET;
case 1: return SUCCESS;
case 2: return NOT_AVAILABLE;
case 3: return OVER_INVENTORY_LIMIT;
case 4: return ALREADY_REDEEMED;
case 5: return OVER_PLAYER_REDEMPTION_LIMIT;
default: return null;
}
}
public static com.google.protobuf.Internal.EnumLiteMap
internalGetValueMap() {
return internalValueMap;
}
private static final com.google.protobuf.Internal.EnumLiteMap<
Result> internalValueMap =
new com.google.protobuf.Internal.EnumLiteMap() {
public Result findValueByNumber(int number) {
return Result.forNumber(number);
}
};
public final com.google.protobuf.Descriptors.EnumValueDescriptor
getValueDescriptor() {
return getDescriptor().getValues().get(ordinal());
}
public final com.google.protobuf.Descriptors.EnumDescriptor
getDescriptorForType() {
return getDescriptor();
}
public static final com.google.protobuf.Descriptors.EnumDescriptor
getDescriptor() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.getDescriptor().getEnumTypes().get(0);
}
private static final Result[] VALUES = values();
public static Result valueOf(
com.google.protobuf.Descriptors.EnumValueDescriptor desc) {
if (desc.getType() != getDescriptor()) {
throw new java.lang.IllegalArgumentException(
"EnumValueDescriptor is not for this type.");
}
if (desc.getIndex() == -1) {
return UNRECOGNIZED;
}
return VALUES[desc.getIndex()];
}
private final int value;
private Result(int value) {
this.value = value;
}
// @@protoc_insertion_point(enum_scope:POGOProtos.Networking.Responses.RedeemPasscodeResponse.Result)
}
public interface AcquiredItemOrBuilder extends
// @@protoc_insertion_point(interface_extends:POGOProtos.Networking.Responses.RedeemPasscodeResponse.AcquiredItem)
com.google.protobuf.MessageOrBuilder {
/**
* string item = 1;
*/
java.lang.String getItem();
/**
* string item = 1;
*/
com.google.protobuf.ByteString
getItemBytes();
/**
* int64 count = 2;
*/
long getCount();
}
/**
* Protobuf type {@code POGOProtos.Networking.Responses.RedeemPasscodeResponse.AcquiredItem}
*/
public static final class AcquiredItem extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:POGOProtos.Networking.Responses.RedeemPasscodeResponse.AcquiredItem)
AcquiredItemOrBuilder {
private static final long serialVersionUID = 0L;
// Use AcquiredItem.newBuilder() to construct.
private AcquiredItem(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private AcquiredItem() {
item_ = "";
count_ = 0L;
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private AcquiredItem(
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();
item_ = s;
break;
}
case 16: {
count_ = input.readInt64();
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.Responses.PlatformClientActionsResponse.internal_static_POGOProtos_Networking_Responses_RedeemPasscodeResponse_AcquiredItem_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.internal_static_POGOProtos_Networking_Responses_RedeemPasscodeResponse_AcquiredItem_fieldAccessorTable
.ensureFieldAccessorsInitialized(
POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.AcquiredItem.class, POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.AcquiredItem.Builder.class);
}
public static final int ITEM_FIELD_NUMBER = 1;
private volatile java.lang.Object item_;
/**
* string item = 1;
*/
public java.lang.String getItem() {
java.lang.Object ref = item_;
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();
item_ = s;
return s;
}
}
/**
* string item = 1;
*/
public com.google.protobuf.ByteString
getItemBytes() {
java.lang.Object ref = item_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
item_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int COUNT_FIELD_NUMBER = 2;
private long count_;
/**
* int64 count = 2;
*/
public long getCount() {
return count_;
}
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 (!getItemBytes().isEmpty()) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 1, item_);
}
if (count_ != 0L) {
output.writeInt64(2, count_);
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (!getItemBytes().isEmpty()) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, item_);
}
if (count_ != 0L) {
size += com.google.protobuf.CodedOutputStream
.computeInt64Size(2, count_);
}
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.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.AcquiredItem)) {
return super.equals(obj);
}
POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.AcquiredItem other = (POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.AcquiredItem) obj;
boolean result = true;
result = result && getItem()
.equals(other.getItem());
result = result && (getCount()
== other.getCount());
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) + ITEM_FIELD_NUMBER;
hash = (53 * hash) + getItem().hashCode();
hash = (37 * hash) + COUNT_FIELD_NUMBER;
hash = (53 * hash) + com.google.protobuf.Internal.hashLong(
getCount());
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.AcquiredItem parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.AcquiredItem parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.AcquiredItem parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.AcquiredItem 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.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.AcquiredItem parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.AcquiredItem parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.AcquiredItem parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.AcquiredItem 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.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.AcquiredItem parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.AcquiredItem 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.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.AcquiredItem parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.AcquiredItem 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.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.AcquiredItem 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.Responses.RedeemPasscodeResponse.AcquiredItem}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:POGOProtos.Networking.Responses.RedeemPasscodeResponse.AcquiredItem)
POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.AcquiredItemOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.internal_static_POGOProtos_Networking_Responses_RedeemPasscodeResponse_AcquiredItem_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.internal_static_POGOProtos_Networking_Responses_RedeemPasscodeResponse_AcquiredItem_fieldAccessorTable
.ensureFieldAccessorsInitialized(
POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.AcquiredItem.class, POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.AcquiredItem.Builder.class);
}
// Construct using POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.AcquiredItem.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();
item_ = "";
count_ = 0L;
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.internal_static_POGOProtos_Networking_Responses_RedeemPasscodeResponse_AcquiredItem_descriptor;
}
@java.lang.Override
public POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.AcquiredItem getDefaultInstanceForType() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.AcquiredItem.getDefaultInstance();
}
@java.lang.Override
public POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.AcquiredItem build() {
POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.AcquiredItem result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.AcquiredItem buildPartial() {
POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.AcquiredItem result = new POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.AcquiredItem(this);
result.item_ = item_;
result.count_ = count_;
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.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.AcquiredItem) {
return mergeFrom((POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.AcquiredItem)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.AcquiredItem other) {
if (other == POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.AcquiredItem.getDefaultInstance()) return this;
if (!other.getItem().isEmpty()) {
item_ = other.item_;
onChanged();
}
if (other.getCount() != 0L) {
setCount(other.getCount());
}
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.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.AcquiredItem parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.AcquiredItem) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private java.lang.Object item_ = "";
/**
* string item = 1;
*/
public java.lang.String getItem() {
java.lang.Object ref = item_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
item_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* string item = 1;
*/
public com.google.protobuf.ByteString
getItemBytes() {
java.lang.Object ref = item_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
item_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* string item = 1;
*/
public Builder setItem(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
item_ = value;
onChanged();
return this;
}
/**
* string item = 1;
*/
public Builder clearItem() {
item_ = getDefaultInstance().getItem();
onChanged();
return this;
}
/**
* string item = 1;
*/
public Builder setItemBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
item_ = value;
onChanged();
return this;
}
private long count_ ;
/**
* int64 count = 2;
*/
public long getCount() {
return count_;
}
/**
* int64 count = 2;
*/
public Builder setCount(long value) {
count_ = value;
onChanged();
return this;
}
/**
* int64 count = 2;
*/
public Builder clearCount() {
count_ = 0L;
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.Responses.RedeemPasscodeResponse.AcquiredItem)
}
// @@protoc_insertion_point(class_scope:POGOProtos.Networking.Responses.RedeemPasscodeResponse.AcquiredItem)
private static final POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.AcquiredItem DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.AcquiredItem();
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.AcquiredItem getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public AcquiredItem parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new AcquiredItem(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.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.AcquiredItem getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
private int bitField0_;
public static final int RESULT_FIELD_NUMBER = 1;
private int result_;
/**
* .POGOProtos.Networking.Responses.RedeemPasscodeResponse.Result result = 1;
*/
public int getResultValue() {
return result_;
}
/**
* .POGOProtos.Networking.Responses.RedeemPasscodeResponse.Result result = 1;
*/
public POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.Result getResult() {
@SuppressWarnings("deprecation")
POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.Result result = POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.Result.valueOf(result_);
return result == null ? POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.Result.UNRECOGNIZED : result;
}
public static final int ACQUIRED_ITEM_FIELD_NUMBER = 2;
private java.util.List acquiredItem_;
/**
* repeated .POGOProtos.Networking.Responses.RedeemPasscodeResponse.AcquiredItem acquired_item = 2;
*/
public java.util.List getAcquiredItemList() {
return acquiredItem_;
}
/**
* repeated .POGOProtos.Networking.Responses.RedeemPasscodeResponse.AcquiredItem acquired_item = 2;
*/
public java.util.List extends POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.AcquiredItemOrBuilder>
getAcquiredItemOrBuilderList() {
return acquiredItem_;
}
/**
* repeated .POGOProtos.Networking.Responses.RedeemPasscodeResponse.AcquiredItem acquired_item = 2;
*/
public int getAcquiredItemCount() {
return acquiredItem_.size();
}
/**
* repeated .POGOProtos.Networking.Responses.RedeemPasscodeResponse.AcquiredItem acquired_item = 2;
*/
public POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.AcquiredItem getAcquiredItem(int index) {
return acquiredItem_.get(index);
}
/**
* repeated .POGOProtos.Networking.Responses.RedeemPasscodeResponse.AcquiredItem acquired_item = 2;
*/
public POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.AcquiredItemOrBuilder getAcquiredItemOrBuilder(
int index) {
return acquiredItem_.get(index);
}
public static final int ACQUIRED_ITEMS_PROTO_FIELD_NUMBER = 3;
private com.google.protobuf.ByteString acquiredItemsProto_;
/**
* bytes acquired_items_proto = 3;
*/
public com.google.protobuf.ByteString getAcquiredItemsProto() {
return acquiredItemsProto_;
}
public static final int PASSCODE_FIELD_NUMBER = 4;
private volatile java.lang.Object passcode_;
/**
* string passcode = 4;
*/
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 = 4;
*/
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 (result_ != POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.Result.UNSET.getNumber()) {
output.writeEnum(1, result_);
}
for (int i = 0; i < acquiredItem_.size(); i++) {
output.writeMessage(2, acquiredItem_.get(i));
}
if (!acquiredItemsProto_.isEmpty()) {
output.writeBytes(3, acquiredItemsProto_);
}
if (!getPasscodeBytes().isEmpty()) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 4, passcode_);
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (result_ != POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.Result.UNSET.getNumber()) {
size += com.google.protobuf.CodedOutputStream
.computeEnumSize(1, result_);
}
for (int i = 0; i < acquiredItem_.size(); i++) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(2, acquiredItem_.get(i));
}
if (!acquiredItemsProto_.isEmpty()) {
size += com.google.protobuf.CodedOutputStream
.computeBytesSize(3, acquiredItemsProto_);
}
if (!getPasscodeBytes().isEmpty()) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(4, 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.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse)) {
return super.equals(obj);
}
POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse other = (POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse) obj;
boolean result = true;
result = result && result_ == other.result_;
result = result && getAcquiredItemList()
.equals(other.getAcquiredItemList());
result = result && getAcquiredItemsProto()
.equals(other.getAcquiredItemsProto());
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) + RESULT_FIELD_NUMBER;
hash = (53 * hash) + result_;
if (getAcquiredItemCount() > 0) {
hash = (37 * hash) + ACQUIRED_ITEM_FIELD_NUMBER;
hash = (53 * hash) + getAcquiredItemList().hashCode();
}
hash = (37 * hash) + ACQUIRED_ITEMS_PROTO_FIELD_NUMBER;
hash = (53 * hash) + getAcquiredItemsProto().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.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse 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.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse 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.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse 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.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse 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.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse 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.Responses.RedeemPasscodeResponse}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:POGOProtos.Networking.Responses.RedeemPasscodeResponse)
POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponseOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.internal_static_POGOProtos_Networking_Responses_RedeemPasscodeResponse_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.internal_static_POGOProtos_Networking_Responses_RedeemPasscodeResponse_fieldAccessorTable
.ensureFieldAccessorsInitialized(
POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.class, POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.Builder.class);
}
// Construct using POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
getAcquiredItemFieldBuilder();
}
}
@java.lang.Override
public Builder clear() {
super.clear();
result_ = 0;
if (acquiredItemBuilder_ == null) {
acquiredItem_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000002);
} else {
acquiredItemBuilder_.clear();
}
acquiredItemsProto_ = com.google.protobuf.ByteString.EMPTY;
passcode_ = "";
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.internal_static_POGOProtos_Networking_Responses_RedeemPasscodeResponse_descriptor;
}
@java.lang.Override
public POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse getDefaultInstanceForType() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.getDefaultInstance();
}
@java.lang.Override
public POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse build() {
POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse buildPartial() {
POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse result = new POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse(this);
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
result.result_ = result_;
if (acquiredItemBuilder_ == null) {
if (((bitField0_ & 0x00000002) == 0x00000002)) {
acquiredItem_ = java.util.Collections.unmodifiableList(acquiredItem_);
bitField0_ = (bitField0_ & ~0x00000002);
}
result.acquiredItem_ = acquiredItem_;
} else {
result.acquiredItem_ = acquiredItemBuilder_.build();
}
result.acquiredItemsProto_ = acquiredItemsProto_;
result.passcode_ = passcode_;
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.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse) {
return mergeFrom((POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse other) {
if (other == POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.getDefaultInstance()) return this;
if (other.result_ != 0) {
setResultValue(other.getResultValue());
}
if (acquiredItemBuilder_ == null) {
if (!other.acquiredItem_.isEmpty()) {
if (acquiredItem_.isEmpty()) {
acquiredItem_ = other.acquiredItem_;
bitField0_ = (bitField0_ & ~0x00000002);
} else {
ensureAcquiredItemIsMutable();
acquiredItem_.addAll(other.acquiredItem_);
}
onChanged();
}
} else {
if (!other.acquiredItem_.isEmpty()) {
if (acquiredItemBuilder_.isEmpty()) {
acquiredItemBuilder_.dispose();
acquiredItemBuilder_ = null;
acquiredItem_ = other.acquiredItem_;
bitField0_ = (bitField0_ & ~0x00000002);
acquiredItemBuilder_ =
com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ?
getAcquiredItemFieldBuilder() : null;
} else {
acquiredItemBuilder_.addAllMessages(other.acquiredItem_);
}
}
}
if (other.getAcquiredItemsProto() != com.google.protobuf.ByteString.EMPTY) {
setAcquiredItemsProto(other.getAcquiredItemsProto());
}
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.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
private int result_ = 0;
/**
* .POGOProtos.Networking.Responses.RedeemPasscodeResponse.Result result = 1;
*/
public int getResultValue() {
return result_;
}
/**
* .POGOProtos.Networking.Responses.RedeemPasscodeResponse.Result result = 1;
*/
public Builder setResultValue(int value) {
result_ = value;
onChanged();
return this;
}
/**
* .POGOProtos.Networking.Responses.RedeemPasscodeResponse.Result result = 1;
*/
public POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.Result getResult() {
@SuppressWarnings("deprecation")
POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.Result result = POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.Result.valueOf(result_);
return result == null ? POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.Result.UNRECOGNIZED : result;
}
/**
* .POGOProtos.Networking.Responses.RedeemPasscodeResponse.Result result = 1;
*/
public Builder setResult(POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.Result value) {
if (value == null) {
throw new NullPointerException();
}
result_ = value.getNumber();
onChanged();
return this;
}
/**
* .POGOProtos.Networking.Responses.RedeemPasscodeResponse.Result result = 1;
*/
public Builder clearResult() {
result_ = 0;
onChanged();
return this;
}
private java.util.List acquiredItem_ =
java.util.Collections.emptyList();
private void ensureAcquiredItemIsMutable() {
if (!((bitField0_ & 0x00000002) == 0x00000002)) {
acquiredItem_ = new java.util.ArrayList(acquiredItem_);
bitField0_ |= 0x00000002;
}
}
private com.google.protobuf.RepeatedFieldBuilderV3<
POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.AcquiredItem, POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.AcquiredItem.Builder, POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.AcquiredItemOrBuilder> acquiredItemBuilder_;
/**
* repeated .POGOProtos.Networking.Responses.RedeemPasscodeResponse.AcquiredItem acquired_item = 2;
*/
public java.util.List getAcquiredItemList() {
if (acquiredItemBuilder_ == null) {
return java.util.Collections.unmodifiableList(acquiredItem_);
} else {
return acquiredItemBuilder_.getMessageList();
}
}
/**
* repeated .POGOProtos.Networking.Responses.RedeemPasscodeResponse.AcquiredItem acquired_item = 2;
*/
public int getAcquiredItemCount() {
if (acquiredItemBuilder_ == null) {
return acquiredItem_.size();
} else {
return acquiredItemBuilder_.getCount();
}
}
/**
* repeated .POGOProtos.Networking.Responses.RedeemPasscodeResponse.AcquiredItem acquired_item = 2;
*/
public POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.AcquiredItem getAcquiredItem(int index) {
if (acquiredItemBuilder_ == null) {
return acquiredItem_.get(index);
} else {
return acquiredItemBuilder_.getMessage(index);
}
}
/**
* repeated .POGOProtos.Networking.Responses.RedeemPasscodeResponse.AcquiredItem acquired_item = 2;
*/
public Builder setAcquiredItem(
int index, POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.AcquiredItem value) {
if (acquiredItemBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureAcquiredItemIsMutable();
acquiredItem_.set(index, value);
onChanged();
} else {
acquiredItemBuilder_.setMessage(index, value);
}
return this;
}
/**
* repeated .POGOProtos.Networking.Responses.RedeemPasscodeResponse.AcquiredItem acquired_item = 2;
*/
public Builder setAcquiredItem(
int index, POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.AcquiredItem.Builder builderForValue) {
if (acquiredItemBuilder_ == null) {
ensureAcquiredItemIsMutable();
acquiredItem_.set(index, builderForValue.build());
onChanged();
} else {
acquiredItemBuilder_.setMessage(index, builderForValue.build());
}
return this;
}
/**
* repeated .POGOProtos.Networking.Responses.RedeemPasscodeResponse.AcquiredItem acquired_item = 2;
*/
public Builder addAcquiredItem(POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.AcquiredItem value) {
if (acquiredItemBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureAcquiredItemIsMutable();
acquiredItem_.add(value);
onChanged();
} else {
acquiredItemBuilder_.addMessage(value);
}
return this;
}
/**
* repeated .POGOProtos.Networking.Responses.RedeemPasscodeResponse.AcquiredItem acquired_item = 2;
*/
public Builder addAcquiredItem(
int index, POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.AcquiredItem value) {
if (acquiredItemBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureAcquiredItemIsMutable();
acquiredItem_.add(index, value);
onChanged();
} else {
acquiredItemBuilder_.addMessage(index, value);
}
return this;
}
/**
* repeated .POGOProtos.Networking.Responses.RedeemPasscodeResponse.AcquiredItem acquired_item = 2;
*/
public Builder addAcquiredItem(
POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.AcquiredItem.Builder builderForValue) {
if (acquiredItemBuilder_ == null) {
ensureAcquiredItemIsMutable();
acquiredItem_.add(builderForValue.build());
onChanged();
} else {
acquiredItemBuilder_.addMessage(builderForValue.build());
}
return this;
}
/**
* repeated .POGOProtos.Networking.Responses.RedeemPasscodeResponse.AcquiredItem acquired_item = 2;
*/
public Builder addAcquiredItem(
int index, POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.AcquiredItem.Builder builderForValue) {
if (acquiredItemBuilder_ == null) {
ensureAcquiredItemIsMutable();
acquiredItem_.add(index, builderForValue.build());
onChanged();
} else {
acquiredItemBuilder_.addMessage(index, builderForValue.build());
}
return this;
}
/**
* repeated .POGOProtos.Networking.Responses.RedeemPasscodeResponse.AcquiredItem acquired_item = 2;
*/
public Builder addAllAcquiredItem(
java.lang.Iterable extends POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.AcquiredItem> values) {
if (acquiredItemBuilder_ == null) {
ensureAcquiredItemIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, acquiredItem_);
onChanged();
} else {
acquiredItemBuilder_.addAllMessages(values);
}
return this;
}
/**
* repeated .POGOProtos.Networking.Responses.RedeemPasscodeResponse.AcquiredItem acquired_item = 2;
*/
public Builder clearAcquiredItem() {
if (acquiredItemBuilder_ == null) {
acquiredItem_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000002);
onChanged();
} else {
acquiredItemBuilder_.clear();
}
return this;
}
/**
* repeated .POGOProtos.Networking.Responses.RedeemPasscodeResponse.AcquiredItem acquired_item = 2;
*/
public Builder removeAcquiredItem(int index) {
if (acquiredItemBuilder_ == null) {
ensureAcquiredItemIsMutable();
acquiredItem_.remove(index);
onChanged();
} else {
acquiredItemBuilder_.remove(index);
}
return this;
}
/**
* repeated .POGOProtos.Networking.Responses.RedeemPasscodeResponse.AcquiredItem acquired_item = 2;
*/
public POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.AcquiredItem.Builder getAcquiredItemBuilder(
int index) {
return getAcquiredItemFieldBuilder().getBuilder(index);
}
/**
* repeated .POGOProtos.Networking.Responses.RedeemPasscodeResponse.AcquiredItem acquired_item = 2;
*/
public POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.AcquiredItemOrBuilder getAcquiredItemOrBuilder(
int index) {
if (acquiredItemBuilder_ == null) {
return acquiredItem_.get(index); } else {
return acquiredItemBuilder_.getMessageOrBuilder(index);
}
}
/**
* repeated .POGOProtos.Networking.Responses.RedeemPasscodeResponse.AcquiredItem acquired_item = 2;
*/
public java.util.List extends POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.AcquiredItemOrBuilder>
getAcquiredItemOrBuilderList() {
if (acquiredItemBuilder_ != null) {
return acquiredItemBuilder_.getMessageOrBuilderList();
} else {
return java.util.Collections.unmodifiableList(acquiredItem_);
}
}
/**
* repeated .POGOProtos.Networking.Responses.RedeemPasscodeResponse.AcquiredItem acquired_item = 2;
*/
public POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.AcquiredItem.Builder addAcquiredItemBuilder() {
return getAcquiredItemFieldBuilder().addBuilder(
POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.AcquiredItem.getDefaultInstance());
}
/**
* repeated .POGOProtos.Networking.Responses.RedeemPasscodeResponse.AcquiredItem acquired_item = 2;
*/
public POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.AcquiredItem.Builder addAcquiredItemBuilder(
int index) {
return getAcquiredItemFieldBuilder().addBuilder(
index, POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.AcquiredItem.getDefaultInstance());
}
/**
* repeated .POGOProtos.Networking.Responses.RedeemPasscodeResponse.AcquiredItem acquired_item = 2;
*/
public java.util.List
getAcquiredItemBuilderList() {
return getAcquiredItemFieldBuilder().getBuilderList();
}
private com.google.protobuf.RepeatedFieldBuilderV3<
POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.AcquiredItem, POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.AcquiredItem.Builder, POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.AcquiredItemOrBuilder>
getAcquiredItemFieldBuilder() {
if (acquiredItemBuilder_ == null) {
acquiredItemBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3<
POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.AcquiredItem, POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.AcquiredItem.Builder, POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse.AcquiredItemOrBuilder>(
acquiredItem_,
((bitField0_ & 0x00000002) == 0x00000002),
getParentForChildren(),
isClean());
acquiredItem_ = null;
}
return acquiredItemBuilder_;
}
private com.google.protobuf.ByteString acquiredItemsProto_ = com.google.protobuf.ByteString.EMPTY;
/**
* bytes acquired_items_proto = 3;
*/
public com.google.protobuf.ByteString getAcquiredItemsProto() {
return acquiredItemsProto_;
}
/**
* bytes acquired_items_proto = 3;
*/
public Builder setAcquiredItemsProto(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
acquiredItemsProto_ = value;
onChanged();
return this;
}
/**
* bytes acquired_items_proto = 3;
*/
public Builder clearAcquiredItemsProto() {
acquiredItemsProto_ = getDefaultInstance().getAcquiredItemsProto();
onChanged();
return this;
}
private java.lang.Object passcode_ = "";
/**
* string passcode = 4;
*/
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 = 4;
*/
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 = 4;
*/
public Builder setPasscode(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
passcode_ = value;
onChanged();
return this;
}
/**
* string passcode = 4;
*/
public Builder clearPasscode() {
passcode_ = getDefaultInstance().getPasscode();
onChanged();
return this;
}
/**
* string passcode = 4;
*/
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.Responses.RedeemPasscodeResponse)
}
// @@protoc_insertion_point(class_scope:POGOProtos.Networking.Responses.RedeemPasscodeResponse)
private static final POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse();
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public RedeemPasscodeResponse parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new RedeemPasscodeResponse(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.Responses.PlatformClientActionsResponse.RedeemPasscodeResponse getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
public interface AddNewPoiResponseOrBuilder extends
// @@protoc_insertion_point(interface_extends:POGOProtos.Networking.Responses.AddNewPoiResponse)
com.google.protobuf.MessageOrBuilder {
/**
* .POGOProtos.Networking.Responses.AddNewPoiResponse.Status status = 1;
*/
int getStatusValue();
/**
* .POGOProtos.Networking.Responses.AddNewPoiResponse.Status status = 1;
*/
POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddNewPoiResponse.Status getStatus();
/**
* repeated string message = 2;
*/
java.util.List
getMessageList();
/**
* repeated string message = 2;
*/
int getMessageCount();
/**
* repeated string message = 2;
*/
java.lang.String getMessage(int index);
/**
* repeated string message = 2;
*/
com.google.protobuf.ByteString
getMessageBytes(int index);
}
/**
* Protobuf type {@code POGOProtos.Networking.Responses.AddNewPoiResponse}
*/
public static final class AddNewPoiResponse extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:POGOProtos.Networking.Responses.AddNewPoiResponse)
AddNewPoiResponseOrBuilder {
private static final long serialVersionUID = 0L;
// Use AddNewPoiResponse.newBuilder() to construct.
private AddNewPoiResponse(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private AddNewPoiResponse() {
status_ = 0;
message_ = com.google.protobuf.LazyStringArrayList.EMPTY;
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private AddNewPoiResponse(
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();
status_ = rawValue;
break;
}
case 18: {
java.lang.String s = input.readStringRequireUtf8();
if (!((mutable_bitField0_ & 0x00000002) == 0x00000002)) {
message_ = new com.google.protobuf.LazyStringArrayList();
mutable_bitField0_ |= 0x00000002;
}
message_.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_ & 0x00000002) == 0x00000002)) {
message_ = message_.getUnmodifiableView();
}
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.internal_static_POGOProtos_Networking_Responses_AddNewPoiResponse_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.internal_static_POGOProtos_Networking_Responses_AddNewPoiResponse_fieldAccessorTable
.ensureFieldAccessorsInitialized(
POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddNewPoiResponse.class, POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddNewPoiResponse.Builder.class);
}
/**
* Protobuf enum {@code POGOProtos.Networking.Responses.AddNewPoiResponse.Status}
*/
public enum Status
implements com.google.protobuf.ProtocolMessageEnum {
/**
* UNSET = 0;
*/
UNSET(0),
/**
* SUCCESS = 1;
*/
SUCCESS(1),
/**
* FAILURE = 2;
*/
FAILURE(2),
/**
* INTERNAL_ERROR = 3;
*/
INTERNAL_ERROR(3),
/**
* TOO_MANY_RECENT_SUBMISSIONS = 4;
*/
TOO_MANY_RECENT_SUBMISSIONS(4),
/**
* INVALID_INPUT = 5;
*/
INVALID_INPUT(5),
UNRECOGNIZED(-1),
;
/**
* UNSET = 0;
*/
public static final int UNSET_VALUE = 0;
/**
* SUCCESS = 1;
*/
public static final int SUCCESS_VALUE = 1;
/**
* FAILURE = 2;
*/
public static final int FAILURE_VALUE = 2;
/**
* INTERNAL_ERROR = 3;
*/
public static final int INTERNAL_ERROR_VALUE = 3;
/**
* TOO_MANY_RECENT_SUBMISSIONS = 4;
*/
public static final int TOO_MANY_RECENT_SUBMISSIONS_VALUE = 4;
/**
* INVALID_INPUT = 5;
*/
public static final int INVALID_INPUT_VALUE = 5;
public final int getNumber() {
if (this == UNRECOGNIZED) {
throw new java.lang.IllegalArgumentException(
"Can't get the number of an unknown enum value.");
}
return value;
}
/**
* @deprecated Use {@link #forNumber(int)} instead.
*/
@java.lang.Deprecated
public static Status valueOf(int value) {
return forNumber(value);
}
public static Status forNumber(int value) {
switch (value) {
case 0: return UNSET;
case 1: return SUCCESS;
case 2: return FAILURE;
case 3: return INTERNAL_ERROR;
case 4: return TOO_MANY_RECENT_SUBMISSIONS;
case 5: return INVALID_INPUT;
default: return null;
}
}
public static com.google.protobuf.Internal.EnumLiteMap
internalGetValueMap() {
return internalValueMap;
}
private static final com.google.protobuf.Internal.EnumLiteMap<
Status> internalValueMap =
new com.google.protobuf.Internal.EnumLiteMap() {
public Status findValueByNumber(int number) {
return Status.forNumber(number);
}
};
public final com.google.protobuf.Descriptors.EnumValueDescriptor
getValueDescriptor() {
return getDescriptor().getValues().get(ordinal());
}
public final com.google.protobuf.Descriptors.EnumDescriptor
getDescriptorForType() {
return getDescriptor();
}
public static final com.google.protobuf.Descriptors.EnumDescriptor
getDescriptor() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddNewPoiResponse.getDescriptor().getEnumTypes().get(0);
}
private static final Status[] VALUES = values();
public static Status valueOf(
com.google.protobuf.Descriptors.EnumValueDescriptor desc) {
if (desc.getType() != getDescriptor()) {
throw new java.lang.IllegalArgumentException(
"EnumValueDescriptor is not for this type.");
}
if (desc.getIndex() == -1) {
return UNRECOGNIZED;
}
return VALUES[desc.getIndex()];
}
private final int value;
private Status(int value) {
this.value = value;
}
// @@protoc_insertion_point(enum_scope:POGOProtos.Networking.Responses.AddNewPoiResponse.Status)
}
private int bitField0_;
public static final int STATUS_FIELD_NUMBER = 1;
private int status_;
/**
* .POGOProtos.Networking.Responses.AddNewPoiResponse.Status status = 1;
*/
public int getStatusValue() {
return status_;
}
/**
* .POGOProtos.Networking.Responses.AddNewPoiResponse.Status status = 1;
*/
public POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddNewPoiResponse.Status getStatus() {
@SuppressWarnings("deprecation")
POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddNewPoiResponse.Status result = POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddNewPoiResponse.Status.valueOf(status_);
return result == null ? POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddNewPoiResponse.Status.UNRECOGNIZED : result;
}
public static final int MESSAGE_FIELD_NUMBER = 2;
private com.google.protobuf.LazyStringList message_;
/**
* repeated string message = 2;
*/
public com.google.protobuf.ProtocolStringList
getMessageList() {
return message_;
}
/**
* repeated string message = 2;
*/
public int getMessageCount() {
return message_.size();
}
/**
* repeated string message = 2;
*/
public java.lang.String getMessage(int index) {
return message_.get(index);
}
/**
* repeated string message = 2;
*/
public com.google.protobuf.ByteString
getMessageBytes(int index) {
return message_.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 {
if (status_ != POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddNewPoiResponse.Status.UNSET.getNumber()) {
output.writeEnum(1, status_);
}
for (int i = 0; i < message_.size(); i++) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 2, message_.getRaw(i));
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (status_ != POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddNewPoiResponse.Status.UNSET.getNumber()) {
size += com.google.protobuf.CodedOutputStream
.computeEnumSize(1, status_);
}
{
int dataSize = 0;
for (int i = 0; i < message_.size(); i++) {
dataSize += computeStringSizeNoTag(message_.getRaw(i));
}
size += dataSize;
size += 1 * getMessageList().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.Responses.PlatformClientActionsResponse.AddNewPoiResponse)) {
return super.equals(obj);
}
POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddNewPoiResponse other = (POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddNewPoiResponse) obj;
boolean result = true;
result = result && status_ == other.status_;
result = result && getMessageList()
.equals(other.getMessageList());
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) + STATUS_FIELD_NUMBER;
hash = (53 * hash) + status_;
if (getMessageCount() > 0) {
hash = (37 * hash) + MESSAGE_FIELD_NUMBER;
hash = (53 * hash) + getMessageList().hashCode();
}
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddNewPoiResponse parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddNewPoiResponse parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddNewPoiResponse parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddNewPoiResponse 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.Responses.PlatformClientActionsResponse.AddNewPoiResponse parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddNewPoiResponse parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddNewPoiResponse parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddNewPoiResponse 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.Responses.PlatformClientActionsResponse.AddNewPoiResponse parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddNewPoiResponse 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.Responses.PlatformClientActionsResponse.AddNewPoiResponse parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddNewPoiResponse 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.Responses.PlatformClientActionsResponse.AddNewPoiResponse 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.Responses.AddNewPoiResponse}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:POGOProtos.Networking.Responses.AddNewPoiResponse)
POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddNewPoiResponseOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.internal_static_POGOProtos_Networking_Responses_AddNewPoiResponse_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.internal_static_POGOProtos_Networking_Responses_AddNewPoiResponse_fieldAccessorTable
.ensureFieldAccessorsInitialized(
POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddNewPoiResponse.class, POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddNewPoiResponse.Builder.class);
}
// Construct using POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddNewPoiResponse.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();
status_ = 0;
message_ = com.google.protobuf.LazyStringArrayList.EMPTY;
bitField0_ = (bitField0_ & ~0x00000002);
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.internal_static_POGOProtos_Networking_Responses_AddNewPoiResponse_descriptor;
}
@java.lang.Override
public POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddNewPoiResponse getDefaultInstanceForType() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddNewPoiResponse.getDefaultInstance();
}
@java.lang.Override
public POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddNewPoiResponse build() {
POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddNewPoiResponse result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddNewPoiResponse buildPartial() {
POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddNewPoiResponse result = new POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddNewPoiResponse(this);
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
result.status_ = status_;
if (((bitField0_ & 0x00000002) == 0x00000002)) {
message_ = message_.getUnmodifiableView();
bitField0_ = (bitField0_ & ~0x00000002);
}
result.message_ = message_;
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.Responses.PlatformClientActionsResponse.AddNewPoiResponse) {
return mergeFrom((POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddNewPoiResponse)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddNewPoiResponse other) {
if (other == POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddNewPoiResponse.getDefaultInstance()) return this;
if (other.status_ != 0) {
setStatusValue(other.getStatusValue());
}
if (!other.message_.isEmpty()) {
if (message_.isEmpty()) {
message_ = other.message_;
bitField0_ = (bitField0_ & ~0x00000002);
} else {
ensureMessageIsMutable();
message_.addAll(other.message_);
}
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.Responses.PlatformClientActionsResponse.AddNewPoiResponse parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddNewPoiResponse) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
private int status_ = 0;
/**
* .POGOProtos.Networking.Responses.AddNewPoiResponse.Status status = 1;
*/
public int getStatusValue() {
return status_;
}
/**
* .POGOProtos.Networking.Responses.AddNewPoiResponse.Status status = 1;
*/
public Builder setStatusValue(int value) {
status_ = value;
onChanged();
return this;
}
/**
* .POGOProtos.Networking.Responses.AddNewPoiResponse.Status status = 1;
*/
public POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddNewPoiResponse.Status getStatus() {
@SuppressWarnings("deprecation")
POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddNewPoiResponse.Status result = POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddNewPoiResponse.Status.valueOf(status_);
return result == null ? POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddNewPoiResponse.Status.UNRECOGNIZED : result;
}
/**
* .POGOProtos.Networking.Responses.AddNewPoiResponse.Status status = 1;
*/
public Builder setStatus(POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddNewPoiResponse.Status value) {
if (value == null) {
throw new NullPointerException();
}
status_ = value.getNumber();
onChanged();
return this;
}
/**
* .POGOProtos.Networking.Responses.AddNewPoiResponse.Status status = 1;
*/
public Builder clearStatus() {
status_ = 0;
onChanged();
return this;
}
private com.google.protobuf.LazyStringList message_ = com.google.protobuf.LazyStringArrayList.EMPTY;
private void ensureMessageIsMutable() {
if (!((bitField0_ & 0x00000002) == 0x00000002)) {
message_ = new com.google.protobuf.LazyStringArrayList(message_);
bitField0_ |= 0x00000002;
}
}
/**
* repeated string message = 2;
*/
public com.google.protobuf.ProtocolStringList
getMessageList() {
return message_.getUnmodifiableView();
}
/**
* repeated string message = 2;
*/
public int getMessageCount() {
return message_.size();
}
/**
* repeated string message = 2;
*/
public java.lang.String getMessage(int index) {
return message_.get(index);
}
/**
* repeated string message = 2;
*/
public com.google.protobuf.ByteString
getMessageBytes(int index) {
return message_.getByteString(index);
}
/**
* repeated string message = 2;
*/
public Builder setMessage(
int index, java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
ensureMessageIsMutable();
message_.set(index, value);
onChanged();
return this;
}
/**
* repeated string message = 2;
*/
public Builder addMessage(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
ensureMessageIsMutable();
message_.add(value);
onChanged();
return this;
}
/**
* repeated string message = 2;
*/
public Builder addAllMessage(
java.lang.Iterable values) {
ensureMessageIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, message_);
onChanged();
return this;
}
/**
* repeated string message = 2;
*/
public Builder clearMessage() {
message_ = com.google.protobuf.LazyStringArrayList.EMPTY;
bitField0_ = (bitField0_ & ~0x00000002);
onChanged();
return this;
}
/**
* repeated string message = 2;
*/
public Builder addMessageBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
ensureMessageIsMutable();
message_.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.Responses.AddNewPoiResponse)
}
// @@protoc_insertion_point(class_scope:POGOProtos.Networking.Responses.AddNewPoiResponse)
private static final POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddNewPoiResponse DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddNewPoiResponse();
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddNewPoiResponse getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public AddNewPoiResponse parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new AddNewPoiResponse(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.Responses.PlatformClientActionsResponse.AddNewPoiResponse getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
public interface ProxySocialActionResponseOrBuilder extends
// @@protoc_insertion_point(interface_extends:POGOProtos.Networking.Responses.ProxySocialActionResponse)
com.google.protobuf.MessageOrBuilder {
/**
* .POGOProtos.Networking.Responses.ProxySocialActionResponse.Status status = 1;
*/
int getStatusValue();
/**
* .POGOProtos.Networking.Responses.ProxySocialActionResponse.Status status = 1;
*/
POGOProtos.Networking.Responses.PlatformClientActionsResponse.ProxySocialActionResponse.Status getStatus();
/**
* string assigned_host = 2;
*/
java.lang.String getAssignedHost();
/**
* string assigned_host = 2;
*/
com.google.protobuf.ByteString
getAssignedHostBytes();
/**
* bytes payload = 3;
*/
com.google.protobuf.ByteString getPayload();
}
/**
* Protobuf type {@code POGOProtos.Networking.Responses.ProxySocialActionResponse}
*/
public static final class ProxySocialActionResponse extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:POGOProtos.Networking.Responses.ProxySocialActionResponse)
ProxySocialActionResponseOrBuilder {
private static final long serialVersionUID = 0L;
// Use ProxySocialActionResponse.newBuilder() to construct.
private ProxySocialActionResponse(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private ProxySocialActionResponse() {
status_ = 0;
assignedHost_ = "";
payload_ = com.google.protobuf.ByteString.EMPTY;
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private ProxySocialActionResponse(
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();
status_ = rawValue;
break;
}
case 18: {
java.lang.String s = input.readStringRequireUtf8();
assignedHost_ = 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.Responses.PlatformClientActionsResponse.internal_static_POGOProtos_Networking_Responses_ProxySocialActionResponse_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.internal_static_POGOProtos_Networking_Responses_ProxySocialActionResponse_fieldAccessorTable
.ensureFieldAccessorsInitialized(
POGOProtos.Networking.Responses.PlatformClientActionsResponse.ProxySocialActionResponse.class, POGOProtos.Networking.Responses.PlatformClientActionsResponse.ProxySocialActionResponse.Builder.class);
}
/**
* Protobuf enum {@code POGOProtos.Networking.Responses.ProxySocialActionResponse.Status}
*/
public enum Status
implements com.google.protobuf.ProtocolMessageEnum {
/**
* UNSET = 0;
*/
UNSET(0),
/**
* COMPLETED = 1;
*/
COMPLETED(1),
/**
* COMPLETED_AND_REASSIGNED = 2;
*/
COMPLETED_AND_REASSIGNED(2),
/**
* ACTION_NOT_FOUND = 3;
*/
ACTION_NOT_FOUND(3),
/**
* ASSIGNMENT_ERROR = 4;
*/
ASSIGNMENT_ERROR(4),
/**
* PROXY_UNAUTHORIZED_ERROR = 5;
*/
PROXY_UNAUTHORIZED_ERROR(5),
/**
* INTERNAL_ERROR = 6;
*/
INTERNAL_ERROR(6),
/**
* BAD_REQUEST = 7;
*/
BAD_REQUEST(7),
/**
* ACCESS_DENIED = 8;
*/
ACCESS_DENIED(8),
/**
* TIMEOUT_ERROR = 9;
*/
TIMEOUT_ERROR(9),
/**
* RATE_LIMITED = 10;
*/
RATE_LIMITED(10),
UNRECOGNIZED(-1),
;
/**
* UNSET = 0;
*/
public static final int UNSET_VALUE = 0;
/**
* COMPLETED = 1;
*/
public static final int COMPLETED_VALUE = 1;
/**
* COMPLETED_AND_REASSIGNED = 2;
*/
public static final int COMPLETED_AND_REASSIGNED_VALUE = 2;
/**
* ACTION_NOT_FOUND = 3;
*/
public static final int ACTION_NOT_FOUND_VALUE = 3;
/**
* ASSIGNMENT_ERROR = 4;
*/
public static final int ASSIGNMENT_ERROR_VALUE = 4;
/**
* PROXY_UNAUTHORIZED_ERROR = 5;
*/
public static final int PROXY_UNAUTHORIZED_ERROR_VALUE = 5;
/**
* INTERNAL_ERROR = 6;
*/
public static final int INTERNAL_ERROR_VALUE = 6;
/**
* BAD_REQUEST = 7;
*/
public static final int BAD_REQUEST_VALUE = 7;
/**
* ACCESS_DENIED = 8;
*/
public static final int ACCESS_DENIED_VALUE = 8;
/**
* TIMEOUT_ERROR = 9;
*/
public static final int TIMEOUT_ERROR_VALUE = 9;
/**
* RATE_LIMITED = 10;
*/
public static final int RATE_LIMITED_VALUE = 10;
public final int getNumber() {
if (this == UNRECOGNIZED) {
throw new java.lang.IllegalArgumentException(
"Can't get the number of an unknown enum value.");
}
return value;
}
/**
* @deprecated Use {@link #forNumber(int)} instead.
*/
@java.lang.Deprecated
public static Status valueOf(int value) {
return forNumber(value);
}
public static Status forNumber(int value) {
switch (value) {
case 0: return UNSET;
case 1: return COMPLETED;
case 2: return COMPLETED_AND_REASSIGNED;
case 3: return ACTION_NOT_FOUND;
case 4: return ASSIGNMENT_ERROR;
case 5: return PROXY_UNAUTHORIZED_ERROR;
case 6: return INTERNAL_ERROR;
case 7: return BAD_REQUEST;
case 8: return ACCESS_DENIED;
case 9: return TIMEOUT_ERROR;
case 10: return RATE_LIMITED;
default: return null;
}
}
public static com.google.protobuf.Internal.EnumLiteMap
internalGetValueMap() {
return internalValueMap;
}
private static final com.google.protobuf.Internal.EnumLiteMap<
Status> internalValueMap =
new com.google.protobuf.Internal.EnumLiteMap() {
public Status findValueByNumber(int number) {
return Status.forNumber(number);
}
};
public final com.google.protobuf.Descriptors.EnumValueDescriptor
getValueDescriptor() {
return getDescriptor().getValues().get(ordinal());
}
public final com.google.protobuf.Descriptors.EnumDescriptor
getDescriptorForType() {
return getDescriptor();
}
public static final com.google.protobuf.Descriptors.EnumDescriptor
getDescriptor() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.ProxySocialActionResponse.getDescriptor().getEnumTypes().get(0);
}
private static final Status[] VALUES = values();
public static Status valueOf(
com.google.protobuf.Descriptors.EnumValueDescriptor desc) {
if (desc.getType() != getDescriptor()) {
throw new java.lang.IllegalArgumentException(
"EnumValueDescriptor is not for this type.");
}
if (desc.getIndex() == -1) {
return UNRECOGNIZED;
}
return VALUES[desc.getIndex()];
}
private final int value;
private Status(int value) {
this.value = value;
}
// @@protoc_insertion_point(enum_scope:POGOProtos.Networking.Responses.ProxySocialActionResponse.Status)
}
public static final int STATUS_FIELD_NUMBER = 1;
private int status_;
/**
* .POGOProtos.Networking.Responses.ProxySocialActionResponse.Status status = 1;
*/
public int getStatusValue() {
return status_;
}
/**
* .POGOProtos.Networking.Responses.ProxySocialActionResponse.Status status = 1;
*/
public POGOProtos.Networking.Responses.PlatformClientActionsResponse.ProxySocialActionResponse.Status getStatus() {
@SuppressWarnings("deprecation")
POGOProtos.Networking.Responses.PlatformClientActionsResponse.ProxySocialActionResponse.Status result = POGOProtos.Networking.Responses.PlatformClientActionsResponse.ProxySocialActionResponse.Status.valueOf(status_);
return result == null ? POGOProtos.Networking.Responses.PlatformClientActionsResponse.ProxySocialActionResponse.Status.UNRECOGNIZED : result;
}
public static final int ASSIGNED_HOST_FIELD_NUMBER = 2;
private volatile java.lang.Object assignedHost_;
/**
* string assigned_host = 2;
*/
public java.lang.String getAssignedHost() {
java.lang.Object ref = assignedHost_;
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();
assignedHost_ = s;
return s;
}
}
/**
* string assigned_host = 2;
*/
public com.google.protobuf.ByteString
getAssignedHostBytes() {
java.lang.Object ref = assignedHost_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
assignedHost_ = 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 (status_ != POGOProtos.Networking.Responses.PlatformClientActionsResponse.ProxySocialActionResponse.Status.UNSET.getNumber()) {
output.writeEnum(1, status_);
}
if (!getAssignedHostBytes().isEmpty()) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 2, assignedHost_);
}
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 (status_ != POGOProtos.Networking.Responses.PlatformClientActionsResponse.ProxySocialActionResponse.Status.UNSET.getNumber()) {
size += com.google.protobuf.CodedOutputStream
.computeEnumSize(1, status_);
}
if (!getAssignedHostBytes().isEmpty()) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, assignedHost_);
}
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.Responses.PlatformClientActionsResponse.ProxySocialActionResponse)) {
return super.equals(obj);
}
POGOProtos.Networking.Responses.PlatformClientActionsResponse.ProxySocialActionResponse other = (POGOProtos.Networking.Responses.PlatformClientActionsResponse.ProxySocialActionResponse) obj;
boolean result = true;
result = result && status_ == other.status_;
result = result && getAssignedHost()
.equals(other.getAssignedHost());
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) + STATUS_FIELD_NUMBER;
hash = (53 * hash) + status_;
hash = (37 * hash) + ASSIGNED_HOST_FIELD_NUMBER;
hash = (53 * hash) + getAssignedHost().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.Responses.PlatformClientActionsResponse.ProxySocialActionResponse parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.ProxySocialActionResponse parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.ProxySocialActionResponse parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.ProxySocialActionResponse 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.Responses.PlatformClientActionsResponse.ProxySocialActionResponse parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.ProxySocialActionResponse parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.ProxySocialActionResponse parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.ProxySocialActionResponse 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.Responses.PlatformClientActionsResponse.ProxySocialActionResponse parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.ProxySocialActionResponse 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.Responses.PlatformClientActionsResponse.ProxySocialActionResponse parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.ProxySocialActionResponse 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.Responses.PlatformClientActionsResponse.ProxySocialActionResponse 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.Responses.ProxySocialActionResponse}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:POGOProtos.Networking.Responses.ProxySocialActionResponse)
POGOProtos.Networking.Responses.PlatformClientActionsResponse.ProxySocialActionResponseOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.internal_static_POGOProtos_Networking_Responses_ProxySocialActionResponse_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.internal_static_POGOProtos_Networking_Responses_ProxySocialActionResponse_fieldAccessorTable
.ensureFieldAccessorsInitialized(
POGOProtos.Networking.Responses.PlatformClientActionsResponse.ProxySocialActionResponse.class, POGOProtos.Networking.Responses.PlatformClientActionsResponse.ProxySocialActionResponse.Builder.class);
}
// Construct using POGOProtos.Networking.Responses.PlatformClientActionsResponse.ProxySocialActionResponse.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();
status_ = 0;
assignedHost_ = "";
payload_ = com.google.protobuf.ByteString.EMPTY;
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.internal_static_POGOProtos_Networking_Responses_ProxySocialActionResponse_descriptor;
}
@java.lang.Override
public POGOProtos.Networking.Responses.PlatformClientActionsResponse.ProxySocialActionResponse getDefaultInstanceForType() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.ProxySocialActionResponse.getDefaultInstance();
}
@java.lang.Override
public POGOProtos.Networking.Responses.PlatformClientActionsResponse.ProxySocialActionResponse build() {
POGOProtos.Networking.Responses.PlatformClientActionsResponse.ProxySocialActionResponse result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public POGOProtos.Networking.Responses.PlatformClientActionsResponse.ProxySocialActionResponse buildPartial() {
POGOProtos.Networking.Responses.PlatformClientActionsResponse.ProxySocialActionResponse result = new POGOProtos.Networking.Responses.PlatformClientActionsResponse.ProxySocialActionResponse(this);
result.status_ = status_;
result.assignedHost_ = assignedHost_;
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.Responses.PlatformClientActionsResponse.ProxySocialActionResponse) {
return mergeFrom((POGOProtos.Networking.Responses.PlatformClientActionsResponse.ProxySocialActionResponse)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(POGOProtos.Networking.Responses.PlatformClientActionsResponse.ProxySocialActionResponse other) {
if (other == POGOProtos.Networking.Responses.PlatformClientActionsResponse.ProxySocialActionResponse.getDefaultInstance()) return this;
if (other.status_ != 0) {
setStatusValue(other.getStatusValue());
}
if (!other.getAssignedHost().isEmpty()) {
assignedHost_ = other.assignedHost_;
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.Responses.PlatformClientActionsResponse.ProxySocialActionResponse parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (POGOProtos.Networking.Responses.PlatformClientActionsResponse.ProxySocialActionResponse) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int status_ = 0;
/**
* .POGOProtos.Networking.Responses.ProxySocialActionResponse.Status status = 1;
*/
public int getStatusValue() {
return status_;
}
/**
* .POGOProtos.Networking.Responses.ProxySocialActionResponse.Status status = 1;
*/
public Builder setStatusValue(int value) {
status_ = value;
onChanged();
return this;
}
/**
* .POGOProtos.Networking.Responses.ProxySocialActionResponse.Status status = 1;
*/
public POGOProtos.Networking.Responses.PlatformClientActionsResponse.ProxySocialActionResponse.Status getStatus() {
@SuppressWarnings("deprecation")
POGOProtos.Networking.Responses.PlatformClientActionsResponse.ProxySocialActionResponse.Status result = POGOProtos.Networking.Responses.PlatformClientActionsResponse.ProxySocialActionResponse.Status.valueOf(status_);
return result == null ? POGOProtos.Networking.Responses.PlatformClientActionsResponse.ProxySocialActionResponse.Status.UNRECOGNIZED : result;
}
/**
* .POGOProtos.Networking.Responses.ProxySocialActionResponse.Status status = 1;
*/
public Builder setStatus(POGOProtos.Networking.Responses.PlatformClientActionsResponse.ProxySocialActionResponse.Status value) {
if (value == null) {
throw new NullPointerException();
}
status_ = value.getNumber();
onChanged();
return this;
}
/**
* .POGOProtos.Networking.Responses.ProxySocialActionResponse.Status status = 1;
*/
public Builder clearStatus() {
status_ = 0;
onChanged();
return this;
}
private java.lang.Object assignedHost_ = "";
/**
* string assigned_host = 2;
*/
public java.lang.String getAssignedHost() {
java.lang.Object ref = assignedHost_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
assignedHost_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* string assigned_host = 2;
*/
public com.google.protobuf.ByteString
getAssignedHostBytes() {
java.lang.Object ref = assignedHost_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
assignedHost_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* string assigned_host = 2;
*/
public Builder setAssignedHost(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
assignedHost_ = value;
onChanged();
return this;
}
/**
* string assigned_host = 2;
*/
public Builder clearAssignedHost() {
assignedHost_ = getDefaultInstance().getAssignedHost();
onChanged();
return this;
}
/**
* string assigned_host = 2;
*/
public Builder setAssignedHostBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
assignedHost_ = 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.Responses.ProxySocialActionResponse)
}
// @@protoc_insertion_point(class_scope:POGOProtos.Networking.Responses.ProxySocialActionResponse)
private static final POGOProtos.Networking.Responses.PlatformClientActionsResponse.ProxySocialActionResponse DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new POGOProtos.Networking.Responses.PlatformClientActionsResponse.ProxySocialActionResponse();
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.ProxySocialActionResponse getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public ProxySocialActionResponse parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new ProxySocialActionResponse(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.Responses.PlatformClientActionsResponse.ProxySocialActionResponse getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
public interface ProxySocialSideChannelActionResponseOrBuilder extends
// @@protoc_insertion_point(interface_extends:POGOProtos.Networking.Responses.ProxySocialSideChannelActionResponse)
com.google.protobuf.MessageOrBuilder {
/**
* .POGOProtos.Networking.Responses.ProxySocialSideChannelActionResponse.Status status = 1;
*/
int getStatusValue();
/**
* .POGOProtos.Networking.Responses.ProxySocialSideChannelActionResponse.Status status = 1;
*/
POGOProtos.Networking.Responses.PlatformClientActionsResponse.ProxySocialSideChannelActionResponse.Status getStatus();
/**
* string assigned_host = 2;
*/
java.lang.String getAssignedHost();
/**
* string assigned_host = 2;
*/
com.google.protobuf.ByteString
getAssignedHostBytes();
/**
* bytes payload = 3;
*/
com.google.protobuf.ByteString getPayload();
}
/**
* Protobuf type {@code POGOProtos.Networking.Responses.ProxySocialSideChannelActionResponse}
*/
public static final class ProxySocialSideChannelActionResponse extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:POGOProtos.Networking.Responses.ProxySocialSideChannelActionResponse)
ProxySocialSideChannelActionResponseOrBuilder {
private static final long serialVersionUID = 0L;
// Use ProxySocialSideChannelActionResponse.newBuilder() to construct.
private ProxySocialSideChannelActionResponse(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private ProxySocialSideChannelActionResponse() {
status_ = 0;
assignedHost_ = "";
payload_ = com.google.protobuf.ByteString.EMPTY;
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private ProxySocialSideChannelActionResponse(
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();
status_ = rawValue;
break;
}
case 18: {
java.lang.String s = input.readStringRequireUtf8();
assignedHost_ = 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.Responses.PlatformClientActionsResponse.internal_static_POGOProtos_Networking_Responses_ProxySocialSideChannelActionResponse_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.internal_static_POGOProtos_Networking_Responses_ProxySocialSideChannelActionResponse_fieldAccessorTable
.ensureFieldAccessorsInitialized(
POGOProtos.Networking.Responses.PlatformClientActionsResponse.ProxySocialSideChannelActionResponse.class, POGOProtos.Networking.Responses.PlatformClientActionsResponse.ProxySocialSideChannelActionResponse.Builder.class);
}
/**
* Protobuf enum {@code POGOProtos.Networking.Responses.ProxySocialSideChannelActionResponse.Status}
*/
public enum Status
implements com.google.protobuf.ProtocolMessageEnum {
/**
* UNSET = 0;
*/
UNSET(0),
/**
* COMPLETED = 1;
*/
COMPLETED(1),
/**
* COMPLETED_AND_REASSIGNED = 2;
*/
COMPLETED_AND_REASSIGNED(2),
/**
* ACTION_NOT_FOUND = 3;
*/
ACTION_NOT_FOUND(3),
/**
* ASSIGNMENT_ERROR = 4;
*/
ASSIGNMENT_ERROR(4),
/**
* PROXY_UNAUTHORIZED_ERROR = 5;
*/
PROXY_UNAUTHORIZED_ERROR(5),
/**
* INTERNAL_ERROR = 6;
*/
INTERNAL_ERROR(6),
/**
* BAD_REQUEST = 7;
*/
BAD_REQUEST(7),
/**
* ACCESS_DENIED = 8;
*/
ACCESS_DENIED(8),
/**
* TIMEOUT_ERROR = 9;
*/
TIMEOUT_ERROR(9),
/**
* RATE_LIMITED = 10;
*/
RATE_LIMITED(10),
UNRECOGNIZED(-1),
;
/**
* UNSET = 0;
*/
public static final int UNSET_VALUE = 0;
/**
* COMPLETED = 1;
*/
public static final int COMPLETED_VALUE = 1;
/**
* COMPLETED_AND_REASSIGNED = 2;
*/
public static final int COMPLETED_AND_REASSIGNED_VALUE = 2;
/**
* ACTION_NOT_FOUND = 3;
*/
public static final int ACTION_NOT_FOUND_VALUE = 3;
/**
* ASSIGNMENT_ERROR = 4;
*/
public static final int ASSIGNMENT_ERROR_VALUE = 4;
/**
* PROXY_UNAUTHORIZED_ERROR = 5;
*/
public static final int PROXY_UNAUTHORIZED_ERROR_VALUE = 5;
/**
* INTERNAL_ERROR = 6;
*/
public static final int INTERNAL_ERROR_VALUE = 6;
/**
* BAD_REQUEST = 7;
*/
public static final int BAD_REQUEST_VALUE = 7;
/**
* ACCESS_DENIED = 8;
*/
public static final int ACCESS_DENIED_VALUE = 8;
/**
* TIMEOUT_ERROR = 9;
*/
public static final int TIMEOUT_ERROR_VALUE = 9;
/**
* RATE_LIMITED = 10;
*/
public static final int RATE_LIMITED_VALUE = 10;
public final int getNumber() {
if (this == UNRECOGNIZED) {
throw new java.lang.IllegalArgumentException(
"Can't get the number of an unknown enum value.");
}
return value;
}
/**
* @deprecated Use {@link #forNumber(int)} instead.
*/
@java.lang.Deprecated
public static Status valueOf(int value) {
return forNumber(value);
}
public static Status forNumber(int value) {
switch (value) {
case 0: return UNSET;
case 1: return COMPLETED;
case 2: return COMPLETED_AND_REASSIGNED;
case 3: return ACTION_NOT_FOUND;
case 4: return ASSIGNMENT_ERROR;
case 5: return PROXY_UNAUTHORIZED_ERROR;
case 6: return INTERNAL_ERROR;
case 7: return BAD_REQUEST;
case 8: return ACCESS_DENIED;
case 9: return TIMEOUT_ERROR;
case 10: return RATE_LIMITED;
default: return null;
}
}
public static com.google.protobuf.Internal.EnumLiteMap
internalGetValueMap() {
return internalValueMap;
}
private static final com.google.protobuf.Internal.EnumLiteMap<
Status> internalValueMap =
new com.google.protobuf.Internal.EnumLiteMap() {
public Status findValueByNumber(int number) {
return Status.forNumber(number);
}
};
public final com.google.protobuf.Descriptors.EnumValueDescriptor
getValueDescriptor() {
return getDescriptor().getValues().get(ordinal());
}
public final com.google.protobuf.Descriptors.EnumDescriptor
getDescriptorForType() {
return getDescriptor();
}
public static final com.google.protobuf.Descriptors.EnumDescriptor
getDescriptor() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.ProxySocialSideChannelActionResponse.getDescriptor().getEnumTypes().get(0);
}
private static final Status[] VALUES = values();
public static Status valueOf(
com.google.protobuf.Descriptors.EnumValueDescriptor desc) {
if (desc.getType() != getDescriptor()) {
throw new java.lang.IllegalArgumentException(
"EnumValueDescriptor is not for this type.");
}
if (desc.getIndex() == -1) {
return UNRECOGNIZED;
}
return VALUES[desc.getIndex()];
}
private final int value;
private Status(int value) {
this.value = value;
}
// @@protoc_insertion_point(enum_scope:POGOProtos.Networking.Responses.ProxySocialSideChannelActionResponse.Status)
}
public static final int STATUS_FIELD_NUMBER = 1;
private int status_;
/**
* .POGOProtos.Networking.Responses.ProxySocialSideChannelActionResponse.Status status = 1;
*/
public int getStatusValue() {
return status_;
}
/**
* .POGOProtos.Networking.Responses.ProxySocialSideChannelActionResponse.Status status = 1;
*/
public POGOProtos.Networking.Responses.PlatformClientActionsResponse.ProxySocialSideChannelActionResponse.Status getStatus() {
@SuppressWarnings("deprecation")
POGOProtos.Networking.Responses.PlatformClientActionsResponse.ProxySocialSideChannelActionResponse.Status result = POGOProtos.Networking.Responses.PlatformClientActionsResponse.ProxySocialSideChannelActionResponse.Status.valueOf(status_);
return result == null ? POGOProtos.Networking.Responses.PlatformClientActionsResponse.ProxySocialSideChannelActionResponse.Status.UNRECOGNIZED : result;
}
public static final int ASSIGNED_HOST_FIELD_NUMBER = 2;
private volatile java.lang.Object assignedHost_;
/**
* string assigned_host = 2;
*/
public java.lang.String getAssignedHost() {
java.lang.Object ref = assignedHost_;
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();
assignedHost_ = s;
return s;
}
}
/**
* string assigned_host = 2;
*/
public com.google.protobuf.ByteString
getAssignedHostBytes() {
java.lang.Object ref = assignedHost_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
assignedHost_ = 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 (status_ != POGOProtos.Networking.Responses.PlatformClientActionsResponse.ProxySocialSideChannelActionResponse.Status.UNSET.getNumber()) {
output.writeEnum(1, status_);
}
if (!getAssignedHostBytes().isEmpty()) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 2, assignedHost_);
}
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 (status_ != POGOProtos.Networking.Responses.PlatformClientActionsResponse.ProxySocialSideChannelActionResponse.Status.UNSET.getNumber()) {
size += com.google.protobuf.CodedOutputStream
.computeEnumSize(1, status_);
}
if (!getAssignedHostBytes().isEmpty()) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, assignedHost_);
}
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.Responses.PlatformClientActionsResponse.ProxySocialSideChannelActionResponse)) {
return super.equals(obj);
}
POGOProtos.Networking.Responses.PlatformClientActionsResponse.ProxySocialSideChannelActionResponse other = (POGOProtos.Networking.Responses.PlatformClientActionsResponse.ProxySocialSideChannelActionResponse) obj;
boolean result = true;
result = result && status_ == other.status_;
result = result && getAssignedHost()
.equals(other.getAssignedHost());
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) + STATUS_FIELD_NUMBER;
hash = (53 * hash) + status_;
hash = (37 * hash) + ASSIGNED_HOST_FIELD_NUMBER;
hash = (53 * hash) + getAssignedHost().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.Responses.PlatformClientActionsResponse.ProxySocialSideChannelActionResponse parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.ProxySocialSideChannelActionResponse parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.ProxySocialSideChannelActionResponse parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.ProxySocialSideChannelActionResponse 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.Responses.PlatformClientActionsResponse.ProxySocialSideChannelActionResponse parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.ProxySocialSideChannelActionResponse parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.ProxySocialSideChannelActionResponse parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.ProxySocialSideChannelActionResponse 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.Responses.PlatformClientActionsResponse.ProxySocialSideChannelActionResponse parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.ProxySocialSideChannelActionResponse 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.Responses.PlatformClientActionsResponse.ProxySocialSideChannelActionResponse parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.ProxySocialSideChannelActionResponse 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.Responses.PlatformClientActionsResponse.ProxySocialSideChannelActionResponse 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.Responses.ProxySocialSideChannelActionResponse}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:POGOProtos.Networking.Responses.ProxySocialSideChannelActionResponse)
POGOProtos.Networking.Responses.PlatformClientActionsResponse.ProxySocialSideChannelActionResponseOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.internal_static_POGOProtos_Networking_Responses_ProxySocialSideChannelActionResponse_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.internal_static_POGOProtos_Networking_Responses_ProxySocialSideChannelActionResponse_fieldAccessorTable
.ensureFieldAccessorsInitialized(
POGOProtos.Networking.Responses.PlatformClientActionsResponse.ProxySocialSideChannelActionResponse.class, POGOProtos.Networking.Responses.PlatformClientActionsResponse.ProxySocialSideChannelActionResponse.Builder.class);
}
// Construct using POGOProtos.Networking.Responses.PlatformClientActionsResponse.ProxySocialSideChannelActionResponse.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();
status_ = 0;
assignedHost_ = "";
payload_ = com.google.protobuf.ByteString.EMPTY;
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.internal_static_POGOProtos_Networking_Responses_ProxySocialSideChannelActionResponse_descriptor;
}
@java.lang.Override
public POGOProtos.Networking.Responses.PlatformClientActionsResponse.ProxySocialSideChannelActionResponse getDefaultInstanceForType() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.ProxySocialSideChannelActionResponse.getDefaultInstance();
}
@java.lang.Override
public POGOProtos.Networking.Responses.PlatformClientActionsResponse.ProxySocialSideChannelActionResponse build() {
POGOProtos.Networking.Responses.PlatformClientActionsResponse.ProxySocialSideChannelActionResponse result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public POGOProtos.Networking.Responses.PlatformClientActionsResponse.ProxySocialSideChannelActionResponse buildPartial() {
POGOProtos.Networking.Responses.PlatformClientActionsResponse.ProxySocialSideChannelActionResponse result = new POGOProtos.Networking.Responses.PlatformClientActionsResponse.ProxySocialSideChannelActionResponse(this);
result.status_ = status_;
result.assignedHost_ = assignedHost_;
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.Responses.PlatformClientActionsResponse.ProxySocialSideChannelActionResponse) {
return mergeFrom((POGOProtos.Networking.Responses.PlatformClientActionsResponse.ProxySocialSideChannelActionResponse)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(POGOProtos.Networking.Responses.PlatformClientActionsResponse.ProxySocialSideChannelActionResponse other) {
if (other == POGOProtos.Networking.Responses.PlatformClientActionsResponse.ProxySocialSideChannelActionResponse.getDefaultInstance()) return this;
if (other.status_ != 0) {
setStatusValue(other.getStatusValue());
}
if (!other.getAssignedHost().isEmpty()) {
assignedHost_ = other.assignedHost_;
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.Responses.PlatformClientActionsResponse.ProxySocialSideChannelActionResponse parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (POGOProtos.Networking.Responses.PlatformClientActionsResponse.ProxySocialSideChannelActionResponse) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int status_ = 0;
/**
* .POGOProtos.Networking.Responses.ProxySocialSideChannelActionResponse.Status status = 1;
*/
public int getStatusValue() {
return status_;
}
/**
* .POGOProtos.Networking.Responses.ProxySocialSideChannelActionResponse.Status status = 1;
*/
public Builder setStatusValue(int value) {
status_ = value;
onChanged();
return this;
}
/**
* .POGOProtos.Networking.Responses.ProxySocialSideChannelActionResponse.Status status = 1;
*/
public POGOProtos.Networking.Responses.PlatformClientActionsResponse.ProxySocialSideChannelActionResponse.Status getStatus() {
@SuppressWarnings("deprecation")
POGOProtos.Networking.Responses.PlatformClientActionsResponse.ProxySocialSideChannelActionResponse.Status result = POGOProtos.Networking.Responses.PlatformClientActionsResponse.ProxySocialSideChannelActionResponse.Status.valueOf(status_);
return result == null ? POGOProtos.Networking.Responses.PlatformClientActionsResponse.ProxySocialSideChannelActionResponse.Status.UNRECOGNIZED : result;
}
/**
* .POGOProtos.Networking.Responses.ProxySocialSideChannelActionResponse.Status status = 1;
*/
public Builder setStatus(POGOProtos.Networking.Responses.PlatformClientActionsResponse.ProxySocialSideChannelActionResponse.Status value) {
if (value == null) {
throw new NullPointerException();
}
status_ = value.getNumber();
onChanged();
return this;
}
/**
* .POGOProtos.Networking.Responses.ProxySocialSideChannelActionResponse.Status status = 1;
*/
public Builder clearStatus() {
status_ = 0;
onChanged();
return this;
}
private java.lang.Object assignedHost_ = "";
/**
* string assigned_host = 2;
*/
public java.lang.String getAssignedHost() {
java.lang.Object ref = assignedHost_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
assignedHost_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* string assigned_host = 2;
*/
public com.google.protobuf.ByteString
getAssignedHostBytes() {
java.lang.Object ref = assignedHost_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
assignedHost_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* string assigned_host = 2;
*/
public Builder setAssignedHost(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
assignedHost_ = value;
onChanged();
return this;
}
/**
* string assigned_host = 2;
*/
public Builder clearAssignedHost() {
assignedHost_ = getDefaultInstance().getAssignedHost();
onChanged();
return this;
}
/**
* string assigned_host = 2;
*/
public Builder setAssignedHostBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
assignedHost_ = 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.Responses.ProxySocialSideChannelActionResponse)
}
// @@protoc_insertion_point(class_scope:POGOProtos.Networking.Responses.ProxySocialSideChannelActionResponse)
private static final POGOProtos.Networking.Responses.PlatformClientActionsResponse.ProxySocialSideChannelActionResponse DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new POGOProtos.Networking.Responses.PlatformClientActionsResponse.ProxySocialSideChannelActionResponse();
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.ProxySocialSideChannelActionResponse getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public ProxySocialSideChannelActionResponse parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new ProxySocialSideChannelActionResponse(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.Responses.PlatformClientActionsResponse.ProxySocialSideChannelActionResponse getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
public interface GetAvailableSubmissionsResponseOrBuilder extends
// @@protoc_insertion_point(interface_extends:POGOProtos.Networking.Responses.GetAvailableSubmissionsResponse)
com.google.protobuf.MessageOrBuilder {
/**
* int32 submissions_left = 1;
*/
int getSubmissionsLeft();
/**
* int32 min_player_level = 2;
*/
int getMinPlayerLevel();
/**
* bool has_valid_email = 3;
*/
boolean getHasValidEmail();
/**
* bool is_feature_enabled = 4;
*/
boolean getIsFeatureEnabled();
/**
* int64 time_window_for_submissions_limit_ms = 5;
*/
long getTimeWindowForSubmissionsLimitMs();
/**
* int32 max_poi_distance_in_meters = 6;
*/
int getMaxPoiDistanceInMeters();
}
/**
* Protobuf type {@code POGOProtos.Networking.Responses.GetAvailableSubmissionsResponse}
*/
public static final class GetAvailableSubmissionsResponse extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:POGOProtos.Networking.Responses.GetAvailableSubmissionsResponse)
GetAvailableSubmissionsResponseOrBuilder {
private static final long serialVersionUID = 0L;
// Use GetAvailableSubmissionsResponse.newBuilder() to construct.
private GetAvailableSubmissionsResponse(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private GetAvailableSubmissionsResponse() {
submissionsLeft_ = 0;
minPlayerLevel_ = 0;
hasValidEmail_ = false;
isFeatureEnabled_ = false;
timeWindowForSubmissionsLimitMs_ = 0L;
maxPoiDistanceInMeters_ = 0;
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private GetAvailableSubmissionsResponse(
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: {
submissionsLeft_ = input.readInt32();
break;
}
case 16: {
minPlayerLevel_ = input.readInt32();
break;
}
case 24: {
hasValidEmail_ = input.readBool();
break;
}
case 32: {
isFeatureEnabled_ = input.readBool();
break;
}
case 40: {
timeWindowForSubmissionsLimitMs_ = input.readInt64();
break;
}
case 48: {
maxPoiDistanceInMeters_ = 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.Responses.PlatformClientActionsResponse.internal_static_POGOProtos_Networking_Responses_GetAvailableSubmissionsResponse_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.internal_static_POGOProtos_Networking_Responses_GetAvailableSubmissionsResponse_fieldAccessorTable
.ensureFieldAccessorsInitialized(
POGOProtos.Networking.Responses.PlatformClientActionsResponse.GetAvailableSubmissionsResponse.class, POGOProtos.Networking.Responses.PlatformClientActionsResponse.GetAvailableSubmissionsResponse.Builder.class);
}
public static final int SUBMISSIONS_LEFT_FIELD_NUMBER = 1;
private int submissionsLeft_;
/**
* int32 submissions_left = 1;
*/
public int getSubmissionsLeft() {
return submissionsLeft_;
}
public static final int MIN_PLAYER_LEVEL_FIELD_NUMBER = 2;
private int minPlayerLevel_;
/**
* int32 min_player_level = 2;
*/
public int getMinPlayerLevel() {
return minPlayerLevel_;
}
public static final int HAS_VALID_EMAIL_FIELD_NUMBER = 3;
private boolean hasValidEmail_;
/**
* bool has_valid_email = 3;
*/
public boolean getHasValidEmail() {
return hasValidEmail_;
}
public static final int IS_FEATURE_ENABLED_FIELD_NUMBER = 4;
private boolean isFeatureEnabled_;
/**
* bool is_feature_enabled = 4;
*/
public boolean getIsFeatureEnabled() {
return isFeatureEnabled_;
}
public static final int TIME_WINDOW_FOR_SUBMISSIONS_LIMIT_MS_FIELD_NUMBER = 5;
private long timeWindowForSubmissionsLimitMs_;
/**
* int64 time_window_for_submissions_limit_ms = 5;
*/
public long getTimeWindowForSubmissionsLimitMs() {
return timeWindowForSubmissionsLimitMs_;
}
public static final int MAX_POI_DISTANCE_IN_METERS_FIELD_NUMBER = 6;
private int maxPoiDistanceInMeters_;
/**
* int32 max_poi_distance_in_meters = 6;
*/
public int getMaxPoiDistanceInMeters() {
return maxPoiDistanceInMeters_;
}
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 (submissionsLeft_ != 0) {
output.writeInt32(1, submissionsLeft_);
}
if (minPlayerLevel_ != 0) {
output.writeInt32(2, minPlayerLevel_);
}
if (hasValidEmail_ != false) {
output.writeBool(3, hasValidEmail_);
}
if (isFeatureEnabled_ != false) {
output.writeBool(4, isFeatureEnabled_);
}
if (timeWindowForSubmissionsLimitMs_ != 0L) {
output.writeInt64(5, timeWindowForSubmissionsLimitMs_);
}
if (maxPoiDistanceInMeters_ != 0) {
output.writeInt32(6, maxPoiDistanceInMeters_);
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (submissionsLeft_ != 0) {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(1, submissionsLeft_);
}
if (minPlayerLevel_ != 0) {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(2, minPlayerLevel_);
}
if (hasValidEmail_ != false) {
size += com.google.protobuf.CodedOutputStream
.computeBoolSize(3, hasValidEmail_);
}
if (isFeatureEnabled_ != false) {
size += com.google.protobuf.CodedOutputStream
.computeBoolSize(4, isFeatureEnabled_);
}
if (timeWindowForSubmissionsLimitMs_ != 0L) {
size += com.google.protobuf.CodedOutputStream
.computeInt64Size(5, timeWindowForSubmissionsLimitMs_);
}
if (maxPoiDistanceInMeters_ != 0) {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(6, maxPoiDistanceInMeters_);
}
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.Responses.PlatformClientActionsResponse.GetAvailableSubmissionsResponse)) {
return super.equals(obj);
}
POGOProtos.Networking.Responses.PlatformClientActionsResponse.GetAvailableSubmissionsResponse other = (POGOProtos.Networking.Responses.PlatformClientActionsResponse.GetAvailableSubmissionsResponse) obj;
boolean result = true;
result = result && (getSubmissionsLeft()
== other.getSubmissionsLeft());
result = result && (getMinPlayerLevel()
== other.getMinPlayerLevel());
result = result && (getHasValidEmail()
== other.getHasValidEmail());
result = result && (getIsFeatureEnabled()
== other.getIsFeatureEnabled());
result = result && (getTimeWindowForSubmissionsLimitMs()
== other.getTimeWindowForSubmissionsLimitMs());
result = result && (getMaxPoiDistanceInMeters()
== other.getMaxPoiDistanceInMeters());
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) + SUBMISSIONS_LEFT_FIELD_NUMBER;
hash = (53 * hash) + getSubmissionsLeft();
hash = (37 * hash) + MIN_PLAYER_LEVEL_FIELD_NUMBER;
hash = (53 * hash) + getMinPlayerLevel();
hash = (37 * hash) + HAS_VALID_EMAIL_FIELD_NUMBER;
hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(
getHasValidEmail());
hash = (37 * hash) + IS_FEATURE_ENABLED_FIELD_NUMBER;
hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(
getIsFeatureEnabled());
hash = (37 * hash) + TIME_WINDOW_FOR_SUBMISSIONS_LIMIT_MS_FIELD_NUMBER;
hash = (53 * hash) + com.google.protobuf.Internal.hashLong(
getTimeWindowForSubmissionsLimitMs());
hash = (37 * hash) + MAX_POI_DISTANCE_IN_METERS_FIELD_NUMBER;
hash = (53 * hash) + getMaxPoiDistanceInMeters();
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.GetAvailableSubmissionsResponse parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.GetAvailableSubmissionsResponse parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.GetAvailableSubmissionsResponse parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.GetAvailableSubmissionsResponse 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.Responses.PlatformClientActionsResponse.GetAvailableSubmissionsResponse parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.GetAvailableSubmissionsResponse parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.GetAvailableSubmissionsResponse parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.GetAvailableSubmissionsResponse 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.Responses.PlatformClientActionsResponse.GetAvailableSubmissionsResponse parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.GetAvailableSubmissionsResponse 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.Responses.PlatformClientActionsResponse.GetAvailableSubmissionsResponse parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.GetAvailableSubmissionsResponse 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.Responses.PlatformClientActionsResponse.GetAvailableSubmissionsResponse 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.Responses.GetAvailableSubmissionsResponse}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:POGOProtos.Networking.Responses.GetAvailableSubmissionsResponse)
POGOProtos.Networking.Responses.PlatformClientActionsResponse.GetAvailableSubmissionsResponseOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.internal_static_POGOProtos_Networking_Responses_GetAvailableSubmissionsResponse_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.internal_static_POGOProtos_Networking_Responses_GetAvailableSubmissionsResponse_fieldAccessorTable
.ensureFieldAccessorsInitialized(
POGOProtos.Networking.Responses.PlatformClientActionsResponse.GetAvailableSubmissionsResponse.class, POGOProtos.Networking.Responses.PlatformClientActionsResponse.GetAvailableSubmissionsResponse.Builder.class);
}
// Construct using POGOProtos.Networking.Responses.PlatformClientActionsResponse.GetAvailableSubmissionsResponse.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();
submissionsLeft_ = 0;
minPlayerLevel_ = 0;
hasValidEmail_ = false;
isFeatureEnabled_ = false;
timeWindowForSubmissionsLimitMs_ = 0L;
maxPoiDistanceInMeters_ = 0;
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.internal_static_POGOProtos_Networking_Responses_GetAvailableSubmissionsResponse_descriptor;
}
@java.lang.Override
public POGOProtos.Networking.Responses.PlatformClientActionsResponse.GetAvailableSubmissionsResponse getDefaultInstanceForType() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.GetAvailableSubmissionsResponse.getDefaultInstance();
}
@java.lang.Override
public POGOProtos.Networking.Responses.PlatformClientActionsResponse.GetAvailableSubmissionsResponse build() {
POGOProtos.Networking.Responses.PlatformClientActionsResponse.GetAvailableSubmissionsResponse result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public POGOProtos.Networking.Responses.PlatformClientActionsResponse.GetAvailableSubmissionsResponse buildPartial() {
POGOProtos.Networking.Responses.PlatformClientActionsResponse.GetAvailableSubmissionsResponse result = new POGOProtos.Networking.Responses.PlatformClientActionsResponse.GetAvailableSubmissionsResponse(this);
result.submissionsLeft_ = submissionsLeft_;
result.minPlayerLevel_ = minPlayerLevel_;
result.hasValidEmail_ = hasValidEmail_;
result.isFeatureEnabled_ = isFeatureEnabled_;
result.timeWindowForSubmissionsLimitMs_ = timeWindowForSubmissionsLimitMs_;
result.maxPoiDistanceInMeters_ = maxPoiDistanceInMeters_;
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.Responses.PlatformClientActionsResponse.GetAvailableSubmissionsResponse) {
return mergeFrom((POGOProtos.Networking.Responses.PlatformClientActionsResponse.GetAvailableSubmissionsResponse)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(POGOProtos.Networking.Responses.PlatformClientActionsResponse.GetAvailableSubmissionsResponse other) {
if (other == POGOProtos.Networking.Responses.PlatformClientActionsResponse.GetAvailableSubmissionsResponse.getDefaultInstance()) return this;
if (other.getSubmissionsLeft() != 0) {
setSubmissionsLeft(other.getSubmissionsLeft());
}
if (other.getMinPlayerLevel() != 0) {
setMinPlayerLevel(other.getMinPlayerLevel());
}
if (other.getHasValidEmail() != false) {
setHasValidEmail(other.getHasValidEmail());
}
if (other.getIsFeatureEnabled() != false) {
setIsFeatureEnabled(other.getIsFeatureEnabled());
}
if (other.getTimeWindowForSubmissionsLimitMs() != 0L) {
setTimeWindowForSubmissionsLimitMs(other.getTimeWindowForSubmissionsLimitMs());
}
if (other.getMaxPoiDistanceInMeters() != 0) {
setMaxPoiDistanceInMeters(other.getMaxPoiDistanceInMeters());
}
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.Responses.PlatformClientActionsResponse.GetAvailableSubmissionsResponse parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (POGOProtos.Networking.Responses.PlatformClientActionsResponse.GetAvailableSubmissionsResponse) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int submissionsLeft_ ;
/**
* int32 submissions_left = 1;
*/
public int getSubmissionsLeft() {
return submissionsLeft_;
}
/**
* int32 submissions_left = 1;
*/
public Builder setSubmissionsLeft(int value) {
submissionsLeft_ = value;
onChanged();
return this;
}
/**
* int32 submissions_left = 1;
*/
public Builder clearSubmissionsLeft() {
submissionsLeft_ = 0;
onChanged();
return this;
}
private int minPlayerLevel_ ;
/**
* int32 min_player_level = 2;
*/
public int getMinPlayerLevel() {
return minPlayerLevel_;
}
/**
* int32 min_player_level = 2;
*/
public Builder setMinPlayerLevel(int value) {
minPlayerLevel_ = value;
onChanged();
return this;
}
/**
* int32 min_player_level = 2;
*/
public Builder clearMinPlayerLevel() {
minPlayerLevel_ = 0;
onChanged();
return this;
}
private boolean hasValidEmail_ ;
/**
* bool has_valid_email = 3;
*/
public boolean getHasValidEmail() {
return hasValidEmail_;
}
/**
* bool has_valid_email = 3;
*/
public Builder setHasValidEmail(boolean value) {
hasValidEmail_ = value;
onChanged();
return this;
}
/**
* bool has_valid_email = 3;
*/
public Builder clearHasValidEmail() {
hasValidEmail_ = false;
onChanged();
return this;
}
private boolean isFeatureEnabled_ ;
/**
* bool is_feature_enabled = 4;
*/
public boolean getIsFeatureEnabled() {
return isFeatureEnabled_;
}
/**
* bool is_feature_enabled = 4;
*/
public Builder setIsFeatureEnabled(boolean value) {
isFeatureEnabled_ = value;
onChanged();
return this;
}
/**
* bool is_feature_enabled = 4;
*/
public Builder clearIsFeatureEnabled() {
isFeatureEnabled_ = false;
onChanged();
return this;
}
private long timeWindowForSubmissionsLimitMs_ ;
/**
* int64 time_window_for_submissions_limit_ms = 5;
*/
public long getTimeWindowForSubmissionsLimitMs() {
return timeWindowForSubmissionsLimitMs_;
}
/**
* int64 time_window_for_submissions_limit_ms = 5;
*/
public Builder setTimeWindowForSubmissionsLimitMs(long value) {
timeWindowForSubmissionsLimitMs_ = value;
onChanged();
return this;
}
/**
* int64 time_window_for_submissions_limit_ms = 5;
*/
public Builder clearTimeWindowForSubmissionsLimitMs() {
timeWindowForSubmissionsLimitMs_ = 0L;
onChanged();
return this;
}
private int maxPoiDistanceInMeters_ ;
/**
* int32 max_poi_distance_in_meters = 6;
*/
public int getMaxPoiDistanceInMeters() {
return maxPoiDistanceInMeters_;
}
/**
* int32 max_poi_distance_in_meters = 6;
*/
public Builder setMaxPoiDistanceInMeters(int value) {
maxPoiDistanceInMeters_ = value;
onChanged();
return this;
}
/**
* int32 max_poi_distance_in_meters = 6;
*/
public Builder clearMaxPoiDistanceInMeters() {
maxPoiDistanceInMeters_ = 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.Responses.GetAvailableSubmissionsResponse)
}
// @@protoc_insertion_point(class_scope:POGOProtos.Networking.Responses.GetAvailableSubmissionsResponse)
private static final POGOProtos.Networking.Responses.PlatformClientActionsResponse.GetAvailableSubmissionsResponse DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new POGOProtos.Networking.Responses.PlatformClientActionsResponse.GetAvailableSubmissionsResponse();
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.GetAvailableSubmissionsResponse getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public GetAvailableSubmissionsResponse parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new GetAvailableSubmissionsResponse(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.Responses.PlatformClientActionsResponse.GetAvailableSubmissionsResponse getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
public interface PushNotificationRegistryResponseOrBuilder extends
// @@protoc_insertion_point(interface_extends:POGOProtos.Networking.Responses.PushNotificationRegistryResponse)
com.google.protobuf.MessageOrBuilder {
/**
* .POGOProtos.Networking.Responses.PushNotificationRegistryResponse.Result result = 1;
*/
int getResultValue();
/**
* .POGOProtos.Networking.Responses.PushNotificationRegistryResponse.Result result = 1;
*/
POGOProtos.Networking.Responses.PlatformClientActionsResponse.PushNotificationRegistryResponse.Result getResult();
}
/**
* Protobuf type {@code POGOProtos.Networking.Responses.PushNotificationRegistryResponse}
*/
public static final class PushNotificationRegistryResponse extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:POGOProtos.Networking.Responses.PushNotificationRegistryResponse)
PushNotificationRegistryResponseOrBuilder {
private static final long serialVersionUID = 0L;
// Use PushNotificationRegistryResponse.newBuilder() to construct.
private PushNotificationRegistryResponse(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private PushNotificationRegistryResponse() {
result_ = 0;
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private PushNotificationRegistryResponse(
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();
result_ = 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.Responses.PlatformClientActionsResponse.internal_static_POGOProtos_Networking_Responses_PushNotificationRegistryResponse_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.internal_static_POGOProtos_Networking_Responses_PushNotificationRegistryResponse_fieldAccessorTable
.ensureFieldAccessorsInitialized(
POGOProtos.Networking.Responses.PlatformClientActionsResponse.PushNotificationRegistryResponse.class, POGOProtos.Networking.Responses.PlatformClientActionsResponse.PushNotificationRegistryResponse.Builder.class);
}
/**
* Protobuf enum {@code POGOProtos.Networking.Responses.PushNotificationRegistryResponse.Result}
*/
public enum Result
implements com.google.protobuf.ProtocolMessageEnum {
/**
* UNSET = 0;
*/
UNSET(0),
/**
* SUCCESS = 1;
*/
SUCCESS(1),
/**
* NO_CHANGE = 2;
*/
NO_CHANGE(2),
UNRECOGNIZED(-1),
;
/**
* UNSET = 0;
*/
public static final int UNSET_VALUE = 0;
/**
* SUCCESS = 1;
*/
public static final int SUCCESS_VALUE = 1;
/**
* NO_CHANGE = 2;
*/
public static final int NO_CHANGE_VALUE = 2;
public final int getNumber() {
if (this == UNRECOGNIZED) {
throw new java.lang.IllegalArgumentException(
"Can't get the number of an unknown enum value.");
}
return value;
}
/**
* @deprecated Use {@link #forNumber(int)} instead.
*/
@java.lang.Deprecated
public static Result valueOf(int value) {
return forNumber(value);
}
public static Result forNumber(int value) {
switch (value) {
case 0: return UNSET;
case 1: return SUCCESS;
case 2: return NO_CHANGE;
default: return null;
}
}
public static com.google.protobuf.Internal.EnumLiteMap
internalGetValueMap() {
return internalValueMap;
}
private static final com.google.protobuf.Internal.EnumLiteMap<
Result> internalValueMap =
new com.google.protobuf.Internal.EnumLiteMap() {
public Result findValueByNumber(int number) {
return Result.forNumber(number);
}
};
public final com.google.protobuf.Descriptors.EnumValueDescriptor
getValueDescriptor() {
return getDescriptor().getValues().get(ordinal());
}
public final com.google.protobuf.Descriptors.EnumDescriptor
getDescriptorForType() {
return getDescriptor();
}
public static final com.google.protobuf.Descriptors.EnumDescriptor
getDescriptor() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.PushNotificationRegistryResponse.getDescriptor().getEnumTypes().get(0);
}
private static final Result[] VALUES = values();
public static Result valueOf(
com.google.protobuf.Descriptors.EnumValueDescriptor desc) {
if (desc.getType() != getDescriptor()) {
throw new java.lang.IllegalArgumentException(
"EnumValueDescriptor is not for this type.");
}
if (desc.getIndex() == -1) {
return UNRECOGNIZED;
}
return VALUES[desc.getIndex()];
}
private final int value;
private Result(int value) {
this.value = value;
}
// @@protoc_insertion_point(enum_scope:POGOProtos.Networking.Responses.PushNotificationRegistryResponse.Result)
}
public static final int RESULT_FIELD_NUMBER = 1;
private int result_;
/**
* .POGOProtos.Networking.Responses.PushNotificationRegistryResponse.Result result = 1;
*/
public int getResultValue() {
return result_;
}
/**
* .POGOProtos.Networking.Responses.PushNotificationRegistryResponse.Result result = 1;
*/
public POGOProtos.Networking.Responses.PlatformClientActionsResponse.PushNotificationRegistryResponse.Result getResult() {
@SuppressWarnings("deprecation")
POGOProtos.Networking.Responses.PlatformClientActionsResponse.PushNotificationRegistryResponse.Result result = POGOProtos.Networking.Responses.PlatformClientActionsResponse.PushNotificationRegistryResponse.Result.valueOf(result_);
return result == null ? POGOProtos.Networking.Responses.PlatformClientActionsResponse.PushNotificationRegistryResponse.Result.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 (result_ != POGOProtos.Networking.Responses.PlatformClientActionsResponse.PushNotificationRegistryResponse.Result.UNSET.getNumber()) {
output.writeEnum(1, result_);
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (result_ != POGOProtos.Networking.Responses.PlatformClientActionsResponse.PushNotificationRegistryResponse.Result.UNSET.getNumber()) {
size += com.google.protobuf.CodedOutputStream
.computeEnumSize(1, result_);
}
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.Responses.PlatformClientActionsResponse.PushNotificationRegistryResponse)) {
return super.equals(obj);
}
POGOProtos.Networking.Responses.PlatformClientActionsResponse.PushNotificationRegistryResponse other = (POGOProtos.Networking.Responses.PlatformClientActionsResponse.PushNotificationRegistryResponse) obj;
boolean result = true;
result = result && result_ == other.result_;
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) + RESULT_FIELD_NUMBER;
hash = (53 * hash) + result_;
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.PushNotificationRegistryResponse parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.PushNotificationRegistryResponse parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.PushNotificationRegistryResponse parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.PushNotificationRegistryResponse 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.Responses.PlatformClientActionsResponse.PushNotificationRegistryResponse parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.PushNotificationRegistryResponse parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.PushNotificationRegistryResponse parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.PushNotificationRegistryResponse 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.Responses.PlatformClientActionsResponse.PushNotificationRegistryResponse parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.PushNotificationRegistryResponse 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.Responses.PlatformClientActionsResponse.PushNotificationRegistryResponse parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.PushNotificationRegistryResponse 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.Responses.PlatformClientActionsResponse.PushNotificationRegistryResponse 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.Responses.PushNotificationRegistryResponse}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:POGOProtos.Networking.Responses.PushNotificationRegistryResponse)
POGOProtos.Networking.Responses.PlatformClientActionsResponse.PushNotificationRegistryResponseOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.internal_static_POGOProtos_Networking_Responses_PushNotificationRegistryResponse_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.internal_static_POGOProtos_Networking_Responses_PushNotificationRegistryResponse_fieldAccessorTable
.ensureFieldAccessorsInitialized(
POGOProtos.Networking.Responses.PlatformClientActionsResponse.PushNotificationRegistryResponse.class, POGOProtos.Networking.Responses.PlatformClientActionsResponse.PushNotificationRegistryResponse.Builder.class);
}
// Construct using POGOProtos.Networking.Responses.PlatformClientActionsResponse.PushNotificationRegistryResponse.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();
result_ = 0;
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.internal_static_POGOProtos_Networking_Responses_PushNotificationRegistryResponse_descriptor;
}
@java.lang.Override
public POGOProtos.Networking.Responses.PlatformClientActionsResponse.PushNotificationRegistryResponse getDefaultInstanceForType() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.PushNotificationRegistryResponse.getDefaultInstance();
}
@java.lang.Override
public POGOProtos.Networking.Responses.PlatformClientActionsResponse.PushNotificationRegistryResponse build() {
POGOProtos.Networking.Responses.PlatformClientActionsResponse.PushNotificationRegistryResponse result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public POGOProtos.Networking.Responses.PlatformClientActionsResponse.PushNotificationRegistryResponse buildPartial() {
POGOProtos.Networking.Responses.PlatformClientActionsResponse.PushNotificationRegistryResponse result = new POGOProtos.Networking.Responses.PlatformClientActionsResponse.PushNotificationRegistryResponse(this);
result.result_ = result_;
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.Responses.PlatformClientActionsResponse.PushNotificationRegistryResponse) {
return mergeFrom((POGOProtos.Networking.Responses.PlatformClientActionsResponse.PushNotificationRegistryResponse)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(POGOProtos.Networking.Responses.PlatformClientActionsResponse.PushNotificationRegistryResponse other) {
if (other == POGOProtos.Networking.Responses.PlatformClientActionsResponse.PushNotificationRegistryResponse.getDefaultInstance()) return this;
if (other.result_ != 0) {
setResultValue(other.getResultValue());
}
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.Responses.PlatformClientActionsResponse.PushNotificationRegistryResponse parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (POGOProtos.Networking.Responses.PlatformClientActionsResponse.PushNotificationRegistryResponse) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int result_ = 0;
/**
* .POGOProtos.Networking.Responses.PushNotificationRegistryResponse.Result result = 1;
*/
public int getResultValue() {
return result_;
}
/**
* .POGOProtos.Networking.Responses.PushNotificationRegistryResponse.Result result = 1;
*/
public Builder setResultValue(int value) {
result_ = value;
onChanged();
return this;
}
/**
* .POGOProtos.Networking.Responses.PushNotificationRegistryResponse.Result result = 1;
*/
public POGOProtos.Networking.Responses.PlatformClientActionsResponse.PushNotificationRegistryResponse.Result getResult() {
@SuppressWarnings("deprecation")
POGOProtos.Networking.Responses.PlatformClientActionsResponse.PushNotificationRegistryResponse.Result result = POGOProtos.Networking.Responses.PlatformClientActionsResponse.PushNotificationRegistryResponse.Result.valueOf(result_);
return result == null ? POGOProtos.Networking.Responses.PlatformClientActionsResponse.PushNotificationRegistryResponse.Result.UNRECOGNIZED : result;
}
/**
* .POGOProtos.Networking.Responses.PushNotificationRegistryResponse.Result result = 1;
*/
public Builder setResult(POGOProtos.Networking.Responses.PlatformClientActionsResponse.PushNotificationRegistryResponse.Result value) {
if (value == null) {
throw new NullPointerException();
}
result_ = value.getNumber();
onChanged();
return this;
}
/**
* .POGOProtos.Networking.Responses.PushNotificationRegistryResponse.Result result = 1;
*/
public Builder clearResult() {
result_ = 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.Responses.PushNotificationRegistryResponse)
}
// @@protoc_insertion_point(class_scope:POGOProtos.Networking.Responses.PushNotificationRegistryResponse)
private static final POGOProtos.Networking.Responses.PlatformClientActionsResponse.PushNotificationRegistryResponse DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new POGOProtos.Networking.Responses.PlatformClientActionsResponse.PushNotificationRegistryResponse();
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.PushNotificationRegistryResponse getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public PushNotificationRegistryResponse parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new PushNotificationRegistryResponse(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.Responses.PlatformClientActionsResponse.PushNotificationRegistryResponse getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
public interface AddLoginActionResponseOrBuilder extends
// @@protoc_insertion_point(interface_extends:POGOProtos.Networking.Responses.AddLoginActionResponse)
com.google.protobuf.MessageOrBuilder {
/**
* bool success = 1;
*/
boolean getSuccess();
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
java.util.List
getLoginDetailList();
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail getLoginDetail(int index);
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
int getLoginDetailCount();
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
java.util.List extends POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetailOrBuilder>
getLoginDetailOrBuilderList();
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetailOrBuilder getLoginDetailOrBuilder(
int index);
/**
* .POGOProtos.Networking.Responses.AddLoginActionResponse.Status status = 3;
*/
int getStatusValue();
/**
* .POGOProtos.Networking.Responses.AddLoginActionResponse.Status status = 3;
*/
POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddLoginActionResponse.Status getStatus();
}
/**
* Protobuf type {@code POGOProtos.Networking.Responses.AddLoginActionResponse}
*/
public static final class AddLoginActionResponse extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:POGOProtos.Networking.Responses.AddLoginActionResponse)
AddLoginActionResponseOrBuilder {
private static final long serialVersionUID = 0L;
// Use AddLoginActionResponse.newBuilder() to construct.
private AddLoginActionResponse(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private AddLoginActionResponse() {
success_ = false;
loginDetail_ = java.util.Collections.emptyList();
status_ = 0;
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private AddLoginActionResponse(
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: {
success_ = input.readBool();
break;
}
case 18: {
if (!((mutable_bitField0_ & 0x00000002) == 0x00000002)) {
loginDetail_ = new java.util.ArrayList();
mutable_bitField0_ |= 0x00000002;
}
loginDetail_.add(
input.readMessage(POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail.parser(), extensionRegistry));
break;
}
case 24: {
int rawValue = input.readEnum();
status_ = 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_ & 0x00000002) == 0x00000002)) {
loginDetail_ = java.util.Collections.unmodifiableList(loginDetail_);
}
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.internal_static_POGOProtos_Networking_Responses_AddLoginActionResponse_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.internal_static_POGOProtos_Networking_Responses_AddLoginActionResponse_fieldAccessorTable
.ensureFieldAccessorsInitialized(
POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddLoginActionResponse.class, POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddLoginActionResponse.Builder.class);
}
/**
* Protobuf enum {@code POGOProtos.Networking.Responses.AddLoginActionResponse.Status}
*/
public enum Status
implements com.google.protobuf.ProtocolMessageEnum {
/**
* UNSET = 0;
*/
UNSET(0),
/**
* AUTH_FAILURE = 1;
*/
AUTH_FAILURE(1),
/**
* LOGIN_TAKEN = 2;
*/
LOGIN_TAKEN(2),
UNRECOGNIZED(-1),
;
/**
* UNSET = 0;
*/
public static final int UNSET_VALUE = 0;
/**
* AUTH_FAILURE = 1;
*/
public static final int AUTH_FAILURE_VALUE = 1;
/**
* LOGIN_TAKEN = 2;
*/
public static final int LOGIN_TAKEN_VALUE = 2;
public final int getNumber() {
if (this == UNRECOGNIZED) {
throw new java.lang.IllegalArgumentException(
"Can't get the number of an unknown enum value.");
}
return value;
}
/**
* @deprecated Use {@link #forNumber(int)} instead.
*/
@java.lang.Deprecated
public static Status valueOf(int value) {
return forNumber(value);
}
public static Status forNumber(int value) {
switch (value) {
case 0: return UNSET;
case 1: return AUTH_FAILURE;
case 2: return LOGIN_TAKEN;
default: return null;
}
}
public static com.google.protobuf.Internal.EnumLiteMap
internalGetValueMap() {
return internalValueMap;
}
private static final com.google.protobuf.Internal.EnumLiteMap<
Status> internalValueMap =
new com.google.protobuf.Internal.EnumLiteMap() {
public Status findValueByNumber(int number) {
return Status.forNumber(number);
}
};
public final com.google.protobuf.Descriptors.EnumValueDescriptor
getValueDescriptor() {
return getDescriptor().getValues().get(ordinal());
}
public final com.google.protobuf.Descriptors.EnumDescriptor
getDescriptorForType() {
return getDescriptor();
}
public static final com.google.protobuf.Descriptors.EnumDescriptor
getDescriptor() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddLoginActionResponse.getDescriptor().getEnumTypes().get(0);
}
private static final Status[] VALUES = values();
public static Status valueOf(
com.google.protobuf.Descriptors.EnumValueDescriptor desc) {
if (desc.getType() != getDescriptor()) {
throw new java.lang.IllegalArgumentException(
"EnumValueDescriptor is not for this type.");
}
if (desc.getIndex() == -1) {
return UNRECOGNIZED;
}
return VALUES[desc.getIndex()];
}
private final int value;
private Status(int value) {
this.value = value;
}
// @@protoc_insertion_point(enum_scope:POGOProtos.Networking.Responses.AddLoginActionResponse.Status)
}
private int bitField0_;
public static final int SUCCESS_FIELD_NUMBER = 1;
private boolean success_;
/**
* bool success = 1;
*/
public boolean getSuccess() {
return success_;
}
public static final int LOGIN_DETAIL_FIELD_NUMBER = 2;
private java.util.List loginDetail_;
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public java.util.List getLoginDetailList() {
return loginDetail_;
}
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public java.util.List extends POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetailOrBuilder>
getLoginDetailOrBuilderList() {
return loginDetail_;
}
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public int getLoginDetailCount() {
return loginDetail_.size();
}
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail getLoginDetail(int index) {
return loginDetail_.get(index);
}
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetailOrBuilder getLoginDetailOrBuilder(
int index) {
return loginDetail_.get(index);
}
public static final int STATUS_FIELD_NUMBER = 3;
private int status_;
/**
* .POGOProtos.Networking.Responses.AddLoginActionResponse.Status status = 3;
*/
public int getStatusValue() {
return status_;
}
/**
* .POGOProtos.Networking.Responses.AddLoginActionResponse.Status status = 3;
*/
public POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddLoginActionResponse.Status getStatus() {
@SuppressWarnings("deprecation")
POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddLoginActionResponse.Status result = POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddLoginActionResponse.Status.valueOf(status_);
return result == null ? POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddLoginActionResponse.Status.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 (success_ != false) {
output.writeBool(1, success_);
}
for (int i = 0; i < loginDetail_.size(); i++) {
output.writeMessage(2, loginDetail_.get(i));
}
if (status_ != POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddLoginActionResponse.Status.UNSET.getNumber()) {
output.writeEnum(3, status_);
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (success_ != false) {
size += com.google.protobuf.CodedOutputStream
.computeBoolSize(1, success_);
}
for (int i = 0; i < loginDetail_.size(); i++) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(2, loginDetail_.get(i));
}
if (status_ != POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddLoginActionResponse.Status.UNSET.getNumber()) {
size += com.google.protobuf.CodedOutputStream
.computeEnumSize(3, status_);
}
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.Responses.PlatformClientActionsResponse.AddLoginActionResponse)) {
return super.equals(obj);
}
POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddLoginActionResponse other = (POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddLoginActionResponse) obj;
boolean result = true;
result = result && (getSuccess()
== other.getSuccess());
result = result && getLoginDetailList()
.equals(other.getLoginDetailList());
result = result && status_ == other.status_;
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) + SUCCESS_FIELD_NUMBER;
hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(
getSuccess());
if (getLoginDetailCount() > 0) {
hash = (37 * hash) + LOGIN_DETAIL_FIELD_NUMBER;
hash = (53 * hash) + getLoginDetailList().hashCode();
}
hash = (37 * hash) + STATUS_FIELD_NUMBER;
hash = (53 * hash) + status_;
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddLoginActionResponse parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddLoginActionResponse parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddLoginActionResponse parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddLoginActionResponse 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.Responses.PlatformClientActionsResponse.AddLoginActionResponse parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddLoginActionResponse parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddLoginActionResponse parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddLoginActionResponse 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.Responses.PlatformClientActionsResponse.AddLoginActionResponse parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddLoginActionResponse 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.Responses.PlatformClientActionsResponse.AddLoginActionResponse parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddLoginActionResponse 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.Responses.PlatformClientActionsResponse.AddLoginActionResponse 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.Responses.AddLoginActionResponse}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:POGOProtos.Networking.Responses.AddLoginActionResponse)
POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddLoginActionResponseOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.internal_static_POGOProtos_Networking_Responses_AddLoginActionResponse_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.internal_static_POGOProtos_Networking_Responses_AddLoginActionResponse_fieldAccessorTable
.ensureFieldAccessorsInitialized(
POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddLoginActionResponse.class, POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddLoginActionResponse.Builder.class);
}
// Construct using POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddLoginActionResponse.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
getLoginDetailFieldBuilder();
}
}
@java.lang.Override
public Builder clear() {
super.clear();
success_ = false;
if (loginDetailBuilder_ == null) {
loginDetail_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000002);
} else {
loginDetailBuilder_.clear();
}
status_ = 0;
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.internal_static_POGOProtos_Networking_Responses_AddLoginActionResponse_descriptor;
}
@java.lang.Override
public POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddLoginActionResponse getDefaultInstanceForType() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddLoginActionResponse.getDefaultInstance();
}
@java.lang.Override
public POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddLoginActionResponse build() {
POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddLoginActionResponse result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddLoginActionResponse buildPartial() {
POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddLoginActionResponse result = new POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddLoginActionResponse(this);
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
result.success_ = success_;
if (loginDetailBuilder_ == null) {
if (((bitField0_ & 0x00000002) == 0x00000002)) {
loginDetail_ = java.util.Collections.unmodifiableList(loginDetail_);
bitField0_ = (bitField0_ & ~0x00000002);
}
result.loginDetail_ = loginDetail_;
} else {
result.loginDetail_ = loginDetailBuilder_.build();
}
result.status_ = status_;
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.Responses.PlatformClientActionsResponse.AddLoginActionResponse) {
return mergeFrom((POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddLoginActionResponse)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddLoginActionResponse other) {
if (other == POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddLoginActionResponse.getDefaultInstance()) return this;
if (other.getSuccess() != false) {
setSuccess(other.getSuccess());
}
if (loginDetailBuilder_ == null) {
if (!other.loginDetail_.isEmpty()) {
if (loginDetail_.isEmpty()) {
loginDetail_ = other.loginDetail_;
bitField0_ = (bitField0_ & ~0x00000002);
} else {
ensureLoginDetailIsMutable();
loginDetail_.addAll(other.loginDetail_);
}
onChanged();
}
} else {
if (!other.loginDetail_.isEmpty()) {
if (loginDetailBuilder_.isEmpty()) {
loginDetailBuilder_.dispose();
loginDetailBuilder_ = null;
loginDetail_ = other.loginDetail_;
bitField0_ = (bitField0_ & ~0x00000002);
loginDetailBuilder_ =
com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ?
getLoginDetailFieldBuilder() : null;
} else {
loginDetailBuilder_.addAllMessages(other.loginDetail_);
}
}
}
if (other.status_ != 0) {
setStatusValue(other.getStatusValue());
}
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.Responses.PlatformClientActionsResponse.AddLoginActionResponse parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddLoginActionResponse) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
private boolean success_ ;
/**
* bool success = 1;
*/
public boolean getSuccess() {
return success_;
}
/**
* bool success = 1;
*/
public Builder setSuccess(boolean value) {
success_ = value;
onChanged();
return this;
}
/**
* bool success = 1;
*/
public Builder clearSuccess() {
success_ = false;
onChanged();
return this;
}
private java.util.List loginDetail_ =
java.util.Collections.emptyList();
private void ensureLoginDetailIsMutable() {
if (!((bitField0_ & 0x00000002) == 0x00000002)) {
loginDetail_ = new java.util.ArrayList(loginDetail_);
bitField0_ |= 0x00000002;
}
}
private com.google.protobuf.RepeatedFieldBuilderV3<
POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail, POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail.Builder, POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetailOrBuilder> loginDetailBuilder_;
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public java.util.List getLoginDetailList() {
if (loginDetailBuilder_ == null) {
return java.util.Collections.unmodifiableList(loginDetail_);
} else {
return loginDetailBuilder_.getMessageList();
}
}
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public int getLoginDetailCount() {
if (loginDetailBuilder_ == null) {
return loginDetail_.size();
} else {
return loginDetailBuilder_.getCount();
}
}
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail getLoginDetail(int index) {
if (loginDetailBuilder_ == null) {
return loginDetail_.get(index);
} else {
return loginDetailBuilder_.getMessage(index);
}
}
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public Builder setLoginDetail(
int index, POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail value) {
if (loginDetailBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureLoginDetailIsMutable();
loginDetail_.set(index, value);
onChanged();
} else {
loginDetailBuilder_.setMessage(index, value);
}
return this;
}
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public Builder setLoginDetail(
int index, POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail.Builder builderForValue) {
if (loginDetailBuilder_ == null) {
ensureLoginDetailIsMutable();
loginDetail_.set(index, builderForValue.build());
onChanged();
} else {
loginDetailBuilder_.setMessage(index, builderForValue.build());
}
return this;
}
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public Builder addLoginDetail(POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail value) {
if (loginDetailBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureLoginDetailIsMutable();
loginDetail_.add(value);
onChanged();
} else {
loginDetailBuilder_.addMessage(value);
}
return this;
}
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public Builder addLoginDetail(
int index, POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail value) {
if (loginDetailBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureLoginDetailIsMutable();
loginDetail_.add(index, value);
onChanged();
} else {
loginDetailBuilder_.addMessage(index, value);
}
return this;
}
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public Builder addLoginDetail(
POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail.Builder builderForValue) {
if (loginDetailBuilder_ == null) {
ensureLoginDetailIsMutable();
loginDetail_.add(builderForValue.build());
onChanged();
} else {
loginDetailBuilder_.addMessage(builderForValue.build());
}
return this;
}
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public Builder addLoginDetail(
int index, POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail.Builder builderForValue) {
if (loginDetailBuilder_ == null) {
ensureLoginDetailIsMutable();
loginDetail_.add(index, builderForValue.build());
onChanged();
} else {
loginDetailBuilder_.addMessage(index, builderForValue.build());
}
return this;
}
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public Builder addAllLoginDetail(
java.lang.Iterable extends POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail> values) {
if (loginDetailBuilder_ == null) {
ensureLoginDetailIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, loginDetail_);
onChanged();
} else {
loginDetailBuilder_.addAllMessages(values);
}
return this;
}
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public Builder clearLoginDetail() {
if (loginDetailBuilder_ == null) {
loginDetail_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000002);
onChanged();
} else {
loginDetailBuilder_.clear();
}
return this;
}
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public Builder removeLoginDetail(int index) {
if (loginDetailBuilder_ == null) {
ensureLoginDetailIsMutable();
loginDetail_.remove(index);
onChanged();
} else {
loginDetailBuilder_.remove(index);
}
return this;
}
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail.Builder getLoginDetailBuilder(
int index) {
return getLoginDetailFieldBuilder().getBuilder(index);
}
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetailOrBuilder getLoginDetailOrBuilder(
int index) {
if (loginDetailBuilder_ == null) {
return loginDetail_.get(index); } else {
return loginDetailBuilder_.getMessageOrBuilder(index);
}
}
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public java.util.List extends POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetailOrBuilder>
getLoginDetailOrBuilderList() {
if (loginDetailBuilder_ != null) {
return loginDetailBuilder_.getMessageOrBuilderList();
} else {
return java.util.Collections.unmodifiableList(loginDetail_);
}
}
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail.Builder addLoginDetailBuilder() {
return getLoginDetailFieldBuilder().addBuilder(
POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail.getDefaultInstance());
}
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail.Builder addLoginDetailBuilder(
int index) {
return getLoginDetailFieldBuilder().addBuilder(
index, POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail.getDefaultInstance());
}
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public java.util.List
getLoginDetailBuilderList() {
return getLoginDetailFieldBuilder().getBuilderList();
}
private com.google.protobuf.RepeatedFieldBuilderV3<
POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail, POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail.Builder, POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetailOrBuilder>
getLoginDetailFieldBuilder() {
if (loginDetailBuilder_ == null) {
loginDetailBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3<
POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail, POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail.Builder, POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetailOrBuilder>(
loginDetail_,
((bitField0_ & 0x00000002) == 0x00000002),
getParentForChildren(),
isClean());
loginDetail_ = null;
}
return loginDetailBuilder_;
}
private int status_ = 0;
/**
* .POGOProtos.Networking.Responses.AddLoginActionResponse.Status status = 3;
*/
public int getStatusValue() {
return status_;
}
/**
* .POGOProtos.Networking.Responses.AddLoginActionResponse.Status status = 3;
*/
public Builder setStatusValue(int value) {
status_ = value;
onChanged();
return this;
}
/**
* .POGOProtos.Networking.Responses.AddLoginActionResponse.Status status = 3;
*/
public POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddLoginActionResponse.Status getStatus() {
@SuppressWarnings("deprecation")
POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddLoginActionResponse.Status result = POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddLoginActionResponse.Status.valueOf(status_);
return result == null ? POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddLoginActionResponse.Status.UNRECOGNIZED : result;
}
/**
* .POGOProtos.Networking.Responses.AddLoginActionResponse.Status status = 3;
*/
public Builder setStatus(POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddLoginActionResponse.Status value) {
if (value == null) {
throw new NullPointerException();
}
status_ = value.getNumber();
onChanged();
return this;
}
/**
* .POGOProtos.Networking.Responses.AddLoginActionResponse.Status status = 3;
*/
public Builder clearStatus() {
status_ = 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.Responses.AddLoginActionResponse)
}
// @@protoc_insertion_point(class_scope:POGOProtos.Networking.Responses.AddLoginActionResponse)
private static final POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddLoginActionResponse DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddLoginActionResponse();
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.AddLoginActionResponse getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public AddLoginActionResponse parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new AddLoginActionResponse(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.Responses.PlatformClientActionsResponse.AddLoginActionResponse getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
public interface RemoveLoginActionResponseOrBuilder extends
// @@protoc_insertion_point(interface_extends:POGOProtos.Networking.Responses.RemoveLoginActionResponse)
com.google.protobuf.MessageOrBuilder {
/**
* bool success = 1;
*/
boolean getSuccess();
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
java.util.List
getLoginDetailList();
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail getLoginDetail(int index);
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
int getLoginDetailCount();
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
java.util.List extends POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetailOrBuilder>
getLoginDetailOrBuilderList();
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetailOrBuilder getLoginDetailOrBuilder(
int index);
/**
* .POGOProtos.Networking.Responses.RemoveLoginActionResponse.Status status = 3;
*/
int getStatusValue();
/**
* .POGOProtos.Networking.Responses.RemoveLoginActionResponse.Status status = 3;
*/
POGOProtos.Networking.Responses.PlatformClientActionsResponse.RemoveLoginActionResponse.Status getStatus();
}
/**
* Protobuf type {@code POGOProtos.Networking.Responses.RemoveLoginActionResponse}
*/
public static final class RemoveLoginActionResponse extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:POGOProtos.Networking.Responses.RemoveLoginActionResponse)
RemoveLoginActionResponseOrBuilder {
private static final long serialVersionUID = 0L;
// Use RemoveLoginActionResponse.newBuilder() to construct.
private RemoveLoginActionResponse(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private RemoveLoginActionResponse() {
success_ = false;
loginDetail_ = java.util.Collections.emptyList();
status_ = 0;
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private RemoveLoginActionResponse(
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: {
success_ = input.readBool();
break;
}
case 18: {
if (!((mutable_bitField0_ & 0x00000002) == 0x00000002)) {
loginDetail_ = new java.util.ArrayList();
mutable_bitField0_ |= 0x00000002;
}
loginDetail_.add(
input.readMessage(POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail.parser(), extensionRegistry));
break;
}
case 24: {
int rawValue = input.readEnum();
status_ = 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_ & 0x00000002) == 0x00000002)) {
loginDetail_ = java.util.Collections.unmodifiableList(loginDetail_);
}
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.internal_static_POGOProtos_Networking_Responses_RemoveLoginActionResponse_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.internal_static_POGOProtos_Networking_Responses_RemoveLoginActionResponse_fieldAccessorTable
.ensureFieldAccessorsInitialized(
POGOProtos.Networking.Responses.PlatformClientActionsResponse.RemoveLoginActionResponse.class, POGOProtos.Networking.Responses.PlatformClientActionsResponse.RemoveLoginActionResponse.Builder.class);
}
/**
* Protobuf enum {@code POGOProtos.Networking.Responses.RemoveLoginActionResponse.Status}
*/
public enum Status
implements com.google.protobuf.ProtocolMessageEnum {
/**
* UNSET = 0;
*/
UNSET(0),
/**
* LOGIN_NOT_REMOVABLE = 1;
*/
LOGIN_NOT_REMOVABLE(1),
UNRECOGNIZED(-1),
;
/**
* UNSET = 0;
*/
public static final int UNSET_VALUE = 0;
/**
* LOGIN_NOT_REMOVABLE = 1;
*/
public static final int LOGIN_NOT_REMOVABLE_VALUE = 1;
public final int getNumber() {
if (this == UNRECOGNIZED) {
throw new java.lang.IllegalArgumentException(
"Can't get the number of an unknown enum value.");
}
return value;
}
/**
* @deprecated Use {@link #forNumber(int)} instead.
*/
@java.lang.Deprecated
public static Status valueOf(int value) {
return forNumber(value);
}
public static Status forNumber(int value) {
switch (value) {
case 0: return UNSET;
case 1: return LOGIN_NOT_REMOVABLE;
default: return null;
}
}
public static com.google.protobuf.Internal.EnumLiteMap
internalGetValueMap() {
return internalValueMap;
}
private static final com.google.protobuf.Internal.EnumLiteMap<
Status> internalValueMap =
new com.google.protobuf.Internal.EnumLiteMap() {
public Status findValueByNumber(int number) {
return Status.forNumber(number);
}
};
public final com.google.protobuf.Descriptors.EnumValueDescriptor
getValueDescriptor() {
return getDescriptor().getValues().get(ordinal());
}
public final com.google.protobuf.Descriptors.EnumDescriptor
getDescriptorForType() {
return getDescriptor();
}
public static final com.google.protobuf.Descriptors.EnumDescriptor
getDescriptor() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.RemoveLoginActionResponse.getDescriptor().getEnumTypes().get(0);
}
private static final Status[] VALUES = values();
public static Status valueOf(
com.google.protobuf.Descriptors.EnumValueDescriptor desc) {
if (desc.getType() != getDescriptor()) {
throw new java.lang.IllegalArgumentException(
"EnumValueDescriptor is not for this type.");
}
if (desc.getIndex() == -1) {
return UNRECOGNIZED;
}
return VALUES[desc.getIndex()];
}
private final int value;
private Status(int value) {
this.value = value;
}
// @@protoc_insertion_point(enum_scope:POGOProtos.Networking.Responses.RemoveLoginActionResponse.Status)
}
private int bitField0_;
public static final int SUCCESS_FIELD_NUMBER = 1;
private boolean success_;
/**
* bool success = 1;
*/
public boolean getSuccess() {
return success_;
}
public static final int LOGIN_DETAIL_FIELD_NUMBER = 2;
private java.util.List loginDetail_;
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public java.util.List getLoginDetailList() {
return loginDetail_;
}
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public java.util.List extends POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetailOrBuilder>
getLoginDetailOrBuilderList() {
return loginDetail_;
}
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public int getLoginDetailCount() {
return loginDetail_.size();
}
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail getLoginDetail(int index) {
return loginDetail_.get(index);
}
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetailOrBuilder getLoginDetailOrBuilder(
int index) {
return loginDetail_.get(index);
}
public static final int STATUS_FIELD_NUMBER = 3;
private int status_;
/**
* .POGOProtos.Networking.Responses.RemoveLoginActionResponse.Status status = 3;
*/
public int getStatusValue() {
return status_;
}
/**
* .POGOProtos.Networking.Responses.RemoveLoginActionResponse.Status status = 3;
*/
public POGOProtos.Networking.Responses.PlatformClientActionsResponse.RemoveLoginActionResponse.Status getStatus() {
@SuppressWarnings("deprecation")
POGOProtos.Networking.Responses.PlatformClientActionsResponse.RemoveLoginActionResponse.Status result = POGOProtos.Networking.Responses.PlatformClientActionsResponse.RemoveLoginActionResponse.Status.valueOf(status_);
return result == null ? POGOProtos.Networking.Responses.PlatformClientActionsResponse.RemoveLoginActionResponse.Status.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 (success_ != false) {
output.writeBool(1, success_);
}
for (int i = 0; i < loginDetail_.size(); i++) {
output.writeMessage(2, loginDetail_.get(i));
}
if (status_ != POGOProtos.Networking.Responses.PlatformClientActionsResponse.RemoveLoginActionResponse.Status.UNSET.getNumber()) {
output.writeEnum(3, status_);
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (success_ != false) {
size += com.google.protobuf.CodedOutputStream
.computeBoolSize(1, success_);
}
for (int i = 0; i < loginDetail_.size(); i++) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(2, loginDetail_.get(i));
}
if (status_ != POGOProtos.Networking.Responses.PlatformClientActionsResponse.RemoveLoginActionResponse.Status.UNSET.getNumber()) {
size += com.google.protobuf.CodedOutputStream
.computeEnumSize(3, status_);
}
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.Responses.PlatformClientActionsResponse.RemoveLoginActionResponse)) {
return super.equals(obj);
}
POGOProtos.Networking.Responses.PlatformClientActionsResponse.RemoveLoginActionResponse other = (POGOProtos.Networking.Responses.PlatformClientActionsResponse.RemoveLoginActionResponse) obj;
boolean result = true;
result = result && (getSuccess()
== other.getSuccess());
result = result && getLoginDetailList()
.equals(other.getLoginDetailList());
result = result && status_ == other.status_;
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) + SUCCESS_FIELD_NUMBER;
hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(
getSuccess());
if (getLoginDetailCount() > 0) {
hash = (37 * hash) + LOGIN_DETAIL_FIELD_NUMBER;
hash = (53 * hash) + getLoginDetailList().hashCode();
}
hash = (37 * hash) + STATUS_FIELD_NUMBER;
hash = (53 * hash) + status_;
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.RemoveLoginActionResponse parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.RemoveLoginActionResponse parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.RemoveLoginActionResponse parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.RemoveLoginActionResponse 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.Responses.PlatformClientActionsResponse.RemoveLoginActionResponse parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.RemoveLoginActionResponse parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.RemoveLoginActionResponse parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.RemoveLoginActionResponse 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.Responses.PlatformClientActionsResponse.RemoveLoginActionResponse parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.RemoveLoginActionResponse 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.Responses.PlatformClientActionsResponse.RemoveLoginActionResponse parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.RemoveLoginActionResponse 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.Responses.PlatformClientActionsResponse.RemoveLoginActionResponse 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.Responses.RemoveLoginActionResponse}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:POGOProtos.Networking.Responses.RemoveLoginActionResponse)
POGOProtos.Networking.Responses.PlatformClientActionsResponse.RemoveLoginActionResponseOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.internal_static_POGOProtos_Networking_Responses_RemoveLoginActionResponse_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.internal_static_POGOProtos_Networking_Responses_RemoveLoginActionResponse_fieldAccessorTable
.ensureFieldAccessorsInitialized(
POGOProtos.Networking.Responses.PlatformClientActionsResponse.RemoveLoginActionResponse.class, POGOProtos.Networking.Responses.PlatformClientActionsResponse.RemoveLoginActionResponse.Builder.class);
}
// Construct using POGOProtos.Networking.Responses.PlatformClientActionsResponse.RemoveLoginActionResponse.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
getLoginDetailFieldBuilder();
}
}
@java.lang.Override
public Builder clear() {
super.clear();
success_ = false;
if (loginDetailBuilder_ == null) {
loginDetail_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000002);
} else {
loginDetailBuilder_.clear();
}
status_ = 0;
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.internal_static_POGOProtos_Networking_Responses_RemoveLoginActionResponse_descriptor;
}
@java.lang.Override
public POGOProtos.Networking.Responses.PlatformClientActionsResponse.RemoveLoginActionResponse getDefaultInstanceForType() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.RemoveLoginActionResponse.getDefaultInstance();
}
@java.lang.Override
public POGOProtos.Networking.Responses.PlatformClientActionsResponse.RemoveLoginActionResponse build() {
POGOProtos.Networking.Responses.PlatformClientActionsResponse.RemoveLoginActionResponse result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public POGOProtos.Networking.Responses.PlatformClientActionsResponse.RemoveLoginActionResponse buildPartial() {
POGOProtos.Networking.Responses.PlatformClientActionsResponse.RemoveLoginActionResponse result = new POGOProtos.Networking.Responses.PlatformClientActionsResponse.RemoveLoginActionResponse(this);
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
result.success_ = success_;
if (loginDetailBuilder_ == null) {
if (((bitField0_ & 0x00000002) == 0x00000002)) {
loginDetail_ = java.util.Collections.unmodifiableList(loginDetail_);
bitField0_ = (bitField0_ & ~0x00000002);
}
result.loginDetail_ = loginDetail_;
} else {
result.loginDetail_ = loginDetailBuilder_.build();
}
result.status_ = status_;
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.Responses.PlatformClientActionsResponse.RemoveLoginActionResponse) {
return mergeFrom((POGOProtos.Networking.Responses.PlatformClientActionsResponse.RemoveLoginActionResponse)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(POGOProtos.Networking.Responses.PlatformClientActionsResponse.RemoveLoginActionResponse other) {
if (other == POGOProtos.Networking.Responses.PlatformClientActionsResponse.RemoveLoginActionResponse.getDefaultInstance()) return this;
if (other.getSuccess() != false) {
setSuccess(other.getSuccess());
}
if (loginDetailBuilder_ == null) {
if (!other.loginDetail_.isEmpty()) {
if (loginDetail_.isEmpty()) {
loginDetail_ = other.loginDetail_;
bitField0_ = (bitField0_ & ~0x00000002);
} else {
ensureLoginDetailIsMutable();
loginDetail_.addAll(other.loginDetail_);
}
onChanged();
}
} else {
if (!other.loginDetail_.isEmpty()) {
if (loginDetailBuilder_.isEmpty()) {
loginDetailBuilder_.dispose();
loginDetailBuilder_ = null;
loginDetail_ = other.loginDetail_;
bitField0_ = (bitField0_ & ~0x00000002);
loginDetailBuilder_ =
com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ?
getLoginDetailFieldBuilder() : null;
} else {
loginDetailBuilder_.addAllMessages(other.loginDetail_);
}
}
}
if (other.status_ != 0) {
setStatusValue(other.getStatusValue());
}
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.Responses.PlatformClientActionsResponse.RemoveLoginActionResponse parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (POGOProtos.Networking.Responses.PlatformClientActionsResponse.RemoveLoginActionResponse) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
private boolean success_ ;
/**
* bool success = 1;
*/
public boolean getSuccess() {
return success_;
}
/**
* bool success = 1;
*/
public Builder setSuccess(boolean value) {
success_ = value;
onChanged();
return this;
}
/**
* bool success = 1;
*/
public Builder clearSuccess() {
success_ = false;
onChanged();
return this;
}
private java.util.List loginDetail_ =
java.util.Collections.emptyList();
private void ensureLoginDetailIsMutable() {
if (!((bitField0_ & 0x00000002) == 0x00000002)) {
loginDetail_ = new java.util.ArrayList(loginDetail_);
bitField0_ |= 0x00000002;
}
}
private com.google.protobuf.RepeatedFieldBuilderV3<
POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail, POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail.Builder, POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetailOrBuilder> loginDetailBuilder_;
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public java.util.List getLoginDetailList() {
if (loginDetailBuilder_ == null) {
return java.util.Collections.unmodifiableList(loginDetail_);
} else {
return loginDetailBuilder_.getMessageList();
}
}
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public int getLoginDetailCount() {
if (loginDetailBuilder_ == null) {
return loginDetail_.size();
} else {
return loginDetailBuilder_.getCount();
}
}
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail getLoginDetail(int index) {
if (loginDetailBuilder_ == null) {
return loginDetail_.get(index);
} else {
return loginDetailBuilder_.getMessage(index);
}
}
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public Builder setLoginDetail(
int index, POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail value) {
if (loginDetailBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureLoginDetailIsMutable();
loginDetail_.set(index, value);
onChanged();
} else {
loginDetailBuilder_.setMessage(index, value);
}
return this;
}
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public Builder setLoginDetail(
int index, POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail.Builder builderForValue) {
if (loginDetailBuilder_ == null) {
ensureLoginDetailIsMutable();
loginDetail_.set(index, builderForValue.build());
onChanged();
} else {
loginDetailBuilder_.setMessage(index, builderForValue.build());
}
return this;
}
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public Builder addLoginDetail(POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail value) {
if (loginDetailBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureLoginDetailIsMutable();
loginDetail_.add(value);
onChanged();
} else {
loginDetailBuilder_.addMessage(value);
}
return this;
}
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public Builder addLoginDetail(
int index, POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail value) {
if (loginDetailBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureLoginDetailIsMutable();
loginDetail_.add(index, value);
onChanged();
} else {
loginDetailBuilder_.addMessage(index, value);
}
return this;
}
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public Builder addLoginDetail(
POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail.Builder builderForValue) {
if (loginDetailBuilder_ == null) {
ensureLoginDetailIsMutable();
loginDetail_.add(builderForValue.build());
onChanged();
} else {
loginDetailBuilder_.addMessage(builderForValue.build());
}
return this;
}
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public Builder addLoginDetail(
int index, POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail.Builder builderForValue) {
if (loginDetailBuilder_ == null) {
ensureLoginDetailIsMutable();
loginDetail_.add(index, builderForValue.build());
onChanged();
} else {
loginDetailBuilder_.addMessage(index, builderForValue.build());
}
return this;
}
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public Builder addAllLoginDetail(
java.lang.Iterable extends POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail> values) {
if (loginDetailBuilder_ == null) {
ensureLoginDetailIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, loginDetail_);
onChanged();
} else {
loginDetailBuilder_.addAllMessages(values);
}
return this;
}
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public Builder clearLoginDetail() {
if (loginDetailBuilder_ == null) {
loginDetail_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000002);
onChanged();
} else {
loginDetailBuilder_.clear();
}
return this;
}
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public Builder removeLoginDetail(int index) {
if (loginDetailBuilder_ == null) {
ensureLoginDetailIsMutable();
loginDetail_.remove(index);
onChanged();
} else {
loginDetailBuilder_.remove(index);
}
return this;
}
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail.Builder getLoginDetailBuilder(
int index) {
return getLoginDetailFieldBuilder().getBuilder(index);
}
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetailOrBuilder getLoginDetailOrBuilder(
int index) {
if (loginDetailBuilder_ == null) {
return loginDetail_.get(index); } else {
return loginDetailBuilder_.getMessageOrBuilder(index);
}
}
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public java.util.List extends POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetailOrBuilder>
getLoginDetailOrBuilderList() {
if (loginDetailBuilder_ != null) {
return loginDetailBuilder_.getMessageOrBuilderList();
} else {
return java.util.Collections.unmodifiableList(loginDetail_);
}
}
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail.Builder addLoginDetailBuilder() {
return getLoginDetailFieldBuilder().addBuilder(
POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail.getDefaultInstance());
}
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail.Builder addLoginDetailBuilder(
int index) {
return getLoginDetailFieldBuilder().addBuilder(
index, POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail.getDefaultInstance());
}
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public java.util.List
getLoginDetailBuilderList() {
return getLoginDetailFieldBuilder().getBuilderList();
}
private com.google.protobuf.RepeatedFieldBuilderV3<
POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail, POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail.Builder, POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetailOrBuilder>
getLoginDetailFieldBuilder() {
if (loginDetailBuilder_ == null) {
loginDetailBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3<
POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail, POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail.Builder, POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetailOrBuilder>(
loginDetail_,
((bitField0_ & 0x00000002) == 0x00000002),
getParentForChildren(),
isClean());
loginDetail_ = null;
}
return loginDetailBuilder_;
}
private int status_ = 0;
/**
* .POGOProtos.Networking.Responses.RemoveLoginActionResponse.Status status = 3;
*/
public int getStatusValue() {
return status_;
}
/**
* .POGOProtos.Networking.Responses.RemoveLoginActionResponse.Status status = 3;
*/
public Builder setStatusValue(int value) {
status_ = value;
onChanged();
return this;
}
/**
* .POGOProtos.Networking.Responses.RemoveLoginActionResponse.Status status = 3;
*/
public POGOProtos.Networking.Responses.PlatformClientActionsResponse.RemoveLoginActionResponse.Status getStatus() {
@SuppressWarnings("deprecation")
POGOProtos.Networking.Responses.PlatformClientActionsResponse.RemoveLoginActionResponse.Status result = POGOProtos.Networking.Responses.PlatformClientActionsResponse.RemoveLoginActionResponse.Status.valueOf(status_);
return result == null ? POGOProtos.Networking.Responses.PlatformClientActionsResponse.RemoveLoginActionResponse.Status.UNRECOGNIZED : result;
}
/**
* .POGOProtos.Networking.Responses.RemoveLoginActionResponse.Status status = 3;
*/
public Builder setStatus(POGOProtos.Networking.Responses.PlatformClientActionsResponse.RemoveLoginActionResponse.Status value) {
if (value == null) {
throw new NullPointerException();
}
status_ = value.getNumber();
onChanged();
return this;
}
/**
* .POGOProtos.Networking.Responses.RemoveLoginActionResponse.Status status = 3;
*/
public Builder clearStatus() {
status_ = 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.Responses.RemoveLoginActionResponse)
}
// @@protoc_insertion_point(class_scope:POGOProtos.Networking.Responses.RemoveLoginActionResponse)
private static final POGOProtos.Networking.Responses.PlatformClientActionsResponse.RemoveLoginActionResponse DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new POGOProtos.Networking.Responses.PlatformClientActionsResponse.RemoveLoginActionResponse();
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.RemoveLoginActionResponse getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public RemoveLoginActionResponse parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new RemoveLoginActionResponse(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.Responses.PlatformClientActionsResponse.RemoveLoginActionResponse getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
public interface SubmitNewPoiResponseOrBuilder extends
// @@protoc_insertion_point(interface_extends:POGOProtos.Networking.Responses.SubmitNewPoiResponse)
com.google.protobuf.MessageOrBuilder {
/**
* .POGOProtos.Networking.Responses.SubmitNewPoiResponse.Status status = 1;
*/
int getStatusValue();
/**
* .POGOProtos.Networking.Responses.SubmitNewPoiResponse.Status status = 1;
*/
POGOProtos.Networking.Responses.PlatformClientActionsResponse.SubmitNewPoiResponse.Status getStatus();
}
/**
* Protobuf type {@code POGOProtos.Networking.Responses.SubmitNewPoiResponse}
*/
public static final class SubmitNewPoiResponse extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:POGOProtos.Networking.Responses.SubmitNewPoiResponse)
SubmitNewPoiResponseOrBuilder {
private static final long serialVersionUID = 0L;
// Use SubmitNewPoiResponse.newBuilder() to construct.
private SubmitNewPoiResponse(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private SubmitNewPoiResponse() {
status_ = 0;
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private SubmitNewPoiResponse(
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();
status_ = 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.Responses.PlatformClientActionsResponse.internal_static_POGOProtos_Networking_Responses_SubmitNewPoiResponse_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.internal_static_POGOProtos_Networking_Responses_SubmitNewPoiResponse_fieldAccessorTable
.ensureFieldAccessorsInitialized(
POGOProtos.Networking.Responses.PlatformClientActionsResponse.SubmitNewPoiResponse.class, POGOProtos.Networking.Responses.PlatformClientActionsResponse.SubmitNewPoiResponse.Builder.class);
}
/**
* Protobuf enum {@code POGOProtos.Networking.Responses.SubmitNewPoiResponse.Status}
*/
public enum Status
implements com.google.protobuf.ProtocolMessageEnum {
/**
* UNSET = 0;
*/
UNSET(0),
/**
* SUCCESS = 1;
*/
SUCCESS(1),
/**
* FAILURE = 2;
*/
FAILURE(2),
/**
* INTERNAL_ERROR = 3;
*/
INTERNAL_ERROR(3),
/**
* TOO_MANY_RECENT_SUBMISSIONS = 4;
*/
TOO_MANY_RECENT_SUBMISSIONS(4),
/**
* INVALID_INPUT = 5;
*/
INVALID_INPUT(5),
/**
* MINOR = 6;
*/
MINOR(6),
/**
* NOT_AVAILABLE = 7;
*/
NOT_AVAILABLE(7),
UNRECOGNIZED(-1),
;
/**
* UNSET = 0;
*/
public static final int UNSET_VALUE = 0;
/**
* SUCCESS = 1;
*/
public static final int SUCCESS_VALUE = 1;
/**
* FAILURE = 2;
*/
public static final int FAILURE_VALUE = 2;
/**
* INTERNAL_ERROR = 3;
*/
public static final int INTERNAL_ERROR_VALUE = 3;
/**
* TOO_MANY_RECENT_SUBMISSIONS = 4;
*/
public static final int TOO_MANY_RECENT_SUBMISSIONS_VALUE = 4;
/**
* INVALID_INPUT = 5;
*/
public static final int INVALID_INPUT_VALUE = 5;
/**
* MINOR = 6;
*/
public static final int MINOR_VALUE = 6;
/**
* NOT_AVAILABLE = 7;
*/
public static final int NOT_AVAILABLE_VALUE = 7;
public final int getNumber() {
if (this == UNRECOGNIZED) {
throw new java.lang.IllegalArgumentException(
"Can't get the number of an unknown enum value.");
}
return value;
}
/**
* @deprecated Use {@link #forNumber(int)} instead.
*/
@java.lang.Deprecated
public static Status valueOf(int value) {
return forNumber(value);
}
public static Status forNumber(int value) {
switch (value) {
case 0: return UNSET;
case 1: return SUCCESS;
case 2: return FAILURE;
case 3: return INTERNAL_ERROR;
case 4: return TOO_MANY_RECENT_SUBMISSIONS;
case 5: return INVALID_INPUT;
case 6: return MINOR;
case 7: return NOT_AVAILABLE;
default: return null;
}
}
public static com.google.protobuf.Internal.EnumLiteMap
internalGetValueMap() {
return internalValueMap;
}
private static final com.google.protobuf.Internal.EnumLiteMap<
Status> internalValueMap =
new com.google.protobuf.Internal.EnumLiteMap() {
public Status findValueByNumber(int number) {
return Status.forNumber(number);
}
};
public final com.google.protobuf.Descriptors.EnumValueDescriptor
getValueDescriptor() {
return getDescriptor().getValues().get(ordinal());
}
public final com.google.protobuf.Descriptors.EnumDescriptor
getDescriptorForType() {
return getDescriptor();
}
public static final com.google.protobuf.Descriptors.EnumDescriptor
getDescriptor() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.SubmitNewPoiResponse.getDescriptor().getEnumTypes().get(0);
}
private static final Status[] VALUES = values();
public static Status valueOf(
com.google.protobuf.Descriptors.EnumValueDescriptor desc) {
if (desc.getType() != getDescriptor()) {
throw new java.lang.IllegalArgumentException(
"EnumValueDescriptor is not for this type.");
}
if (desc.getIndex() == -1) {
return UNRECOGNIZED;
}
return VALUES[desc.getIndex()];
}
private final int value;
private Status(int value) {
this.value = value;
}
// @@protoc_insertion_point(enum_scope:POGOProtos.Networking.Responses.SubmitNewPoiResponse.Status)
}
public static final int STATUS_FIELD_NUMBER = 1;
private int status_;
/**
* .POGOProtos.Networking.Responses.SubmitNewPoiResponse.Status status = 1;
*/
public int getStatusValue() {
return status_;
}
/**
* .POGOProtos.Networking.Responses.SubmitNewPoiResponse.Status status = 1;
*/
public POGOProtos.Networking.Responses.PlatformClientActionsResponse.SubmitNewPoiResponse.Status getStatus() {
@SuppressWarnings("deprecation")
POGOProtos.Networking.Responses.PlatformClientActionsResponse.SubmitNewPoiResponse.Status result = POGOProtos.Networking.Responses.PlatformClientActionsResponse.SubmitNewPoiResponse.Status.valueOf(status_);
return result == null ? POGOProtos.Networking.Responses.PlatformClientActionsResponse.SubmitNewPoiResponse.Status.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 (status_ != POGOProtos.Networking.Responses.PlatformClientActionsResponse.SubmitNewPoiResponse.Status.UNSET.getNumber()) {
output.writeEnum(1, status_);
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (status_ != POGOProtos.Networking.Responses.PlatformClientActionsResponse.SubmitNewPoiResponse.Status.UNSET.getNumber()) {
size += com.google.protobuf.CodedOutputStream
.computeEnumSize(1, status_);
}
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.Responses.PlatformClientActionsResponse.SubmitNewPoiResponse)) {
return super.equals(obj);
}
POGOProtos.Networking.Responses.PlatformClientActionsResponse.SubmitNewPoiResponse other = (POGOProtos.Networking.Responses.PlatformClientActionsResponse.SubmitNewPoiResponse) obj;
boolean result = true;
result = result && status_ == other.status_;
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) + STATUS_FIELD_NUMBER;
hash = (53 * hash) + status_;
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.SubmitNewPoiResponse parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.SubmitNewPoiResponse parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.SubmitNewPoiResponse parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.SubmitNewPoiResponse 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.Responses.PlatformClientActionsResponse.SubmitNewPoiResponse parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.SubmitNewPoiResponse parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.SubmitNewPoiResponse parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.SubmitNewPoiResponse 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.Responses.PlatformClientActionsResponse.SubmitNewPoiResponse parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.SubmitNewPoiResponse 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.Responses.PlatformClientActionsResponse.SubmitNewPoiResponse parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.SubmitNewPoiResponse 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.Responses.PlatformClientActionsResponse.SubmitNewPoiResponse 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.Responses.SubmitNewPoiResponse}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:POGOProtos.Networking.Responses.SubmitNewPoiResponse)
POGOProtos.Networking.Responses.PlatformClientActionsResponse.SubmitNewPoiResponseOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.internal_static_POGOProtos_Networking_Responses_SubmitNewPoiResponse_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.internal_static_POGOProtos_Networking_Responses_SubmitNewPoiResponse_fieldAccessorTable
.ensureFieldAccessorsInitialized(
POGOProtos.Networking.Responses.PlatformClientActionsResponse.SubmitNewPoiResponse.class, POGOProtos.Networking.Responses.PlatformClientActionsResponse.SubmitNewPoiResponse.Builder.class);
}
// Construct using POGOProtos.Networking.Responses.PlatformClientActionsResponse.SubmitNewPoiResponse.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();
status_ = 0;
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.internal_static_POGOProtos_Networking_Responses_SubmitNewPoiResponse_descriptor;
}
@java.lang.Override
public POGOProtos.Networking.Responses.PlatformClientActionsResponse.SubmitNewPoiResponse getDefaultInstanceForType() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.SubmitNewPoiResponse.getDefaultInstance();
}
@java.lang.Override
public POGOProtos.Networking.Responses.PlatformClientActionsResponse.SubmitNewPoiResponse build() {
POGOProtos.Networking.Responses.PlatformClientActionsResponse.SubmitNewPoiResponse result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public POGOProtos.Networking.Responses.PlatformClientActionsResponse.SubmitNewPoiResponse buildPartial() {
POGOProtos.Networking.Responses.PlatformClientActionsResponse.SubmitNewPoiResponse result = new POGOProtos.Networking.Responses.PlatformClientActionsResponse.SubmitNewPoiResponse(this);
result.status_ = status_;
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.Responses.PlatformClientActionsResponse.SubmitNewPoiResponse) {
return mergeFrom((POGOProtos.Networking.Responses.PlatformClientActionsResponse.SubmitNewPoiResponse)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(POGOProtos.Networking.Responses.PlatformClientActionsResponse.SubmitNewPoiResponse other) {
if (other == POGOProtos.Networking.Responses.PlatformClientActionsResponse.SubmitNewPoiResponse.getDefaultInstance()) return this;
if (other.status_ != 0) {
setStatusValue(other.getStatusValue());
}
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.Responses.PlatformClientActionsResponse.SubmitNewPoiResponse parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (POGOProtos.Networking.Responses.PlatformClientActionsResponse.SubmitNewPoiResponse) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int status_ = 0;
/**
* .POGOProtos.Networking.Responses.SubmitNewPoiResponse.Status status = 1;
*/
public int getStatusValue() {
return status_;
}
/**
* .POGOProtos.Networking.Responses.SubmitNewPoiResponse.Status status = 1;
*/
public Builder setStatusValue(int value) {
status_ = value;
onChanged();
return this;
}
/**
* .POGOProtos.Networking.Responses.SubmitNewPoiResponse.Status status = 1;
*/
public POGOProtos.Networking.Responses.PlatformClientActionsResponse.SubmitNewPoiResponse.Status getStatus() {
@SuppressWarnings("deprecation")
POGOProtos.Networking.Responses.PlatformClientActionsResponse.SubmitNewPoiResponse.Status result = POGOProtos.Networking.Responses.PlatformClientActionsResponse.SubmitNewPoiResponse.Status.valueOf(status_);
return result == null ? POGOProtos.Networking.Responses.PlatformClientActionsResponse.SubmitNewPoiResponse.Status.UNRECOGNIZED : result;
}
/**
* .POGOProtos.Networking.Responses.SubmitNewPoiResponse.Status status = 1;
*/
public Builder setStatus(POGOProtos.Networking.Responses.PlatformClientActionsResponse.SubmitNewPoiResponse.Status value) {
if (value == null) {
throw new NullPointerException();
}
status_ = value.getNumber();
onChanged();
return this;
}
/**
* .POGOProtos.Networking.Responses.SubmitNewPoiResponse.Status status = 1;
*/
public Builder clearStatus() {
status_ = 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.Responses.SubmitNewPoiResponse)
}
// @@protoc_insertion_point(class_scope:POGOProtos.Networking.Responses.SubmitNewPoiResponse)
private static final POGOProtos.Networking.Responses.PlatformClientActionsResponse.SubmitNewPoiResponse DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new POGOProtos.Networking.Responses.PlatformClientActionsResponse.SubmitNewPoiResponse();
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.SubmitNewPoiResponse getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public SubmitNewPoiResponse parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new SubmitNewPoiResponse(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.Responses.PlatformClientActionsResponse.SubmitNewPoiResponse getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
public interface UploadPoiPhotoByUrlResponseOrBuilder extends
// @@protoc_insertion_point(interface_extends:POGOProtos.Networking.Responses.UploadPoiPhotoByUrlResponse)
com.google.protobuf.MessageOrBuilder {
/**
* .POGOProtos.Networking.Responses.UploadPoiPhotoByUrlResponse.Result status = 1;
*/
int getStatusValue();
/**
* .POGOProtos.Networking.Responses.UploadPoiPhotoByUrlResponse.Result status = 1;
*/
POGOProtos.Networking.Responses.PlatformClientActionsResponse.UploadPoiPhotoByUrlResponse.Result getStatus();
}
/**
* Protobuf type {@code POGOProtos.Networking.Responses.UploadPoiPhotoByUrlResponse}
*/
public static final class UploadPoiPhotoByUrlResponse extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:POGOProtos.Networking.Responses.UploadPoiPhotoByUrlResponse)
UploadPoiPhotoByUrlResponseOrBuilder {
private static final long serialVersionUID = 0L;
// Use UploadPoiPhotoByUrlResponse.newBuilder() to construct.
private UploadPoiPhotoByUrlResponse(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private UploadPoiPhotoByUrlResponse() {
status_ = 0;
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private UploadPoiPhotoByUrlResponse(
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();
status_ = 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.Responses.PlatformClientActionsResponse.internal_static_POGOProtos_Networking_Responses_UploadPoiPhotoByUrlResponse_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.internal_static_POGOProtos_Networking_Responses_UploadPoiPhotoByUrlResponse_fieldAccessorTable
.ensureFieldAccessorsInitialized(
POGOProtos.Networking.Responses.PlatformClientActionsResponse.UploadPoiPhotoByUrlResponse.class, POGOProtos.Networking.Responses.PlatformClientActionsResponse.UploadPoiPhotoByUrlResponse.Builder.class);
}
/**
* Protobuf enum {@code POGOProtos.Networking.Responses.UploadPoiPhotoByUrlResponse.Result}
*/
public enum Result
implements com.google.protobuf.ProtocolMessageEnum {
/**
* UNSET = 0;
*/
UNSET(0),
/**
* SUCCESS = 1;
*/
SUCCESS(1),
/**
* FEATURE_DISABLED = 2;
*/
FEATURE_DISABLED(2),
/**
* ALREADY_UPLOADED = 3;
*/
ALREADY_UPLOADED(3),
/**
* IMAGE_NOT_FOUND = 4;
*/
IMAGE_NOT_FOUND(4),
/**
* IMAGE_TOO_BIG = 5;
*/
IMAGE_TOO_BIG(5),
/**
* IMAGE_NOT_SERVABLE = 6;
*/
IMAGE_NOT_SERVABLE(6),
/**
* PORTAL_NOT_FOUND = 7;
*/
PORTAL_NOT_FOUND(7),
UNRECOGNIZED(-1),
;
/**
* UNSET = 0;
*/
public static final int UNSET_VALUE = 0;
/**
* SUCCESS = 1;
*/
public static final int SUCCESS_VALUE = 1;
/**
* FEATURE_DISABLED = 2;
*/
public static final int FEATURE_DISABLED_VALUE = 2;
/**
* ALREADY_UPLOADED = 3;
*/
public static final int ALREADY_UPLOADED_VALUE = 3;
/**
* IMAGE_NOT_FOUND = 4;
*/
public static final int IMAGE_NOT_FOUND_VALUE = 4;
/**
* IMAGE_TOO_BIG = 5;
*/
public static final int IMAGE_TOO_BIG_VALUE = 5;
/**
* IMAGE_NOT_SERVABLE = 6;
*/
public static final int IMAGE_NOT_SERVABLE_VALUE = 6;
/**
* PORTAL_NOT_FOUND = 7;
*/
public static final int PORTAL_NOT_FOUND_VALUE = 7;
public final int getNumber() {
if (this == UNRECOGNIZED) {
throw new java.lang.IllegalArgumentException(
"Can't get the number of an unknown enum value.");
}
return value;
}
/**
* @deprecated Use {@link #forNumber(int)} instead.
*/
@java.lang.Deprecated
public static Result valueOf(int value) {
return forNumber(value);
}
public static Result forNumber(int value) {
switch (value) {
case 0: return UNSET;
case 1: return SUCCESS;
case 2: return FEATURE_DISABLED;
case 3: return ALREADY_UPLOADED;
case 4: return IMAGE_NOT_FOUND;
case 5: return IMAGE_TOO_BIG;
case 6: return IMAGE_NOT_SERVABLE;
case 7: return PORTAL_NOT_FOUND;
default: return null;
}
}
public static com.google.protobuf.Internal.EnumLiteMap
internalGetValueMap() {
return internalValueMap;
}
private static final com.google.protobuf.Internal.EnumLiteMap<
Result> internalValueMap =
new com.google.protobuf.Internal.EnumLiteMap() {
public Result findValueByNumber(int number) {
return Result.forNumber(number);
}
};
public final com.google.protobuf.Descriptors.EnumValueDescriptor
getValueDescriptor() {
return getDescriptor().getValues().get(ordinal());
}
public final com.google.protobuf.Descriptors.EnumDescriptor
getDescriptorForType() {
return getDescriptor();
}
public static final com.google.protobuf.Descriptors.EnumDescriptor
getDescriptor() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.UploadPoiPhotoByUrlResponse.getDescriptor().getEnumTypes().get(0);
}
private static final Result[] VALUES = values();
public static Result valueOf(
com.google.protobuf.Descriptors.EnumValueDescriptor desc) {
if (desc.getType() != getDescriptor()) {
throw new java.lang.IllegalArgumentException(
"EnumValueDescriptor is not for this type.");
}
if (desc.getIndex() == -1) {
return UNRECOGNIZED;
}
return VALUES[desc.getIndex()];
}
private final int value;
private Result(int value) {
this.value = value;
}
// @@protoc_insertion_point(enum_scope:POGOProtos.Networking.Responses.UploadPoiPhotoByUrlResponse.Result)
}
public static final int STATUS_FIELD_NUMBER = 1;
private int status_;
/**
* .POGOProtos.Networking.Responses.UploadPoiPhotoByUrlResponse.Result status = 1;
*/
public int getStatusValue() {
return status_;
}
/**
* .POGOProtos.Networking.Responses.UploadPoiPhotoByUrlResponse.Result status = 1;
*/
public POGOProtos.Networking.Responses.PlatformClientActionsResponse.UploadPoiPhotoByUrlResponse.Result getStatus() {
@SuppressWarnings("deprecation")
POGOProtos.Networking.Responses.PlatformClientActionsResponse.UploadPoiPhotoByUrlResponse.Result result = POGOProtos.Networking.Responses.PlatformClientActionsResponse.UploadPoiPhotoByUrlResponse.Result.valueOf(status_);
return result == null ? POGOProtos.Networking.Responses.PlatformClientActionsResponse.UploadPoiPhotoByUrlResponse.Result.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 (status_ != POGOProtos.Networking.Responses.PlatformClientActionsResponse.UploadPoiPhotoByUrlResponse.Result.UNSET.getNumber()) {
output.writeEnum(1, status_);
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (status_ != POGOProtos.Networking.Responses.PlatformClientActionsResponse.UploadPoiPhotoByUrlResponse.Result.UNSET.getNumber()) {
size += com.google.protobuf.CodedOutputStream
.computeEnumSize(1, status_);
}
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.Responses.PlatformClientActionsResponse.UploadPoiPhotoByUrlResponse)) {
return super.equals(obj);
}
POGOProtos.Networking.Responses.PlatformClientActionsResponse.UploadPoiPhotoByUrlResponse other = (POGOProtos.Networking.Responses.PlatformClientActionsResponse.UploadPoiPhotoByUrlResponse) obj;
boolean result = true;
result = result && status_ == other.status_;
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) + STATUS_FIELD_NUMBER;
hash = (53 * hash) + status_;
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.UploadPoiPhotoByUrlResponse parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.UploadPoiPhotoByUrlResponse parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.UploadPoiPhotoByUrlResponse parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.UploadPoiPhotoByUrlResponse 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.Responses.PlatformClientActionsResponse.UploadPoiPhotoByUrlResponse parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.UploadPoiPhotoByUrlResponse parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.UploadPoiPhotoByUrlResponse parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.UploadPoiPhotoByUrlResponse 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.Responses.PlatformClientActionsResponse.UploadPoiPhotoByUrlResponse parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.UploadPoiPhotoByUrlResponse 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.Responses.PlatformClientActionsResponse.UploadPoiPhotoByUrlResponse parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.UploadPoiPhotoByUrlResponse 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.Responses.PlatformClientActionsResponse.UploadPoiPhotoByUrlResponse 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.Responses.UploadPoiPhotoByUrlResponse}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:POGOProtos.Networking.Responses.UploadPoiPhotoByUrlResponse)
POGOProtos.Networking.Responses.PlatformClientActionsResponse.UploadPoiPhotoByUrlResponseOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.internal_static_POGOProtos_Networking_Responses_UploadPoiPhotoByUrlResponse_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.internal_static_POGOProtos_Networking_Responses_UploadPoiPhotoByUrlResponse_fieldAccessorTable
.ensureFieldAccessorsInitialized(
POGOProtos.Networking.Responses.PlatformClientActionsResponse.UploadPoiPhotoByUrlResponse.class, POGOProtos.Networking.Responses.PlatformClientActionsResponse.UploadPoiPhotoByUrlResponse.Builder.class);
}
// Construct using POGOProtos.Networking.Responses.PlatformClientActionsResponse.UploadPoiPhotoByUrlResponse.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();
status_ = 0;
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.internal_static_POGOProtos_Networking_Responses_UploadPoiPhotoByUrlResponse_descriptor;
}
@java.lang.Override
public POGOProtos.Networking.Responses.PlatformClientActionsResponse.UploadPoiPhotoByUrlResponse getDefaultInstanceForType() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.UploadPoiPhotoByUrlResponse.getDefaultInstance();
}
@java.lang.Override
public POGOProtos.Networking.Responses.PlatformClientActionsResponse.UploadPoiPhotoByUrlResponse build() {
POGOProtos.Networking.Responses.PlatformClientActionsResponse.UploadPoiPhotoByUrlResponse result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public POGOProtos.Networking.Responses.PlatformClientActionsResponse.UploadPoiPhotoByUrlResponse buildPartial() {
POGOProtos.Networking.Responses.PlatformClientActionsResponse.UploadPoiPhotoByUrlResponse result = new POGOProtos.Networking.Responses.PlatformClientActionsResponse.UploadPoiPhotoByUrlResponse(this);
result.status_ = status_;
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.Responses.PlatformClientActionsResponse.UploadPoiPhotoByUrlResponse) {
return mergeFrom((POGOProtos.Networking.Responses.PlatformClientActionsResponse.UploadPoiPhotoByUrlResponse)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(POGOProtos.Networking.Responses.PlatformClientActionsResponse.UploadPoiPhotoByUrlResponse other) {
if (other == POGOProtos.Networking.Responses.PlatformClientActionsResponse.UploadPoiPhotoByUrlResponse.getDefaultInstance()) return this;
if (other.status_ != 0) {
setStatusValue(other.getStatusValue());
}
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.Responses.PlatformClientActionsResponse.UploadPoiPhotoByUrlResponse parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (POGOProtos.Networking.Responses.PlatformClientActionsResponse.UploadPoiPhotoByUrlResponse) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int status_ = 0;
/**
* .POGOProtos.Networking.Responses.UploadPoiPhotoByUrlResponse.Result status = 1;
*/
public int getStatusValue() {
return status_;
}
/**
* .POGOProtos.Networking.Responses.UploadPoiPhotoByUrlResponse.Result status = 1;
*/
public Builder setStatusValue(int value) {
status_ = value;
onChanged();
return this;
}
/**
* .POGOProtos.Networking.Responses.UploadPoiPhotoByUrlResponse.Result status = 1;
*/
public POGOProtos.Networking.Responses.PlatformClientActionsResponse.UploadPoiPhotoByUrlResponse.Result getStatus() {
@SuppressWarnings("deprecation")
POGOProtos.Networking.Responses.PlatformClientActionsResponse.UploadPoiPhotoByUrlResponse.Result result = POGOProtos.Networking.Responses.PlatformClientActionsResponse.UploadPoiPhotoByUrlResponse.Result.valueOf(status_);
return result == null ? POGOProtos.Networking.Responses.PlatformClientActionsResponse.UploadPoiPhotoByUrlResponse.Result.UNRECOGNIZED : result;
}
/**
* .POGOProtos.Networking.Responses.UploadPoiPhotoByUrlResponse.Result status = 1;
*/
public Builder setStatus(POGOProtos.Networking.Responses.PlatformClientActionsResponse.UploadPoiPhotoByUrlResponse.Result value) {
if (value == null) {
throw new NullPointerException();
}
status_ = value.getNumber();
onChanged();
return this;
}
/**
* .POGOProtos.Networking.Responses.UploadPoiPhotoByUrlResponse.Result status = 1;
*/
public Builder clearStatus() {
status_ = 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.Responses.UploadPoiPhotoByUrlResponse)
}
// @@protoc_insertion_point(class_scope:POGOProtos.Networking.Responses.UploadPoiPhotoByUrlResponse)
private static final POGOProtos.Networking.Responses.PlatformClientActionsResponse.UploadPoiPhotoByUrlResponse DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new POGOProtos.Networking.Responses.PlatformClientActionsResponse.UploadPoiPhotoByUrlResponse();
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.UploadPoiPhotoByUrlResponse getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public UploadPoiPhotoByUrlResponse parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new UploadPoiPhotoByUrlResponse(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.Responses.PlatformClientActionsResponse.UploadPoiPhotoByUrlResponse getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
public interface PingResponseOrBuilder extends
// @@protoc_insertion_point(interface_extends:POGOProtos.Networking.Responses.PingResponse)
com.google.protobuf.MessageOrBuilder {
/**
* string user_info = 1;
*/
java.lang.String getUserInfo();
/**
* string user_info = 1;
*/
com.google.protobuf.ByteString
getUserInfoBytes();
/**
* string server_info = 2;
*/
java.lang.String getServerInfo();
/**
* string server_info = 2;
*/
com.google.protobuf.ByteString
getServerInfoBytes();
/**
* string random_response_bytes = 3;
*/
java.lang.String getRandomResponseBytes();
/**
* string random_response_bytes = 3;
*/
com.google.protobuf.ByteString
getRandomResponseBytesBytes();
/**
* string return_value = 4;
*/
java.lang.String getReturnValue();
/**
* string return_value = 4;
*/
com.google.protobuf.ByteString
getReturnValueBytes();
}
/**
* Protobuf type {@code POGOProtos.Networking.Responses.PingResponse}
*/
public static final class PingResponse extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:POGOProtos.Networking.Responses.PingResponse)
PingResponseOrBuilder {
private static final long serialVersionUID = 0L;
// Use PingResponse.newBuilder() to construct.
private PingResponse(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private PingResponse() {
userInfo_ = "";
serverInfo_ = "";
randomResponseBytes_ = "";
returnValue_ = "";
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private PingResponse(
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();
userInfo_ = s;
break;
}
case 18: {
java.lang.String s = input.readStringRequireUtf8();
serverInfo_ = s;
break;
}
case 26: {
java.lang.String s = input.readStringRequireUtf8();
randomResponseBytes_ = s;
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.Responses.PlatformClientActionsResponse.internal_static_POGOProtos_Networking_Responses_PingResponse_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.internal_static_POGOProtos_Networking_Responses_PingResponse_fieldAccessorTable
.ensureFieldAccessorsInitialized(
POGOProtos.Networking.Responses.PlatformClientActionsResponse.PingResponse.class, POGOProtos.Networking.Responses.PlatformClientActionsResponse.PingResponse.Builder.class);
}
public static final int USER_INFO_FIELD_NUMBER = 1;
private volatile java.lang.Object userInfo_;
/**
* string user_info = 1;
*/
public java.lang.String getUserInfo() {
java.lang.Object ref = userInfo_;
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();
userInfo_ = s;
return s;
}
}
/**
* string user_info = 1;
*/
public com.google.protobuf.ByteString
getUserInfoBytes() {
java.lang.Object ref = userInfo_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
userInfo_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int SERVER_INFO_FIELD_NUMBER = 2;
private volatile java.lang.Object serverInfo_;
/**
* string server_info = 2;
*/
public java.lang.String getServerInfo() {
java.lang.Object ref = serverInfo_;
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();
serverInfo_ = s;
return s;
}
}
/**
* string server_info = 2;
*/
public com.google.protobuf.ByteString
getServerInfoBytes() {
java.lang.Object ref = serverInfo_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
serverInfo_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int RANDOM_RESPONSE_BYTES_FIELD_NUMBER = 3;
private volatile java.lang.Object randomResponseBytes_;
/**
* string random_response_bytes = 3;
*/
public java.lang.String getRandomResponseBytes() {
java.lang.Object ref = randomResponseBytes_;
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();
randomResponseBytes_ = s;
return s;
}
}
/**
* string random_response_bytes = 3;
*/
public com.google.protobuf.ByteString
getRandomResponseBytesBytes() {
java.lang.Object ref = randomResponseBytes_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
randomResponseBytes_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
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 (!getUserInfoBytes().isEmpty()) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 1, userInfo_);
}
if (!getServerInfoBytes().isEmpty()) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 2, serverInfo_);
}
if (!getRandomResponseBytesBytes().isEmpty()) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 3, randomResponseBytes_);
}
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 (!getUserInfoBytes().isEmpty()) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, userInfo_);
}
if (!getServerInfoBytes().isEmpty()) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, serverInfo_);
}
if (!getRandomResponseBytesBytes().isEmpty()) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(3, randomResponseBytes_);
}
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.Responses.PlatformClientActionsResponse.PingResponse)) {
return super.equals(obj);
}
POGOProtos.Networking.Responses.PlatformClientActionsResponse.PingResponse other = (POGOProtos.Networking.Responses.PlatformClientActionsResponse.PingResponse) obj;
boolean result = true;
result = result && getUserInfo()
.equals(other.getUserInfo());
result = result && getServerInfo()
.equals(other.getServerInfo());
result = result && getRandomResponseBytes()
.equals(other.getRandomResponseBytes());
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) + USER_INFO_FIELD_NUMBER;
hash = (53 * hash) + getUserInfo().hashCode();
hash = (37 * hash) + SERVER_INFO_FIELD_NUMBER;
hash = (53 * hash) + getServerInfo().hashCode();
hash = (37 * hash) + RANDOM_RESPONSE_BYTES_FIELD_NUMBER;
hash = (53 * hash) + getRandomResponseBytes().hashCode();
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.Responses.PlatformClientActionsResponse.PingResponse parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.PingResponse parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.PingResponse parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.PingResponse 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.Responses.PlatformClientActionsResponse.PingResponse parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.PingResponse parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.PingResponse parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.PingResponse 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.Responses.PlatformClientActionsResponse.PingResponse parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.PingResponse 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.Responses.PlatformClientActionsResponse.PingResponse parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.PingResponse 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.Responses.PlatformClientActionsResponse.PingResponse 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.Responses.PingResponse}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:POGOProtos.Networking.Responses.PingResponse)
POGOProtos.Networking.Responses.PlatformClientActionsResponse.PingResponseOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.internal_static_POGOProtos_Networking_Responses_PingResponse_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.internal_static_POGOProtos_Networking_Responses_PingResponse_fieldAccessorTable
.ensureFieldAccessorsInitialized(
POGOProtos.Networking.Responses.PlatformClientActionsResponse.PingResponse.class, POGOProtos.Networking.Responses.PlatformClientActionsResponse.PingResponse.Builder.class);
}
// Construct using POGOProtos.Networking.Responses.PlatformClientActionsResponse.PingResponse.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();
userInfo_ = "";
serverInfo_ = "";
randomResponseBytes_ = "";
returnValue_ = "";
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.internal_static_POGOProtos_Networking_Responses_PingResponse_descriptor;
}
@java.lang.Override
public POGOProtos.Networking.Responses.PlatformClientActionsResponse.PingResponse getDefaultInstanceForType() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.PingResponse.getDefaultInstance();
}
@java.lang.Override
public POGOProtos.Networking.Responses.PlatformClientActionsResponse.PingResponse build() {
POGOProtos.Networking.Responses.PlatformClientActionsResponse.PingResponse result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public POGOProtos.Networking.Responses.PlatformClientActionsResponse.PingResponse buildPartial() {
POGOProtos.Networking.Responses.PlatformClientActionsResponse.PingResponse result = new POGOProtos.Networking.Responses.PlatformClientActionsResponse.PingResponse(this);
result.userInfo_ = userInfo_;
result.serverInfo_ = serverInfo_;
result.randomResponseBytes_ = randomResponseBytes_;
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.Responses.PlatformClientActionsResponse.PingResponse) {
return mergeFrom((POGOProtos.Networking.Responses.PlatformClientActionsResponse.PingResponse)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(POGOProtos.Networking.Responses.PlatformClientActionsResponse.PingResponse other) {
if (other == POGOProtos.Networking.Responses.PlatformClientActionsResponse.PingResponse.getDefaultInstance()) return this;
if (!other.getUserInfo().isEmpty()) {
userInfo_ = other.userInfo_;
onChanged();
}
if (!other.getServerInfo().isEmpty()) {
serverInfo_ = other.serverInfo_;
onChanged();
}
if (!other.getRandomResponseBytes().isEmpty()) {
randomResponseBytes_ = other.randomResponseBytes_;
onChanged();
}
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.Responses.PlatformClientActionsResponse.PingResponse parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (POGOProtos.Networking.Responses.PlatformClientActionsResponse.PingResponse) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private java.lang.Object userInfo_ = "";
/**
* string user_info = 1;
*/
public java.lang.String getUserInfo() {
java.lang.Object ref = userInfo_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
userInfo_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* string user_info = 1;
*/
public com.google.protobuf.ByteString
getUserInfoBytes() {
java.lang.Object ref = userInfo_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
userInfo_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* string user_info = 1;
*/
public Builder setUserInfo(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
userInfo_ = value;
onChanged();
return this;
}
/**
* string user_info = 1;
*/
public Builder clearUserInfo() {
userInfo_ = getDefaultInstance().getUserInfo();
onChanged();
return this;
}
/**
* string user_info = 1;
*/
public Builder setUserInfoBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
userInfo_ = value;
onChanged();
return this;
}
private java.lang.Object serverInfo_ = "";
/**
* string server_info = 2;
*/
public java.lang.String getServerInfo() {
java.lang.Object ref = serverInfo_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
serverInfo_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* string server_info = 2;
*/
public com.google.protobuf.ByteString
getServerInfoBytes() {
java.lang.Object ref = serverInfo_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
serverInfo_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* string server_info = 2;
*/
public Builder setServerInfo(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
serverInfo_ = value;
onChanged();
return this;
}
/**
* string server_info = 2;
*/
public Builder clearServerInfo() {
serverInfo_ = getDefaultInstance().getServerInfo();
onChanged();
return this;
}
/**
* string server_info = 2;
*/
public Builder setServerInfoBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
serverInfo_ = value;
onChanged();
return this;
}
private java.lang.Object randomResponseBytes_ = "";
/**
* string random_response_bytes = 3;
*/
public java.lang.String getRandomResponseBytes() {
java.lang.Object ref = randomResponseBytes_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
randomResponseBytes_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* string random_response_bytes = 3;
*/
public com.google.protobuf.ByteString
getRandomResponseBytesBytes() {
java.lang.Object ref = randomResponseBytes_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
randomResponseBytes_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* string random_response_bytes = 3;
*/
public Builder setRandomResponseBytes(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
randomResponseBytes_ = value;
onChanged();
return this;
}
/**
* string random_response_bytes = 3;
*/
public Builder clearRandomResponseBytes() {
randomResponseBytes_ = getDefaultInstance().getRandomResponseBytes();
onChanged();
return this;
}
/**
* string random_response_bytes = 3;
*/
public Builder setRandomResponseBytesBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
randomResponseBytes_ = value;
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.Responses.PingResponse)
}
// @@protoc_insertion_point(class_scope:POGOProtos.Networking.Responses.PingResponse)
private static final POGOProtos.Networking.Responses.PlatformClientActionsResponse.PingResponse DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new POGOProtos.Networking.Responses.PlatformClientActionsResponse.PingResponse();
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.PingResponse getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public PingResponse parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new PingResponse(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.Responses.PlatformClientActionsResponse.PingResponse getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
public interface ReplaceLoginActionResponseOrBuilder extends
// @@protoc_insertion_point(interface_extends:POGOProtos.Networking.Responses.ReplaceLoginActionResponse)
com.google.protobuf.MessageOrBuilder {
/**
* bool success = 1;
*/
boolean getSuccess();
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
java.util.List
getLoginDetailList();
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail getLoginDetail(int index);
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
int getLoginDetailCount();
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
java.util.List extends POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetailOrBuilder>
getLoginDetailOrBuilderList();
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetailOrBuilder getLoginDetailOrBuilder(
int index);
/**
* .POGOProtos.Networking.Responses.ReplaceLoginActionResponse.Status status = 3;
*/
int getStatusValue();
/**
* .POGOProtos.Networking.Responses.ReplaceLoginActionResponse.Status status = 3;
*/
POGOProtos.Networking.Responses.PlatformClientActionsResponse.ReplaceLoginActionResponse.Status getStatus();
}
/**
* Protobuf type {@code POGOProtos.Networking.Responses.ReplaceLoginActionResponse}
*/
public static final class ReplaceLoginActionResponse extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:POGOProtos.Networking.Responses.ReplaceLoginActionResponse)
ReplaceLoginActionResponseOrBuilder {
private static final long serialVersionUID = 0L;
// Use ReplaceLoginActionResponse.newBuilder() to construct.
private ReplaceLoginActionResponse(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private ReplaceLoginActionResponse() {
success_ = false;
loginDetail_ = java.util.Collections.emptyList();
status_ = 0;
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private ReplaceLoginActionResponse(
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: {
success_ = input.readBool();
break;
}
case 18: {
if (!((mutable_bitField0_ & 0x00000002) == 0x00000002)) {
loginDetail_ = new java.util.ArrayList();
mutable_bitField0_ |= 0x00000002;
}
loginDetail_.add(
input.readMessage(POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail.parser(), extensionRegistry));
break;
}
case 24: {
int rawValue = input.readEnum();
status_ = 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_ & 0x00000002) == 0x00000002)) {
loginDetail_ = java.util.Collections.unmodifiableList(loginDetail_);
}
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.internal_static_POGOProtos_Networking_Responses_ReplaceLoginActionResponse_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.internal_static_POGOProtos_Networking_Responses_ReplaceLoginActionResponse_fieldAccessorTable
.ensureFieldAccessorsInitialized(
POGOProtos.Networking.Responses.PlatformClientActionsResponse.ReplaceLoginActionResponse.class, POGOProtos.Networking.Responses.PlatformClientActionsResponse.ReplaceLoginActionResponse.Builder.class);
}
/**
* Protobuf enum {@code POGOProtos.Networking.Responses.ReplaceLoginActionResponse.Status}
*/
public enum Status
implements com.google.protobuf.ProtocolMessageEnum {
/**
* UNSET = 0;
*/
UNSET(0),
/**
* AUTH_FAILURE = 1;
*/
AUTH_FAILURE(1),
/**
* LOGIN_TAKEN = 2;
*/
LOGIN_TAKEN(2),
/**
* LOGIN_ALREADY_HAVE = 3;
*/
LOGIN_ALREADY_HAVE(3),
/**
* LOGIN_NOT_REPLACEABLE = 4;
*/
LOGIN_NOT_REPLACEABLE(4),
UNRECOGNIZED(-1),
;
/**
* UNSET = 0;
*/
public static final int UNSET_VALUE = 0;
/**
* AUTH_FAILURE = 1;
*/
public static final int AUTH_FAILURE_VALUE = 1;
/**
* LOGIN_TAKEN = 2;
*/
public static final int LOGIN_TAKEN_VALUE = 2;
/**
* LOGIN_ALREADY_HAVE = 3;
*/
public static final int LOGIN_ALREADY_HAVE_VALUE = 3;
/**
* LOGIN_NOT_REPLACEABLE = 4;
*/
public static final int LOGIN_NOT_REPLACEABLE_VALUE = 4;
public final int getNumber() {
if (this == UNRECOGNIZED) {
throw new java.lang.IllegalArgumentException(
"Can't get the number of an unknown enum value.");
}
return value;
}
/**
* @deprecated Use {@link #forNumber(int)} instead.
*/
@java.lang.Deprecated
public static Status valueOf(int value) {
return forNumber(value);
}
public static Status forNumber(int value) {
switch (value) {
case 0: return UNSET;
case 1: return AUTH_FAILURE;
case 2: return LOGIN_TAKEN;
case 3: return LOGIN_ALREADY_HAVE;
case 4: return LOGIN_NOT_REPLACEABLE;
default: return null;
}
}
public static com.google.protobuf.Internal.EnumLiteMap
internalGetValueMap() {
return internalValueMap;
}
private static final com.google.protobuf.Internal.EnumLiteMap<
Status> internalValueMap =
new com.google.protobuf.Internal.EnumLiteMap() {
public Status findValueByNumber(int number) {
return Status.forNumber(number);
}
};
public final com.google.protobuf.Descriptors.EnumValueDescriptor
getValueDescriptor() {
return getDescriptor().getValues().get(ordinal());
}
public final com.google.protobuf.Descriptors.EnumDescriptor
getDescriptorForType() {
return getDescriptor();
}
public static final com.google.protobuf.Descriptors.EnumDescriptor
getDescriptor() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.ReplaceLoginActionResponse.getDescriptor().getEnumTypes().get(0);
}
private static final Status[] VALUES = values();
public static Status valueOf(
com.google.protobuf.Descriptors.EnumValueDescriptor desc) {
if (desc.getType() != getDescriptor()) {
throw new java.lang.IllegalArgumentException(
"EnumValueDescriptor is not for this type.");
}
if (desc.getIndex() == -1) {
return UNRECOGNIZED;
}
return VALUES[desc.getIndex()];
}
private final int value;
private Status(int value) {
this.value = value;
}
// @@protoc_insertion_point(enum_scope:POGOProtos.Networking.Responses.ReplaceLoginActionResponse.Status)
}
private int bitField0_;
public static final int SUCCESS_FIELD_NUMBER = 1;
private boolean success_;
/**
* bool success = 1;
*/
public boolean getSuccess() {
return success_;
}
public static final int LOGIN_DETAIL_FIELD_NUMBER = 2;
private java.util.List loginDetail_;
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public java.util.List getLoginDetailList() {
return loginDetail_;
}
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public java.util.List extends POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetailOrBuilder>
getLoginDetailOrBuilderList() {
return loginDetail_;
}
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public int getLoginDetailCount() {
return loginDetail_.size();
}
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail getLoginDetail(int index) {
return loginDetail_.get(index);
}
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetailOrBuilder getLoginDetailOrBuilder(
int index) {
return loginDetail_.get(index);
}
public static final int STATUS_FIELD_NUMBER = 3;
private int status_;
/**
* .POGOProtos.Networking.Responses.ReplaceLoginActionResponse.Status status = 3;
*/
public int getStatusValue() {
return status_;
}
/**
* .POGOProtos.Networking.Responses.ReplaceLoginActionResponse.Status status = 3;
*/
public POGOProtos.Networking.Responses.PlatformClientActionsResponse.ReplaceLoginActionResponse.Status getStatus() {
@SuppressWarnings("deprecation")
POGOProtos.Networking.Responses.PlatformClientActionsResponse.ReplaceLoginActionResponse.Status result = POGOProtos.Networking.Responses.PlatformClientActionsResponse.ReplaceLoginActionResponse.Status.valueOf(status_);
return result == null ? POGOProtos.Networking.Responses.PlatformClientActionsResponse.ReplaceLoginActionResponse.Status.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 (success_ != false) {
output.writeBool(1, success_);
}
for (int i = 0; i < loginDetail_.size(); i++) {
output.writeMessage(2, loginDetail_.get(i));
}
if (status_ != POGOProtos.Networking.Responses.PlatformClientActionsResponse.ReplaceLoginActionResponse.Status.UNSET.getNumber()) {
output.writeEnum(3, status_);
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (success_ != false) {
size += com.google.protobuf.CodedOutputStream
.computeBoolSize(1, success_);
}
for (int i = 0; i < loginDetail_.size(); i++) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(2, loginDetail_.get(i));
}
if (status_ != POGOProtos.Networking.Responses.PlatformClientActionsResponse.ReplaceLoginActionResponse.Status.UNSET.getNumber()) {
size += com.google.protobuf.CodedOutputStream
.computeEnumSize(3, status_);
}
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.Responses.PlatformClientActionsResponse.ReplaceLoginActionResponse)) {
return super.equals(obj);
}
POGOProtos.Networking.Responses.PlatformClientActionsResponse.ReplaceLoginActionResponse other = (POGOProtos.Networking.Responses.PlatformClientActionsResponse.ReplaceLoginActionResponse) obj;
boolean result = true;
result = result && (getSuccess()
== other.getSuccess());
result = result && getLoginDetailList()
.equals(other.getLoginDetailList());
result = result && status_ == other.status_;
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) + SUCCESS_FIELD_NUMBER;
hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(
getSuccess());
if (getLoginDetailCount() > 0) {
hash = (37 * hash) + LOGIN_DETAIL_FIELD_NUMBER;
hash = (53 * hash) + getLoginDetailList().hashCode();
}
hash = (37 * hash) + STATUS_FIELD_NUMBER;
hash = (53 * hash) + status_;
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.ReplaceLoginActionResponse parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.ReplaceLoginActionResponse parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.ReplaceLoginActionResponse parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.ReplaceLoginActionResponse 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.Responses.PlatformClientActionsResponse.ReplaceLoginActionResponse parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.ReplaceLoginActionResponse parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.ReplaceLoginActionResponse parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.ReplaceLoginActionResponse 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.Responses.PlatformClientActionsResponse.ReplaceLoginActionResponse parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.ReplaceLoginActionResponse 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.Responses.PlatformClientActionsResponse.ReplaceLoginActionResponse parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.ReplaceLoginActionResponse 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.Responses.PlatformClientActionsResponse.ReplaceLoginActionResponse 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.Responses.ReplaceLoginActionResponse}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:POGOProtos.Networking.Responses.ReplaceLoginActionResponse)
POGOProtos.Networking.Responses.PlatformClientActionsResponse.ReplaceLoginActionResponseOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.internal_static_POGOProtos_Networking_Responses_ReplaceLoginActionResponse_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.internal_static_POGOProtos_Networking_Responses_ReplaceLoginActionResponse_fieldAccessorTable
.ensureFieldAccessorsInitialized(
POGOProtos.Networking.Responses.PlatformClientActionsResponse.ReplaceLoginActionResponse.class, POGOProtos.Networking.Responses.PlatformClientActionsResponse.ReplaceLoginActionResponse.Builder.class);
}
// Construct using POGOProtos.Networking.Responses.PlatformClientActionsResponse.ReplaceLoginActionResponse.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
getLoginDetailFieldBuilder();
}
}
@java.lang.Override
public Builder clear() {
super.clear();
success_ = false;
if (loginDetailBuilder_ == null) {
loginDetail_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000002);
} else {
loginDetailBuilder_.clear();
}
status_ = 0;
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.internal_static_POGOProtos_Networking_Responses_ReplaceLoginActionResponse_descriptor;
}
@java.lang.Override
public POGOProtos.Networking.Responses.PlatformClientActionsResponse.ReplaceLoginActionResponse getDefaultInstanceForType() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.ReplaceLoginActionResponse.getDefaultInstance();
}
@java.lang.Override
public POGOProtos.Networking.Responses.PlatformClientActionsResponse.ReplaceLoginActionResponse build() {
POGOProtos.Networking.Responses.PlatformClientActionsResponse.ReplaceLoginActionResponse result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public POGOProtos.Networking.Responses.PlatformClientActionsResponse.ReplaceLoginActionResponse buildPartial() {
POGOProtos.Networking.Responses.PlatformClientActionsResponse.ReplaceLoginActionResponse result = new POGOProtos.Networking.Responses.PlatformClientActionsResponse.ReplaceLoginActionResponse(this);
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
result.success_ = success_;
if (loginDetailBuilder_ == null) {
if (((bitField0_ & 0x00000002) == 0x00000002)) {
loginDetail_ = java.util.Collections.unmodifiableList(loginDetail_);
bitField0_ = (bitField0_ & ~0x00000002);
}
result.loginDetail_ = loginDetail_;
} else {
result.loginDetail_ = loginDetailBuilder_.build();
}
result.status_ = status_;
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.Responses.PlatformClientActionsResponse.ReplaceLoginActionResponse) {
return mergeFrom((POGOProtos.Networking.Responses.PlatformClientActionsResponse.ReplaceLoginActionResponse)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(POGOProtos.Networking.Responses.PlatformClientActionsResponse.ReplaceLoginActionResponse other) {
if (other == POGOProtos.Networking.Responses.PlatformClientActionsResponse.ReplaceLoginActionResponse.getDefaultInstance()) return this;
if (other.getSuccess() != false) {
setSuccess(other.getSuccess());
}
if (loginDetailBuilder_ == null) {
if (!other.loginDetail_.isEmpty()) {
if (loginDetail_.isEmpty()) {
loginDetail_ = other.loginDetail_;
bitField0_ = (bitField0_ & ~0x00000002);
} else {
ensureLoginDetailIsMutable();
loginDetail_.addAll(other.loginDetail_);
}
onChanged();
}
} else {
if (!other.loginDetail_.isEmpty()) {
if (loginDetailBuilder_.isEmpty()) {
loginDetailBuilder_.dispose();
loginDetailBuilder_ = null;
loginDetail_ = other.loginDetail_;
bitField0_ = (bitField0_ & ~0x00000002);
loginDetailBuilder_ =
com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ?
getLoginDetailFieldBuilder() : null;
} else {
loginDetailBuilder_.addAllMessages(other.loginDetail_);
}
}
}
if (other.status_ != 0) {
setStatusValue(other.getStatusValue());
}
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.Responses.PlatformClientActionsResponse.ReplaceLoginActionResponse parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (POGOProtos.Networking.Responses.PlatformClientActionsResponse.ReplaceLoginActionResponse) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
private boolean success_ ;
/**
* bool success = 1;
*/
public boolean getSuccess() {
return success_;
}
/**
* bool success = 1;
*/
public Builder setSuccess(boolean value) {
success_ = value;
onChanged();
return this;
}
/**
* bool success = 1;
*/
public Builder clearSuccess() {
success_ = false;
onChanged();
return this;
}
private java.util.List loginDetail_ =
java.util.Collections.emptyList();
private void ensureLoginDetailIsMutable() {
if (!((bitField0_ & 0x00000002) == 0x00000002)) {
loginDetail_ = new java.util.ArrayList(loginDetail_);
bitField0_ |= 0x00000002;
}
}
private com.google.protobuf.RepeatedFieldBuilderV3<
POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail, POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail.Builder, POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetailOrBuilder> loginDetailBuilder_;
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public java.util.List getLoginDetailList() {
if (loginDetailBuilder_ == null) {
return java.util.Collections.unmodifiableList(loginDetail_);
} else {
return loginDetailBuilder_.getMessageList();
}
}
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public int getLoginDetailCount() {
if (loginDetailBuilder_ == null) {
return loginDetail_.size();
} else {
return loginDetailBuilder_.getCount();
}
}
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail getLoginDetail(int index) {
if (loginDetailBuilder_ == null) {
return loginDetail_.get(index);
} else {
return loginDetailBuilder_.getMessage(index);
}
}
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public Builder setLoginDetail(
int index, POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail value) {
if (loginDetailBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureLoginDetailIsMutable();
loginDetail_.set(index, value);
onChanged();
} else {
loginDetailBuilder_.setMessage(index, value);
}
return this;
}
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public Builder setLoginDetail(
int index, POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail.Builder builderForValue) {
if (loginDetailBuilder_ == null) {
ensureLoginDetailIsMutable();
loginDetail_.set(index, builderForValue.build());
onChanged();
} else {
loginDetailBuilder_.setMessage(index, builderForValue.build());
}
return this;
}
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public Builder addLoginDetail(POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail value) {
if (loginDetailBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureLoginDetailIsMutable();
loginDetail_.add(value);
onChanged();
} else {
loginDetailBuilder_.addMessage(value);
}
return this;
}
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public Builder addLoginDetail(
int index, POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail value) {
if (loginDetailBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureLoginDetailIsMutable();
loginDetail_.add(index, value);
onChanged();
} else {
loginDetailBuilder_.addMessage(index, value);
}
return this;
}
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public Builder addLoginDetail(
POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail.Builder builderForValue) {
if (loginDetailBuilder_ == null) {
ensureLoginDetailIsMutable();
loginDetail_.add(builderForValue.build());
onChanged();
} else {
loginDetailBuilder_.addMessage(builderForValue.build());
}
return this;
}
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public Builder addLoginDetail(
int index, POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail.Builder builderForValue) {
if (loginDetailBuilder_ == null) {
ensureLoginDetailIsMutable();
loginDetail_.add(index, builderForValue.build());
onChanged();
} else {
loginDetailBuilder_.addMessage(index, builderForValue.build());
}
return this;
}
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public Builder addAllLoginDetail(
java.lang.Iterable extends POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail> values) {
if (loginDetailBuilder_ == null) {
ensureLoginDetailIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, loginDetail_);
onChanged();
} else {
loginDetailBuilder_.addAllMessages(values);
}
return this;
}
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public Builder clearLoginDetail() {
if (loginDetailBuilder_ == null) {
loginDetail_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000002);
onChanged();
} else {
loginDetailBuilder_.clear();
}
return this;
}
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public Builder removeLoginDetail(int index) {
if (loginDetailBuilder_ == null) {
ensureLoginDetailIsMutable();
loginDetail_.remove(index);
onChanged();
} else {
loginDetailBuilder_.remove(index);
}
return this;
}
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail.Builder getLoginDetailBuilder(
int index) {
return getLoginDetailFieldBuilder().getBuilder(index);
}
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetailOrBuilder getLoginDetailOrBuilder(
int index) {
if (loginDetailBuilder_ == null) {
return loginDetail_.get(index); } else {
return loginDetailBuilder_.getMessageOrBuilder(index);
}
}
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public java.util.List extends POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetailOrBuilder>
getLoginDetailOrBuilderList() {
if (loginDetailBuilder_ != null) {
return loginDetailBuilder_.getMessageOrBuilderList();
} else {
return java.util.Collections.unmodifiableList(loginDetail_);
}
}
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail.Builder addLoginDetailBuilder() {
return getLoginDetailFieldBuilder().addBuilder(
POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail.getDefaultInstance());
}
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail.Builder addLoginDetailBuilder(
int index) {
return getLoginDetailFieldBuilder().addBuilder(
index, POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail.getDefaultInstance());
}
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public java.util.List
getLoginDetailBuilderList() {
return getLoginDetailFieldBuilder().getBuilderList();
}
private com.google.protobuf.RepeatedFieldBuilderV3<
POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail, POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail.Builder, POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetailOrBuilder>
getLoginDetailFieldBuilder() {
if (loginDetailBuilder_ == null) {
loginDetailBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3<
POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail, POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail.Builder, POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetailOrBuilder>(
loginDetail_,
((bitField0_ & 0x00000002) == 0x00000002),
getParentForChildren(),
isClean());
loginDetail_ = null;
}
return loginDetailBuilder_;
}
private int status_ = 0;
/**
* .POGOProtos.Networking.Responses.ReplaceLoginActionResponse.Status status = 3;
*/
public int getStatusValue() {
return status_;
}
/**
* .POGOProtos.Networking.Responses.ReplaceLoginActionResponse.Status status = 3;
*/
public Builder setStatusValue(int value) {
status_ = value;
onChanged();
return this;
}
/**
* .POGOProtos.Networking.Responses.ReplaceLoginActionResponse.Status status = 3;
*/
public POGOProtos.Networking.Responses.PlatformClientActionsResponse.ReplaceLoginActionResponse.Status getStatus() {
@SuppressWarnings("deprecation")
POGOProtos.Networking.Responses.PlatformClientActionsResponse.ReplaceLoginActionResponse.Status result = POGOProtos.Networking.Responses.PlatformClientActionsResponse.ReplaceLoginActionResponse.Status.valueOf(status_);
return result == null ? POGOProtos.Networking.Responses.PlatformClientActionsResponse.ReplaceLoginActionResponse.Status.UNRECOGNIZED : result;
}
/**
* .POGOProtos.Networking.Responses.ReplaceLoginActionResponse.Status status = 3;
*/
public Builder setStatus(POGOProtos.Networking.Responses.PlatformClientActionsResponse.ReplaceLoginActionResponse.Status value) {
if (value == null) {
throw new NullPointerException();
}
status_ = value.getNumber();
onChanged();
return this;
}
/**
* .POGOProtos.Networking.Responses.ReplaceLoginActionResponse.Status status = 3;
*/
public Builder clearStatus() {
status_ = 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.Responses.ReplaceLoginActionResponse)
}
// @@protoc_insertion_point(class_scope:POGOProtos.Networking.Responses.ReplaceLoginActionResponse)
private static final POGOProtos.Networking.Responses.PlatformClientActionsResponse.ReplaceLoginActionResponse DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new POGOProtos.Networking.Responses.PlatformClientActionsResponse.ReplaceLoginActionResponse();
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.ReplaceLoginActionResponse getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public ReplaceLoginActionResponse parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new ReplaceLoginActionResponse(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.Responses.PlatformClientActionsResponse.ReplaceLoginActionResponse getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
public interface ListLoginActionResponseOrBuilder extends
// @@protoc_insertion_point(interface_extends:POGOProtos.Networking.Responses.ListLoginActionResponse)
com.google.protobuf.MessageOrBuilder {
/**
* bool success = 1;
*/
boolean getSuccess();
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
java.util.List
getLoginDetailList();
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail getLoginDetail(int index);
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
int getLoginDetailCount();
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
java.util.List extends POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetailOrBuilder>
getLoginDetailOrBuilderList();
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetailOrBuilder getLoginDetailOrBuilder(
int index);
}
/**
* Protobuf type {@code POGOProtos.Networking.Responses.ListLoginActionResponse}
*/
public static final class ListLoginActionResponse extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:POGOProtos.Networking.Responses.ListLoginActionResponse)
ListLoginActionResponseOrBuilder {
private static final long serialVersionUID = 0L;
// Use ListLoginActionResponse.newBuilder() to construct.
private ListLoginActionResponse(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private ListLoginActionResponse() {
success_ = false;
loginDetail_ = java.util.Collections.emptyList();
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private ListLoginActionResponse(
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: {
success_ = input.readBool();
break;
}
case 18: {
if (!((mutable_bitField0_ & 0x00000002) == 0x00000002)) {
loginDetail_ = new java.util.ArrayList();
mutable_bitField0_ |= 0x00000002;
}
loginDetail_.add(
input.readMessage(POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail.parser(), extensionRegistry));
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_ & 0x00000002) == 0x00000002)) {
loginDetail_ = java.util.Collections.unmodifiableList(loginDetail_);
}
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.internal_static_POGOProtos_Networking_Responses_ListLoginActionResponse_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.internal_static_POGOProtos_Networking_Responses_ListLoginActionResponse_fieldAccessorTable
.ensureFieldAccessorsInitialized(
POGOProtos.Networking.Responses.PlatformClientActionsResponse.ListLoginActionResponse.class, POGOProtos.Networking.Responses.PlatformClientActionsResponse.ListLoginActionResponse.Builder.class);
}
private int bitField0_;
public static final int SUCCESS_FIELD_NUMBER = 1;
private boolean success_;
/**
* bool success = 1;
*/
public boolean getSuccess() {
return success_;
}
public static final int LOGIN_DETAIL_FIELD_NUMBER = 2;
private java.util.List loginDetail_;
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public java.util.List getLoginDetailList() {
return loginDetail_;
}
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public java.util.List extends POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetailOrBuilder>
getLoginDetailOrBuilderList() {
return loginDetail_;
}
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public int getLoginDetailCount() {
return loginDetail_.size();
}
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail getLoginDetail(int index) {
return loginDetail_.get(index);
}
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetailOrBuilder getLoginDetailOrBuilder(
int index) {
return loginDetail_.get(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 {
if (success_ != false) {
output.writeBool(1, success_);
}
for (int i = 0; i < loginDetail_.size(); i++) {
output.writeMessage(2, loginDetail_.get(i));
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (success_ != false) {
size += com.google.protobuf.CodedOutputStream
.computeBoolSize(1, success_);
}
for (int i = 0; i < loginDetail_.size(); i++) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(2, loginDetail_.get(i));
}
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.Responses.PlatformClientActionsResponse.ListLoginActionResponse)) {
return super.equals(obj);
}
POGOProtos.Networking.Responses.PlatformClientActionsResponse.ListLoginActionResponse other = (POGOProtos.Networking.Responses.PlatformClientActionsResponse.ListLoginActionResponse) obj;
boolean result = true;
result = result && (getSuccess()
== other.getSuccess());
result = result && getLoginDetailList()
.equals(other.getLoginDetailList());
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) + SUCCESS_FIELD_NUMBER;
hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(
getSuccess());
if (getLoginDetailCount() > 0) {
hash = (37 * hash) + LOGIN_DETAIL_FIELD_NUMBER;
hash = (53 * hash) + getLoginDetailList().hashCode();
}
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.ListLoginActionResponse parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.ListLoginActionResponse parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.ListLoginActionResponse parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.ListLoginActionResponse 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.Responses.PlatformClientActionsResponse.ListLoginActionResponse parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.ListLoginActionResponse parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.ListLoginActionResponse parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.ListLoginActionResponse 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.Responses.PlatformClientActionsResponse.ListLoginActionResponse parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.ListLoginActionResponse 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.Responses.PlatformClientActionsResponse.ListLoginActionResponse parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.ListLoginActionResponse 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.Responses.PlatformClientActionsResponse.ListLoginActionResponse 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.Responses.ListLoginActionResponse}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:POGOProtos.Networking.Responses.ListLoginActionResponse)
POGOProtos.Networking.Responses.PlatformClientActionsResponse.ListLoginActionResponseOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.internal_static_POGOProtos_Networking_Responses_ListLoginActionResponse_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.internal_static_POGOProtos_Networking_Responses_ListLoginActionResponse_fieldAccessorTable
.ensureFieldAccessorsInitialized(
POGOProtos.Networking.Responses.PlatformClientActionsResponse.ListLoginActionResponse.class, POGOProtos.Networking.Responses.PlatformClientActionsResponse.ListLoginActionResponse.Builder.class);
}
// Construct using POGOProtos.Networking.Responses.PlatformClientActionsResponse.ListLoginActionResponse.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
getLoginDetailFieldBuilder();
}
}
@java.lang.Override
public Builder clear() {
super.clear();
success_ = false;
if (loginDetailBuilder_ == null) {
loginDetail_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000002);
} else {
loginDetailBuilder_.clear();
}
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.internal_static_POGOProtos_Networking_Responses_ListLoginActionResponse_descriptor;
}
@java.lang.Override
public POGOProtos.Networking.Responses.PlatformClientActionsResponse.ListLoginActionResponse getDefaultInstanceForType() {
return POGOProtos.Networking.Responses.PlatformClientActionsResponse.ListLoginActionResponse.getDefaultInstance();
}
@java.lang.Override
public POGOProtos.Networking.Responses.PlatformClientActionsResponse.ListLoginActionResponse build() {
POGOProtos.Networking.Responses.PlatformClientActionsResponse.ListLoginActionResponse result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public POGOProtos.Networking.Responses.PlatformClientActionsResponse.ListLoginActionResponse buildPartial() {
POGOProtos.Networking.Responses.PlatformClientActionsResponse.ListLoginActionResponse result = new POGOProtos.Networking.Responses.PlatformClientActionsResponse.ListLoginActionResponse(this);
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
result.success_ = success_;
if (loginDetailBuilder_ == null) {
if (((bitField0_ & 0x00000002) == 0x00000002)) {
loginDetail_ = java.util.Collections.unmodifiableList(loginDetail_);
bitField0_ = (bitField0_ & ~0x00000002);
}
result.loginDetail_ = loginDetail_;
} else {
result.loginDetail_ = loginDetailBuilder_.build();
}
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.Responses.PlatformClientActionsResponse.ListLoginActionResponse) {
return mergeFrom((POGOProtos.Networking.Responses.PlatformClientActionsResponse.ListLoginActionResponse)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(POGOProtos.Networking.Responses.PlatformClientActionsResponse.ListLoginActionResponse other) {
if (other == POGOProtos.Networking.Responses.PlatformClientActionsResponse.ListLoginActionResponse.getDefaultInstance()) return this;
if (other.getSuccess() != false) {
setSuccess(other.getSuccess());
}
if (loginDetailBuilder_ == null) {
if (!other.loginDetail_.isEmpty()) {
if (loginDetail_.isEmpty()) {
loginDetail_ = other.loginDetail_;
bitField0_ = (bitField0_ & ~0x00000002);
} else {
ensureLoginDetailIsMutable();
loginDetail_.addAll(other.loginDetail_);
}
onChanged();
}
} else {
if (!other.loginDetail_.isEmpty()) {
if (loginDetailBuilder_.isEmpty()) {
loginDetailBuilder_.dispose();
loginDetailBuilder_ = null;
loginDetail_ = other.loginDetail_;
bitField0_ = (bitField0_ & ~0x00000002);
loginDetailBuilder_ =
com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ?
getLoginDetailFieldBuilder() : null;
} else {
loginDetailBuilder_.addAllMessages(other.loginDetail_);
}
}
}
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.Responses.PlatformClientActionsResponse.ListLoginActionResponse parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (POGOProtos.Networking.Responses.PlatformClientActionsResponse.ListLoginActionResponse) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
private boolean success_ ;
/**
* bool success = 1;
*/
public boolean getSuccess() {
return success_;
}
/**
* bool success = 1;
*/
public Builder setSuccess(boolean value) {
success_ = value;
onChanged();
return this;
}
/**
* bool success = 1;
*/
public Builder clearSuccess() {
success_ = false;
onChanged();
return this;
}
private java.util.List loginDetail_ =
java.util.Collections.emptyList();
private void ensureLoginDetailIsMutable() {
if (!((bitField0_ & 0x00000002) == 0x00000002)) {
loginDetail_ = new java.util.ArrayList(loginDetail_);
bitField0_ |= 0x00000002;
}
}
private com.google.protobuf.RepeatedFieldBuilderV3<
POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail, POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail.Builder, POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetailOrBuilder> loginDetailBuilder_;
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public java.util.List getLoginDetailList() {
if (loginDetailBuilder_ == null) {
return java.util.Collections.unmodifiableList(loginDetail_);
} else {
return loginDetailBuilder_.getMessageList();
}
}
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public int getLoginDetailCount() {
if (loginDetailBuilder_ == null) {
return loginDetail_.size();
} else {
return loginDetailBuilder_.getCount();
}
}
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail getLoginDetail(int index) {
if (loginDetailBuilder_ == null) {
return loginDetail_.get(index);
} else {
return loginDetailBuilder_.getMessage(index);
}
}
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public Builder setLoginDetail(
int index, POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail value) {
if (loginDetailBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureLoginDetailIsMutable();
loginDetail_.set(index, value);
onChanged();
} else {
loginDetailBuilder_.setMessage(index, value);
}
return this;
}
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public Builder setLoginDetail(
int index, POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail.Builder builderForValue) {
if (loginDetailBuilder_ == null) {
ensureLoginDetailIsMutable();
loginDetail_.set(index, builderForValue.build());
onChanged();
} else {
loginDetailBuilder_.setMessage(index, builderForValue.build());
}
return this;
}
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public Builder addLoginDetail(POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail value) {
if (loginDetailBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureLoginDetailIsMutable();
loginDetail_.add(value);
onChanged();
} else {
loginDetailBuilder_.addMessage(value);
}
return this;
}
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public Builder addLoginDetail(
int index, POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail value) {
if (loginDetailBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureLoginDetailIsMutable();
loginDetail_.add(index, value);
onChanged();
} else {
loginDetailBuilder_.addMessage(index, value);
}
return this;
}
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public Builder addLoginDetail(
POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail.Builder builderForValue) {
if (loginDetailBuilder_ == null) {
ensureLoginDetailIsMutable();
loginDetail_.add(builderForValue.build());
onChanged();
} else {
loginDetailBuilder_.addMessage(builderForValue.build());
}
return this;
}
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public Builder addLoginDetail(
int index, POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail.Builder builderForValue) {
if (loginDetailBuilder_ == null) {
ensureLoginDetailIsMutable();
loginDetail_.add(index, builderForValue.build());
onChanged();
} else {
loginDetailBuilder_.addMessage(index, builderForValue.build());
}
return this;
}
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public Builder addAllLoginDetail(
java.lang.Iterable extends POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail> values) {
if (loginDetailBuilder_ == null) {
ensureLoginDetailIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, loginDetail_);
onChanged();
} else {
loginDetailBuilder_.addAllMessages(values);
}
return this;
}
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public Builder clearLoginDetail() {
if (loginDetailBuilder_ == null) {
loginDetail_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000002);
onChanged();
} else {
loginDetailBuilder_.clear();
}
return this;
}
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public Builder removeLoginDetail(int index) {
if (loginDetailBuilder_ == null) {
ensureLoginDetailIsMutable();
loginDetail_.remove(index);
onChanged();
} else {
loginDetailBuilder_.remove(index);
}
return this;
}
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail.Builder getLoginDetailBuilder(
int index) {
return getLoginDetailFieldBuilder().getBuilder(index);
}
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetailOrBuilder getLoginDetailOrBuilder(
int index) {
if (loginDetailBuilder_ == null) {
return loginDetail_.get(index); } else {
return loginDetailBuilder_.getMessageOrBuilder(index);
}
}
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public java.util.List extends POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetailOrBuilder>
getLoginDetailOrBuilderList() {
if (loginDetailBuilder_ != null) {
return loginDetailBuilder_.getMessageOrBuilderList();
} else {
return java.util.Collections.unmodifiableList(loginDetail_);
}
}
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail.Builder addLoginDetailBuilder() {
return getLoginDetailFieldBuilder().addBuilder(
POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail.getDefaultInstance());
}
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail.Builder addLoginDetailBuilder(
int index) {
return getLoginDetailFieldBuilder().addBuilder(
index, POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail.getDefaultInstance());
}
/**
* repeated .POGOProtos.Data.Login.LoginDetail login_detail = 2;
*/
public java.util.List
getLoginDetailBuilderList() {
return getLoginDetailFieldBuilder().getBuilderList();
}
private com.google.protobuf.RepeatedFieldBuilderV3<
POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail, POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail.Builder, POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetailOrBuilder>
getLoginDetailFieldBuilder() {
if (loginDetailBuilder_ == null) {
loginDetailBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3<
POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail, POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetail.Builder, POGOProtos.Data.Login.LoginDetailOuterClass.LoginDetailOrBuilder>(
loginDetail_,
((bitField0_ & 0x00000002) == 0x00000002),
getParentForChildren(),
isClean());
loginDetail_ = null;
}
return loginDetailBuilder_;
}
@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.Responses.ListLoginActionResponse)
}
// @@protoc_insertion_point(class_scope:POGOProtos.Networking.Responses.ListLoginActionResponse)
private static final POGOProtos.Networking.Responses.PlatformClientActionsResponse.ListLoginActionResponse DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new POGOProtos.Networking.Responses.PlatformClientActionsResponse.ListLoginActionResponse();
}
public static POGOProtos.Networking.Responses.PlatformClientActionsResponse.ListLoginActionResponse getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public ListLoginActionResponse parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new ListLoginActionResponse(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.Responses.PlatformClientActionsResponse.ListLoginActionResponse getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
private static final com.google.protobuf.Descriptors.Descriptor
internal_static_POGOProtos_Networking_Responses_RegisterPushNotificationResponse_descriptor;
private static final
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internal_static_POGOProtos_Networking_Responses_RegisterPushNotificationResponse_fieldAccessorTable;
private static final com.google.protobuf.Descriptors.Descriptor
internal_static_POGOProtos_Networking_Responses_UpdateNotificationStatusResponse_descriptor;
private static final
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internal_static_POGOProtos_Networking_Responses_UpdateNotificationStatusResponse_fieldAccessorTable;
private static final com.google.protobuf.Descriptors.Descriptor
internal_static_POGOProtos_Networking_Responses_OptOutPushNotificationCategoryResponse_descriptor;
private static final
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internal_static_POGOProtos_Networking_Responses_OptOutPushNotificationCategoryResponse_fieldAccessorTable;
private static final com.google.protobuf.Descriptors.Descriptor
internal_static_POGOProtos_Networking_Responses_RedeemPasscodeResponse_descriptor;
private static final
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internal_static_POGOProtos_Networking_Responses_RedeemPasscodeResponse_fieldAccessorTable;
private static final com.google.protobuf.Descriptors.Descriptor
internal_static_POGOProtos_Networking_Responses_RedeemPasscodeResponse_AcquiredItem_descriptor;
private static final
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internal_static_POGOProtos_Networking_Responses_RedeemPasscodeResponse_AcquiredItem_fieldAccessorTable;
private static final com.google.protobuf.Descriptors.Descriptor
internal_static_POGOProtos_Networking_Responses_AddNewPoiResponse_descriptor;
private static final
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internal_static_POGOProtos_Networking_Responses_AddNewPoiResponse_fieldAccessorTable;
private static final com.google.protobuf.Descriptors.Descriptor
internal_static_POGOProtos_Networking_Responses_ProxySocialActionResponse_descriptor;
private static final
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internal_static_POGOProtos_Networking_Responses_ProxySocialActionResponse_fieldAccessorTable;
private static final com.google.protobuf.Descriptors.Descriptor
internal_static_POGOProtos_Networking_Responses_ProxySocialSideChannelActionResponse_descriptor;
private static final
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internal_static_POGOProtos_Networking_Responses_ProxySocialSideChannelActionResponse_fieldAccessorTable;
private static final com.google.protobuf.Descriptors.Descriptor
internal_static_POGOProtos_Networking_Responses_GetAvailableSubmissionsResponse_descriptor;
private static final
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internal_static_POGOProtos_Networking_Responses_GetAvailableSubmissionsResponse_fieldAccessorTable;
private static final com.google.protobuf.Descriptors.Descriptor
internal_static_POGOProtos_Networking_Responses_PushNotificationRegistryResponse_descriptor;
private static final
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internal_static_POGOProtos_Networking_Responses_PushNotificationRegistryResponse_fieldAccessorTable;
private static final com.google.protobuf.Descriptors.Descriptor
internal_static_POGOProtos_Networking_Responses_AddLoginActionResponse_descriptor;
private static final
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internal_static_POGOProtos_Networking_Responses_AddLoginActionResponse_fieldAccessorTable;
private static final com.google.protobuf.Descriptors.Descriptor
internal_static_POGOProtos_Networking_Responses_RemoveLoginActionResponse_descriptor;
private static final
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internal_static_POGOProtos_Networking_Responses_RemoveLoginActionResponse_fieldAccessorTable;
private static final com.google.protobuf.Descriptors.Descriptor
internal_static_POGOProtos_Networking_Responses_SubmitNewPoiResponse_descriptor;
private static final
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internal_static_POGOProtos_Networking_Responses_SubmitNewPoiResponse_fieldAccessorTable;
private static final com.google.protobuf.Descriptors.Descriptor
internal_static_POGOProtos_Networking_Responses_UploadPoiPhotoByUrlResponse_descriptor;
private static final
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internal_static_POGOProtos_Networking_Responses_UploadPoiPhotoByUrlResponse_fieldAccessorTable;
private static final com.google.protobuf.Descriptors.Descriptor
internal_static_POGOProtos_Networking_Responses_PingResponse_descriptor;
private static final
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internal_static_POGOProtos_Networking_Responses_PingResponse_fieldAccessorTable;
private static final com.google.protobuf.Descriptors.Descriptor
internal_static_POGOProtos_Networking_Responses_ReplaceLoginActionResponse_descriptor;
private static final
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internal_static_POGOProtos_Networking_Responses_ReplaceLoginActionResponse_fieldAccessorTable;
private static final com.google.protobuf.Descriptors.Descriptor
internal_static_POGOProtos_Networking_Responses_ListLoginActionResponse_descriptor;
private static final
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internal_static_POGOProtos_Networking_Responses_ListLoginActionResponse_fieldAccessorTable;
public static com.google.protobuf.Descriptors.FileDescriptor
getDescriptor() {
return descriptor;
}
private static com.google.protobuf.Descriptors.FileDescriptor
descriptor;
static {
java.lang.String[] descriptorData = {
"\nCPOGOProtos/Networking/Responses/Platfo" +
"rmClientActionsResponse.proto\022\037POGOProto" +
"s.Networking.Responses\032\'POGOProtos/Data/" +
"Login/LoginDetail.proto\032(POGOProtos/Enum" +
"s/NotificationState.proto\"\255\001\n RegisterPu" +
"shNotificationResponse\022X\n\006result\030\001 \001(\0162H" +
".POGOProtos.Networking.Responses.Registe" +
"rPushNotificationResponse.Result\"/\n\006Resu" +
"lt\022\t\n\005UNSET\020\000\022\013\n\007SUCCESS\020\001\022\r\n\tNO_CHANGE\020" +
"\002\"\215\001\n UpdateNotificationStatusResponse\022\030" +
"\n\020notification_ids\030\001 \003(\t\022\033\n\023create_times" +
"tamp_ms\030\002 \003(\003\0222\n\005state\030\003 \001(\0162#.POGOProto" +
"s.Enums.NotificationState\"(\n&OptOutPushN" +
"otificationCategoryResponse\"\252\003\n\026RedeemPa" +
"sscodeResponse\022N\n\006result\030\001 \001(\0162>.POGOPro" +
"tos.Networking.Responses.RedeemPasscodeR" +
"esponse.Result\022[\n\racquired_item\030\002 \003(\0132D." +
"POGOProtos.Networking.Responses.RedeemPa" +
"sscodeResponse.AcquiredItem\022\034\n\024acquired_" +
"items_proto\030\003 \001(\014\022\020\n\010passcode\030\004 \001(\t\032+\n\014A" +
"cquiredItem\022\014\n\004item\030\001 \001(\t\022\r\n\005count\030\002 \001(\003" +
"\"\205\001\n\006Result\022\t\n\005UNSET\020\000\022\013\n\007SUCCESS\020\001\022\021\n\rN" +
"OT_AVAILABLE\020\002\022\030\n\024OVER_INVENTORY_LIMIT\020\003" +
"\022\024\n\020ALREADY_REDEEMED\020\004\022 \n\034OVER_PLAYER_RE" +
"DEMPTION_LIMIT\020\005\"\346\001\n\021AddNewPoiResponse\022I" +
"\n\006status\030\001 \001(\01629.POGOProtos.Networking.R" +
"esponses.AddNewPoiResponse.Status\022\017\n\007mes" +
"sage\030\002 \003(\t\"u\n\006Status\022\t\n\005UNSET\020\000\022\013\n\007SUCCE" +
"SS\020\001\022\013\n\007FAILURE\020\002\022\022\n\016INTERNAL_ERROR\020\003\022\037\n" +
"\033TOO_MANY_RECENT_SUBMISSIONS\020\004\022\021\n\rINVALI" +
"D_INPUT\020\005\"\200\003\n\031ProxySocialActionResponse\022" +
"Q\n\006status\030\001 \001(\0162A.POGOProtos.Networking." +
"Responses.ProxySocialActionResponse.Stat" +
"us\022\025\n\rassigned_host\030\002 \001(\t\022\017\n\007payload\030\003 \001" +
"(\014\"\347\001\n\006Status\022\t\n\005UNSET\020\000\022\r\n\tCOMPLETED\020\001\022" +
"\034\n\030COMPLETED_AND_REASSIGNED\020\002\022\024\n\020ACTION_" +
"NOT_FOUND\020\003\022\024\n\020ASSIGNMENT_ERROR\020\004\022\034\n\030PRO" +
"XY_UNAUTHORIZED_ERROR\020\005\022\022\n\016INTERNAL_ERRO" +
"R\020\006\022\017\n\013BAD_REQUEST\020\007\022\021\n\rACCESS_DENIED\020\010\022" +
"\021\n\rTIMEOUT_ERROR\020\t\022\020\n\014RATE_LIMITED\020\n\"\226\003\n" +
"$ProxySocialSideChannelActionResponse\022\\\n" +
"\006status\030\001 \001(\0162L.POGOProtos.Networking.Re" +
"sponses.ProxySocialSideChannelActionResp" +
"onse.Status\022\025\n\rassigned_host\030\002 \001(\t\022\017\n\007pa" +
"yload\030\003 \001(\014\"\347\001\n\006Status\022\t\n\005UNSET\020\000\022\r\n\tCOM" +
"PLETED\020\001\022\034\n\030COMPLETED_AND_REASSIGNED\020\002\022\024" +
"\n\020ACTION_NOT_FOUND\020\003\022\024\n\020ASSIGNMENT_ERROR" +
"\020\004\022\034\n\030PROXY_UNAUTHORIZED_ERROR\020\005\022\022\n\016INTE" +
"RNAL_ERROR\020\006\022\017\n\013BAD_REQUEST\020\007\022\021\n\rACCESS_" +
"DENIED\020\010\022\021\n\rTIMEOUT_ERROR\020\t\022\020\n\014RATE_LIMI" +
"TED\020\n\"\334\001\n\037GetAvailableSubmissionsRespons" +
"e\022\030\n\020submissions_left\030\001 \001(\005\022\030\n\020min_playe" +
"r_level\030\002 \001(\005\022\027\n\017has_valid_email\030\003 \001(\010\022\032" +
"\n\022is_feature_enabled\030\004 \001(\010\022,\n$time_windo" +
"w_for_submissions_limit_ms\030\005 \001(\003\022\"\n\032max_" +
"poi_distance_in_meters\030\006 \001(\005\"\255\001\n PushNot" +
"ificationRegistryResponse\022X\n\006result\030\001 \001(" +
"\0162H.POGOProtos.Networking.Responses.Push" +
"NotificationRegistryResponse.Result\"/\n\006R" +
"esult\022\t\n\005UNSET\020\000\022\013\n\007SUCCESS\020\001\022\r\n\tNO_CHAN" +
"GE\020\002\"\353\001\n\026AddLoginActionResponse\022\017\n\007succe" +
"ss\030\001 \001(\010\0228\n\014login_detail\030\002 \003(\0132\".POGOPro" +
"tos.Data.Login.LoginDetail\022N\n\006status\030\003 \001" +
"(\0162>.POGOProtos.Networking.Responses.Add" +
"LoginActionResponse.Status\"6\n\006Status\022\t\n\005" +
"UNSET\020\000\022\020\n\014AUTH_FAILURE\020\001\022\017\n\013LOGIN_TAKEN" +
"\020\002\"\347\001\n\031RemoveLoginActionResponse\022\017\n\007succ" +
"ess\030\001 \001(\010\0228\n\014login_detail\030\002 \003(\0132\".POGOPr" +
"otos.Data.Login.LoginDetail\022Q\n\006status\030\003 " +
"\001(\0162A.POGOProtos.Networking.Responses.Re" +
"moveLoginActionResponse.Status\",\n\006Status" +
"\022\t\n\005UNSET\020\000\022\027\n\023LOGIN_NOT_REMOVABLE\020\001\"\372\001\n" +
"\024SubmitNewPoiResponse\022L\n\006status\030\001 \001(\0162<." +
"POGOProtos.Networking.Responses.SubmitNe" +
"wPoiResponse.Status\"\223\001\n\006Status\022\t\n\005UNSET\020" +
"\000\022\013\n\007SUCCESS\020\001\022\013\n\007FAILURE\020\002\022\022\n\016INTERNAL_" +
"ERROR\020\003\022\037\n\033TOO_MANY_RECENT_SUBMISSIONS\020\004" +
"\022\021\n\rINVALID_INPUT\020\005\022\t\n\005MINOR\020\006\022\021\n\rNOT_AV" +
"AILABLE\020\007\"\227\002\n\033UploadPoiPhotoByUrlRespons" +
"e\022S\n\006status\030\001 \001(\0162C.POGOProtos.Networkin" +
"g.Responses.UploadPoiPhotoByUrlResponse." +
"Result\"\242\001\n\006Result\022\t\n\005UNSET\020\000\022\013\n\007SUCCESS\020" +
"\001\022\024\n\020FEATURE_DISABLED\020\002\022\024\n\020ALREADY_UPLOA" +
"DED\020\003\022\023\n\017IMAGE_NOT_FOUND\020\004\022\021\n\rIMAGE_TOO_" +
"BIG\020\005\022\026\n\022IMAGE_NOT_SERVABLE\020\006\022\024\n\020PORTAL_" +
"NOT_FOUND\020\007\"k\n\014PingResponse\022\021\n\tuser_info" +
"\030\001 \001(\t\022\023\n\013server_info\030\002 \001(\t\022\035\n\025random_re" +
"sponse_bytes\030\003 \001(\t\022\024\n\014return_value\030\004 \001(\t" +
"\"\246\002\n\032ReplaceLoginActionResponse\022\017\n\007succe" +
"ss\030\001 \001(\010\0228\n\014login_detail\030\002 \003(\0132\".POGOPro" +
"tos.Data.Login.LoginDetail\022R\n\006status\030\003 \001" +
"(\0162B.POGOProtos.Networking.Responses.Rep" +
"laceLoginActionResponse.Status\"i\n\006Status" +
"\022\t\n\005UNSET\020\000\022\020\n\014AUTH_FAILURE\020\001\022\017\n\013LOGIN_T" +
"AKEN\020\002\022\026\n\022LOGIN_ALREADY_HAVE\020\003\022\031\n\025LOGIN_" +
"NOT_REPLACEABLE\020\004\"d\n\027ListLoginActionResp" +
"onse\022\017\n\007success\030\001 \001(\010\0228\n\014login_detail\030\002 " +
"\003(\0132\".POGOProtos.Data.Login.LoginDetailb" +
"\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.Login.LoginDetailOuterClass.getDescriptor(),
POGOProtos.Enums.NotificationStateOuterClass.getDescriptor(),
}, assigner);
internal_static_POGOProtos_Networking_Responses_RegisterPushNotificationResponse_descriptor =
getDescriptor().getMessageTypes().get(0);
internal_static_POGOProtos_Networking_Responses_RegisterPushNotificationResponse_fieldAccessorTable = new
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
internal_static_POGOProtos_Networking_Responses_RegisterPushNotificationResponse_descriptor,
new java.lang.String[] { "Result", });
internal_static_POGOProtos_Networking_Responses_UpdateNotificationStatusResponse_descriptor =
getDescriptor().getMessageTypes().get(1);
internal_static_POGOProtos_Networking_Responses_UpdateNotificationStatusResponse_fieldAccessorTable = new
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
internal_static_POGOProtos_Networking_Responses_UpdateNotificationStatusResponse_descriptor,
new java.lang.String[] { "NotificationIds", "CreateTimestampMs", "State", });
internal_static_POGOProtos_Networking_Responses_OptOutPushNotificationCategoryResponse_descriptor =
getDescriptor().getMessageTypes().get(2);
internal_static_POGOProtos_Networking_Responses_OptOutPushNotificationCategoryResponse_fieldAccessorTable = new
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
internal_static_POGOProtos_Networking_Responses_OptOutPushNotificationCategoryResponse_descriptor,
new java.lang.String[] { });
internal_static_POGOProtos_Networking_Responses_RedeemPasscodeResponse_descriptor =
getDescriptor().getMessageTypes().get(3);
internal_static_POGOProtos_Networking_Responses_RedeemPasscodeResponse_fieldAccessorTable = new
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
internal_static_POGOProtos_Networking_Responses_RedeemPasscodeResponse_descriptor,
new java.lang.String[] { "Result", "AcquiredItem", "AcquiredItemsProto", "Passcode", });
internal_static_POGOProtos_Networking_Responses_RedeemPasscodeResponse_AcquiredItem_descriptor =
internal_static_POGOProtos_Networking_Responses_RedeemPasscodeResponse_descriptor.getNestedTypes().get(0);
internal_static_POGOProtos_Networking_Responses_RedeemPasscodeResponse_AcquiredItem_fieldAccessorTable = new
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
internal_static_POGOProtos_Networking_Responses_RedeemPasscodeResponse_AcquiredItem_descriptor,
new java.lang.String[] { "Item", "Count", });
internal_static_POGOProtos_Networking_Responses_AddNewPoiResponse_descriptor =
getDescriptor().getMessageTypes().get(4);
internal_static_POGOProtos_Networking_Responses_AddNewPoiResponse_fieldAccessorTable = new
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
internal_static_POGOProtos_Networking_Responses_AddNewPoiResponse_descriptor,
new java.lang.String[] { "Status", "Message", });
internal_static_POGOProtos_Networking_Responses_ProxySocialActionResponse_descriptor =
getDescriptor().getMessageTypes().get(5);
internal_static_POGOProtos_Networking_Responses_ProxySocialActionResponse_fieldAccessorTable = new
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
internal_static_POGOProtos_Networking_Responses_ProxySocialActionResponse_descriptor,
new java.lang.String[] { "Status", "AssignedHost", "Payload", });
internal_static_POGOProtos_Networking_Responses_ProxySocialSideChannelActionResponse_descriptor =
getDescriptor().getMessageTypes().get(6);
internal_static_POGOProtos_Networking_Responses_ProxySocialSideChannelActionResponse_fieldAccessorTable = new
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
internal_static_POGOProtos_Networking_Responses_ProxySocialSideChannelActionResponse_descriptor,
new java.lang.String[] { "Status", "AssignedHost", "Payload", });
internal_static_POGOProtos_Networking_Responses_GetAvailableSubmissionsResponse_descriptor =
getDescriptor().getMessageTypes().get(7);
internal_static_POGOProtos_Networking_Responses_GetAvailableSubmissionsResponse_fieldAccessorTable = new
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
internal_static_POGOProtos_Networking_Responses_GetAvailableSubmissionsResponse_descriptor,
new java.lang.String[] { "SubmissionsLeft", "MinPlayerLevel", "HasValidEmail", "IsFeatureEnabled", "TimeWindowForSubmissionsLimitMs", "MaxPoiDistanceInMeters", });
internal_static_POGOProtos_Networking_Responses_PushNotificationRegistryResponse_descriptor =
getDescriptor().getMessageTypes().get(8);
internal_static_POGOProtos_Networking_Responses_PushNotificationRegistryResponse_fieldAccessorTable = new
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
internal_static_POGOProtos_Networking_Responses_PushNotificationRegistryResponse_descriptor,
new java.lang.String[] { "Result", });
internal_static_POGOProtos_Networking_Responses_AddLoginActionResponse_descriptor =
getDescriptor().getMessageTypes().get(9);
internal_static_POGOProtos_Networking_Responses_AddLoginActionResponse_fieldAccessorTable = new
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
internal_static_POGOProtos_Networking_Responses_AddLoginActionResponse_descriptor,
new java.lang.String[] { "Success", "LoginDetail", "Status", });
internal_static_POGOProtos_Networking_Responses_RemoveLoginActionResponse_descriptor =
getDescriptor().getMessageTypes().get(10);
internal_static_POGOProtos_Networking_Responses_RemoveLoginActionResponse_fieldAccessorTable = new
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
internal_static_POGOProtos_Networking_Responses_RemoveLoginActionResponse_descriptor,
new java.lang.String[] { "Success", "LoginDetail", "Status", });
internal_static_POGOProtos_Networking_Responses_SubmitNewPoiResponse_descriptor =
getDescriptor().getMessageTypes().get(11);
internal_static_POGOProtos_Networking_Responses_SubmitNewPoiResponse_fieldAccessorTable = new
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
internal_static_POGOProtos_Networking_Responses_SubmitNewPoiResponse_descriptor,
new java.lang.String[] { "Status", });
internal_static_POGOProtos_Networking_Responses_UploadPoiPhotoByUrlResponse_descriptor =
getDescriptor().getMessageTypes().get(12);
internal_static_POGOProtos_Networking_Responses_UploadPoiPhotoByUrlResponse_fieldAccessorTable = new
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
internal_static_POGOProtos_Networking_Responses_UploadPoiPhotoByUrlResponse_descriptor,
new java.lang.String[] { "Status", });
internal_static_POGOProtos_Networking_Responses_PingResponse_descriptor =
getDescriptor().getMessageTypes().get(13);
internal_static_POGOProtos_Networking_Responses_PingResponse_fieldAccessorTable = new
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
internal_static_POGOProtos_Networking_Responses_PingResponse_descriptor,
new java.lang.String[] { "UserInfo", "ServerInfo", "RandomResponseBytes", "ReturnValue", });
internal_static_POGOProtos_Networking_Responses_ReplaceLoginActionResponse_descriptor =
getDescriptor().getMessageTypes().get(14);
internal_static_POGOProtos_Networking_Responses_ReplaceLoginActionResponse_fieldAccessorTable = new
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
internal_static_POGOProtos_Networking_Responses_ReplaceLoginActionResponse_descriptor,
new java.lang.String[] { "Success", "LoginDetail", "Status", });
internal_static_POGOProtos_Networking_Responses_ListLoginActionResponse_descriptor =
getDescriptor().getMessageTypes().get(15);
internal_static_POGOProtos_Networking_Responses_ListLoginActionResponse_fieldAccessorTable = new
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
internal_static_POGOProtos_Networking_Responses_ListLoginActionResponse_descriptor,
new java.lang.String[] { "Success", "LoginDetail", });
POGOProtos.Data.Login.LoginDetailOuterClass.getDescriptor();
POGOProtos.Enums.NotificationStateOuterClass.getDescriptor();
}
// @@protoc_insertion_point(outer_class_scope)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy