WindChat/windchat-protobuf/src/main/java/com/akaxin/proto/plugin/HaiUserPhoneProto.java

1392 lines
47 KiB
Java
Executable File

// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: plugin/hai_user_phone.proto
package com.akaxin.proto.plugin;
public final class HaiUserPhoneProto {
private HaiUserPhoneProto() {}
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 HaiUserPhoneRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:plugin.HaiUserPhoneRequest)
com.google.protobuf.MessageOrBuilder {
/**
* <pre>
*用户的站点ID
* </pre>
*
* <code>string site_user_id = 1;</code>
*/
java.lang.String getSiteUserId();
/**
* <pre>
*用户的站点ID
* </pre>
*
* <code>string site_user_id = 1;</code>
*/
com.google.protobuf.ByteString
getSiteUserIdBytes();
}
/**
* <pre>
**
*!! 这个文件需要重命名 !!
*获取用户手机号
*----
*只有实名站点,才能获取此数据。
*接口名
*----
* /hai/user/phone
*错误码
*----
* success
* error.alert
* </pre>
*
* Protobuf type {@code plugin.HaiUserPhoneRequest}
*/
public static final class HaiUserPhoneRequest extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:plugin.HaiUserPhoneRequest)
HaiUserPhoneRequestOrBuilder {
private static final long serialVersionUID = 0L;
// Use HaiUserPhoneRequest.newBuilder() to construct.
private HaiUserPhoneRequest(com.google.protobuf.GeneratedMessageV3.Builder<?> builder) {
super(builder);
}
private HaiUserPhoneRequest() {
siteUserId_ = "";
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private HaiUserPhoneRequest(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
this();
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;
default: {
if (!parseUnknownFieldProto3(
input, unknownFields, extensionRegistry, tag)) {
done = true;
}
break;
}
case 10: {
java.lang.String s = input.readStringRequireUtf8();
siteUserId_ = s;
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 com.akaxin.proto.plugin.HaiUserPhoneProto.internal_static_plugin_HaiUserPhoneRequest_descriptor;
}
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.akaxin.proto.plugin.HaiUserPhoneProto.internal_static_plugin_HaiUserPhoneRequest_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.akaxin.proto.plugin.HaiUserPhoneProto.HaiUserPhoneRequest.class, com.akaxin.proto.plugin.HaiUserPhoneProto.HaiUserPhoneRequest.Builder.class);
}
public static final int SITE_USER_ID_FIELD_NUMBER = 1;
private volatile java.lang.Object siteUserId_;
/**
* <pre>
*用户的站点ID
* </pre>
*
* <code>string site_user_id = 1;</code>
*/
public java.lang.String getSiteUserId() {
java.lang.Object ref = siteUserId_;
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();
siteUserId_ = s;
return s;
}
}
/**
* <pre>
*用户的站点ID
* </pre>
*
* <code>string site_user_id = 1;</code>
*/
public com.google.protobuf.ByteString
getSiteUserIdBytes() {
java.lang.Object ref = siteUserId_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
siteUserId_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
private byte memoizedIsInitialized = -1;
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
if (!getSiteUserIdBytes().isEmpty()) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 1, siteUserId_);
}
unknownFields.writeTo(output);
}
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (!getSiteUserIdBytes().isEmpty()) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, siteUserId_);
}
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 com.akaxin.proto.plugin.HaiUserPhoneProto.HaiUserPhoneRequest)) {
return super.equals(obj);
}
com.akaxin.proto.plugin.HaiUserPhoneProto.HaiUserPhoneRequest other = (com.akaxin.proto.plugin.HaiUserPhoneProto.HaiUserPhoneRequest) obj;
boolean result = true;
result = result && getSiteUserId()
.equals(other.getSiteUserId());
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) + SITE_USER_ID_FIELD_NUMBER;
hash = (53 * hash) + getSiteUserId().hashCode();
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.akaxin.proto.plugin.HaiUserPhoneProto.HaiUserPhoneRequest parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.akaxin.proto.plugin.HaiUserPhoneProto.HaiUserPhoneRequest parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.akaxin.proto.plugin.HaiUserPhoneProto.HaiUserPhoneRequest parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.akaxin.proto.plugin.HaiUserPhoneProto.HaiUserPhoneRequest parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.akaxin.proto.plugin.HaiUserPhoneProto.HaiUserPhoneRequest parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.akaxin.proto.plugin.HaiUserPhoneProto.HaiUserPhoneRequest parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.akaxin.proto.plugin.HaiUserPhoneProto.HaiUserPhoneRequest parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.akaxin.proto.plugin.HaiUserPhoneProto.HaiUserPhoneRequest 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 com.akaxin.proto.plugin.HaiUserPhoneProto.HaiUserPhoneRequest parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static com.akaxin.proto.plugin.HaiUserPhoneProto.HaiUserPhoneRequest 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 com.akaxin.proto.plugin.HaiUserPhoneProto.HaiUserPhoneRequest parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.akaxin.proto.plugin.HaiUserPhoneProto.HaiUserPhoneRequest parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder() {
return DEFAULT_INSTANCE.toBuilder();
}
public static Builder newBuilder(com.akaxin.proto.plugin.HaiUserPhoneProto.HaiUserPhoneRequest prototype) {
return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
}
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;
}
/**
* <pre>
**
*!! 这个文件需要重命名 !!
*获取用户手机号
*----
*只有实名站点,才能获取此数据。
*接口名
*----
* /hai/user/phone
*错误码
*----
* success
* error.alert
* </pre>
*
* Protobuf type {@code plugin.HaiUserPhoneRequest}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder<Builder> implements
// @@protoc_insertion_point(builder_implements:plugin.HaiUserPhoneRequest)
com.akaxin.proto.plugin.HaiUserPhoneProto.HaiUserPhoneRequestOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.akaxin.proto.plugin.HaiUserPhoneProto.internal_static_plugin_HaiUserPhoneRequest_descriptor;
}
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.akaxin.proto.plugin.HaiUserPhoneProto.internal_static_plugin_HaiUserPhoneRequest_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.akaxin.proto.plugin.HaiUserPhoneProto.HaiUserPhoneRequest.class, com.akaxin.proto.plugin.HaiUserPhoneProto.HaiUserPhoneRequest.Builder.class);
}
// Construct using com.akaxin.proto.plugin.HaiUserPhoneProto.HaiUserPhoneRequest.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
}
}
public Builder clear() {
super.clear();
siteUserId_ = "";
return this;
}
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return com.akaxin.proto.plugin.HaiUserPhoneProto.internal_static_plugin_HaiUserPhoneRequest_descriptor;
}
public com.akaxin.proto.plugin.HaiUserPhoneProto.HaiUserPhoneRequest getDefaultInstanceForType() {
return com.akaxin.proto.plugin.HaiUserPhoneProto.HaiUserPhoneRequest.getDefaultInstance();
}
public com.akaxin.proto.plugin.HaiUserPhoneProto.HaiUserPhoneRequest build() {
com.akaxin.proto.plugin.HaiUserPhoneProto.HaiUserPhoneRequest result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
public com.akaxin.proto.plugin.HaiUserPhoneProto.HaiUserPhoneRequest buildPartial() {
com.akaxin.proto.plugin.HaiUserPhoneProto.HaiUserPhoneRequest result = new com.akaxin.proto.plugin.HaiUserPhoneProto.HaiUserPhoneRequest(this);
result.siteUserId_ = siteUserId_;
onBuilt();
return result;
}
public Builder clone() {
return (Builder) super.clone();
}
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.setField(field, value);
}
public Builder clearField(
com.google.protobuf.Descriptors.FieldDescriptor field) {
return (Builder) super.clearField(field);
}
public Builder clearOneof(
com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return (Builder) super.clearOneof(oneof);
}
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index, java.lang.Object value) {
return (Builder) super.setRepeatedField(field, index, value);
}
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.addRepeatedField(field, value);
}
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof com.akaxin.proto.plugin.HaiUserPhoneProto.HaiUserPhoneRequest) {
return mergeFrom((com.akaxin.proto.plugin.HaiUserPhoneProto.HaiUserPhoneRequest)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.akaxin.proto.plugin.HaiUserPhoneProto.HaiUserPhoneRequest other) {
if (other == com.akaxin.proto.plugin.HaiUserPhoneProto.HaiUserPhoneRequest.getDefaultInstance()) return this;
if (!other.getSiteUserId().isEmpty()) {
siteUserId_ = other.siteUserId_;
onChanged();
}
this.mergeUnknownFields(other.unknownFields);
onChanged();
return this;
}
public final boolean isInitialized() {
return true;
}
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
com.akaxin.proto.plugin.HaiUserPhoneProto.HaiUserPhoneRequest parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (com.akaxin.proto.plugin.HaiUserPhoneProto.HaiUserPhoneRequest) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private java.lang.Object siteUserId_ = "";
/**
* <pre>
*用户的站点ID
* </pre>
*
* <code>string site_user_id = 1;</code>
*/
public java.lang.String getSiteUserId() {
java.lang.Object ref = siteUserId_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
siteUserId_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* <pre>
*用户的站点ID
* </pre>
*
* <code>string site_user_id = 1;</code>
*/
public com.google.protobuf.ByteString
getSiteUserIdBytes() {
java.lang.Object ref = siteUserId_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
siteUserId_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* <pre>
*用户的站点ID
* </pre>
*
* <code>string site_user_id = 1;</code>
*/
public Builder setSiteUserId(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
siteUserId_ = value;
onChanged();
return this;
}
/**
* <pre>
*用户的站点ID
* </pre>
*
* <code>string site_user_id = 1;</code>
*/
public Builder clearSiteUserId() {
siteUserId_ = getDefaultInstance().getSiteUserId();
onChanged();
return this;
}
/**
* <pre>
*用户的站点ID
* </pre>
*
* <code>string site_user_id = 1;</code>
*/
public Builder setSiteUserIdBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
siteUserId_ = value;
onChanged();
return this;
}
public final Builder setUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.setUnknownFieldsProto3(unknownFields);
}
public final Builder mergeUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.mergeUnknownFields(unknownFields);
}
// @@protoc_insertion_point(builder_scope:plugin.HaiUserPhoneRequest)
}
// @@protoc_insertion_point(class_scope:plugin.HaiUserPhoneRequest)
private static final com.akaxin.proto.plugin.HaiUserPhoneProto.HaiUserPhoneRequest DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.akaxin.proto.plugin.HaiUserPhoneProto.HaiUserPhoneRequest();
}
public static com.akaxin.proto.plugin.HaiUserPhoneProto.HaiUserPhoneRequest getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser<HaiUserPhoneRequest>
PARSER = new com.google.protobuf.AbstractParser<HaiUserPhoneRequest>() {
public HaiUserPhoneRequest parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new HaiUserPhoneRequest(input, extensionRegistry);
}
};
public static com.google.protobuf.Parser<HaiUserPhoneRequest> parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser<HaiUserPhoneRequest> getParserForType() {
return PARSER;
}
public com.akaxin.proto.plugin.HaiUserPhoneProto.HaiUserPhoneRequest getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
public interface HaiUserPhoneResponseOrBuilder extends
// @@protoc_insertion_point(interface_extends:plugin.HaiUserPhoneResponse)
com.google.protobuf.MessageOrBuilder {
/**
* <pre>
*国际区号+86
* </pre>
*
* <code>string country_code = 1;</code>
*/
java.lang.String getCountryCode();
/**
* <pre>
*国际区号+86
* </pre>
*
* <code>string country_code = 1;</code>
*/
com.google.protobuf.ByteString
getCountryCodeBytes();
/**
* <pre>
*手机号
* </pre>
*
* <code>string phone_id = 2;</code>
*/
java.lang.String getPhoneId();
/**
* <pre>
*手机号
* </pre>
*
* <code>string phone_id = 2;</code>
*/
com.google.protobuf.ByteString
getPhoneIdBytes();
}
/**
* Protobuf type {@code plugin.HaiUserPhoneResponse}
*/
public static final class HaiUserPhoneResponse extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:plugin.HaiUserPhoneResponse)
HaiUserPhoneResponseOrBuilder {
private static final long serialVersionUID = 0L;
// Use HaiUserPhoneResponse.newBuilder() to construct.
private HaiUserPhoneResponse(com.google.protobuf.GeneratedMessageV3.Builder<?> builder) {
super(builder);
}
private HaiUserPhoneResponse() {
countryCode_ = "";
phoneId_ = "";
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private HaiUserPhoneResponse(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
this();
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;
default: {
if (!parseUnknownFieldProto3(
input, unknownFields, extensionRegistry, tag)) {
done = true;
}
break;
}
case 10: {
java.lang.String s = input.readStringRequireUtf8();
countryCode_ = s;
break;
}
case 18: {
java.lang.String s = input.readStringRequireUtf8();
phoneId_ = s;
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 com.akaxin.proto.plugin.HaiUserPhoneProto.internal_static_plugin_HaiUserPhoneResponse_descriptor;
}
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.akaxin.proto.plugin.HaiUserPhoneProto.internal_static_plugin_HaiUserPhoneResponse_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.akaxin.proto.plugin.HaiUserPhoneProto.HaiUserPhoneResponse.class, com.akaxin.proto.plugin.HaiUserPhoneProto.HaiUserPhoneResponse.Builder.class);
}
public static final int COUNTRY_CODE_FIELD_NUMBER = 1;
private volatile java.lang.Object countryCode_;
/**
* <pre>
*国际区号+86
* </pre>
*
* <code>string country_code = 1;</code>
*/
public java.lang.String getCountryCode() {
java.lang.Object ref = countryCode_;
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();
countryCode_ = s;
return s;
}
}
/**
* <pre>
*国际区号+86
* </pre>
*
* <code>string country_code = 1;</code>
*/
public com.google.protobuf.ByteString
getCountryCodeBytes() {
java.lang.Object ref = countryCode_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
countryCode_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int PHONE_ID_FIELD_NUMBER = 2;
private volatile java.lang.Object phoneId_;
/**
* <pre>
*手机号
* </pre>
*
* <code>string phone_id = 2;</code>
*/
public java.lang.String getPhoneId() {
java.lang.Object ref = phoneId_;
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();
phoneId_ = s;
return s;
}
}
/**
* <pre>
*手机号
* </pre>
*
* <code>string phone_id = 2;</code>
*/
public com.google.protobuf.ByteString
getPhoneIdBytes() {
java.lang.Object ref = phoneId_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
phoneId_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
private byte memoizedIsInitialized = -1;
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
if (!getCountryCodeBytes().isEmpty()) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 1, countryCode_);
}
if (!getPhoneIdBytes().isEmpty()) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 2, phoneId_);
}
unknownFields.writeTo(output);
}
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (!getCountryCodeBytes().isEmpty()) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, countryCode_);
}
if (!getPhoneIdBytes().isEmpty()) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, phoneId_);
}
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 com.akaxin.proto.plugin.HaiUserPhoneProto.HaiUserPhoneResponse)) {
return super.equals(obj);
}
com.akaxin.proto.plugin.HaiUserPhoneProto.HaiUserPhoneResponse other = (com.akaxin.proto.plugin.HaiUserPhoneProto.HaiUserPhoneResponse) obj;
boolean result = true;
result = result && getCountryCode()
.equals(other.getCountryCode());
result = result && getPhoneId()
.equals(other.getPhoneId());
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) + COUNTRY_CODE_FIELD_NUMBER;
hash = (53 * hash) + getCountryCode().hashCode();
hash = (37 * hash) + PHONE_ID_FIELD_NUMBER;
hash = (53 * hash) + getPhoneId().hashCode();
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.akaxin.proto.plugin.HaiUserPhoneProto.HaiUserPhoneResponse parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.akaxin.proto.plugin.HaiUserPhoneProto.HaiUserPhoneResponse parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.akaxin.proto.plugin.HaiUserPhoneProto.HaiUserPhoneResponse parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.akaxin.proto.plugin.HaiUserPhoneProto.HaiUserPhoneResponse parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.akaxin.proto.plugin.HaiUserPhoneProto.HaiUserPhoneResponse parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.akaxin.proto.plugin.HaiUserPhoneProto.HaiUserPhoneResponse parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.akaxin.proto.plugin.HaiUserPhoneProto.HaiUserPhoneResponse parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.akaxin.proto.plugin.HaiUserPhoneProto.HaiUserPhoneResponse 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 com.akaxin.proto.plugin.HaiUserPhoneProto.HaiUserPhoneResponse parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static com.akaxin.proto.plugin.HaiUserPhoneProto.HaiUserPhoneResponse 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 com.akaxin.proto.plugin.HaiUserPhoneProto.HaiUserPhoneResponse parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.akaxin.proto.plugin.HaiUserPhoneProto.HaiUserPhoneResponse parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder() {
return DEFAULT_INSTANCE.toBuilder();
}
public static Builder newBuilder(com.akaxin.proto.plugin.HaiUserPhoneProto.HaiUserPhoneResponse prototype) {
return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
}
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 plugin.HaiUserPhoneResponse}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder<Builder> implements
// @@protoc_insertion_point(builder_implements:plugin.HaiUserPhoneResponse)
com.akaxin.proto.plugin.HaiUserPhoneProto.HaiUserPhoneResponseOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.akaxin.proto.plugin.HaiUserPhoneProto.internal_static_plugin_HaiUserPhoneResponse_descriptor;
}
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.akaxin.proto.plugin.HaiUserPhoneProto.internal_static_plugin_HaiUserPhoneResponse_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.akaxin.proto.plugin.HaiUserPhoneProto.HaiUserPhoneResponse.class, com.akaxin.proto.plugin.HaiUserPhoneProto.HaiUserPhoneResponse.Builder.class);
}
// Construct using com.akaxin.proto.plugin.HaiUserPhoneProto.HaiUserPhoneResponse.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
}
}
public Builder clear() {
super.clear();
countryCode_ = "";
phoneId_ = "";
return this;
}
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return com.akaxin.proto.plugin.HaiUserPhoneProto.internal_static_plugin_HaiUserPhoneResponse_descriptor;
}
public com.akaxin.proto.plugin.HaiUserPhoneProto.HaiUserPhoneResponse getDefaultInstanceForType() {
return com.akaxin.proto.plugin.HaiUserPhoneProto.HaiUserPhoneResponse.getDefaultInstance();
}
public com.akaxin.proto.plugin.HaiUserPhoneProto.HaiUserPhoneResponse build() {
com.akaxin.proto.plugin.HaiUserPhoneProto.HaiUserPhoneResponse result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
public com.akaxin.proto.plugin.HaiUserPhoneProto.HaiUserPhoneResponse buildPartial() {
com.akaxin.proto.plugin.HaiUserPhoneProto.HaiUserPhoneResponse result = new com.akaxin.proto.plugin.HaiUserPhoneProto.HaiUserPhoneResponse(this);
result.countryCode_ = countryCode_;
result.phoneId_ = phoneId_;
onBuilt();
return result;
}
public Builder clone() {
return (Builder) super.clone();
}
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.setField(field, value);
}
public Builder clearField(
com.google.protobuf.Descriptors.FieldDescriptor field) {
return (Builder) super.clearField(field);
}
public Builder clearOneof(
com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return (Builder) super.clearOneof(oneof);
}
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index, java.lang.Object value) {
return (Builder) super.setRepeatedField(field, index, value);
}
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.addRepeatedField(field, value);
}
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof com.akaxin.proto.plugin.HaiUserPhoneProto.HaiUserPhoneResponse) {
return mergeFrom((com.akaxin.proto.plugin.HaiUserPhoneProto.HaiUserPhoneResponse)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.akaxin.proto.plugin.HaiUserPhoneProto.HaiUserPhoneResponse other) {
if (other == com.akaxin.proto.plugin.HaiUserPhoneProto.HaiUserPhoneResponse.getDefaultInstance()) return this;
if (!other.getCountryCode().isEmpty()) {
countryCode_ = other.countryCode_;
onChanged();
}
if (!other.getPhoneId().isEmpty()) {
phoneId_ = other.phoneId_;
onChanged();
}
this.mergeUnknownFields(other.unknownFields);
onChanged();
return this;
}
public final boolean isInitialized() {
return true;
}
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
com.akaxin.proto.plugin.HaiUserPhoneProto.HaiUserPhoneResponse parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (com.akaxin.proto.plugin.HaiUserPhoneProto.HaiUserPhoneResponse) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private java.lang.Object countryCode_ = "";
/**
* <pre>
*国际区号+86
* </pre>
*
* <code>string country_code = 1;</code>
*/
public java.lang.String getCountryCode() {
java.lang.Object ref = countryCode_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
countryCode_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* <pre>
*国际区号+86
* </pre>
*
* <code>string country_code = 1;</code>
*/
public com.google.protobuf.ByteString
getCountryCodeBytes() {
java.lang.Object ref = countryCode_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
countryCode_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* <pre>
*国际区号+86
* </pre>
*
* <code>string country_code = 1;</code>
*/
public Builder setCountryCode(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
countryCode_ = value;
onChanged();
return this;
}
/**
* <pre>
*国际区号+86
* </pre>
*
* <code>string country_code = 1;</code>
*/
public Builder clearCountryCode() {
countryCode_ = getDefaultInstance().getCountryCode();
onChanged();
return this;
}
/**
* <pre>
*国际区号+86
* </pre>
*
* <code>string country_code = 1;</code>
*/
public Builder setCountryCodeBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
countryCode_ = value;
onChanged();
return this;
}
private java.lang.Object phoneId_ = "";
/**
* <pre>
*手机号
* </pre>
*
* <code>string phone_id = 2;</code>
*/
public java.lang.String getPhoneId() {
java.lang.Object ref = phoneId_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
phoneId_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* <pre>
*手机号
* </pre>
*
* <code>string phone_id = 2;</code>
*/
public com.google.protobuf.ByteString
getPhoneIdBytes() {
java.lang.Object ref = phoneId_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
phoneId_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* <pre>
*手机号
* </pre>
*
* <code>string phone_id = 2;</code>
*/
public Builder setPhoneId(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
phoneId_ = value;
onChanged();
return this;
}
/**
* <pre>
*手机号
* </pre>
*
* <code>string phone_id = 2;</code>
*/
public Builder clearPhoneId() {
phoneId_ = getDefaultInstance().getPhoneId();
onChanged();
return this;
}
/**
* <pre>
*手机号
* </pre>
*
* <code>string phone_id = 2;</code>
*/
public Builder setPhoneIdBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
phoneId_ = value;
onChanged();
return this;
}
public final Builder setUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.setUnknownFieldsProto3(unknownFields);
}
public final Builder mergeUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.mergeUnknownFields(unknownFields);
}
// @@protoc_insertion_point(builder_scope:plugin.HaiUserPhoneResponse)
}
// @@protoc_insertion_point(class_scope:plugin.HaiUserPhoneResponse)
private static final com.akaxin.proto.plugin.HaiUserPhoneProto.HaiUserPhoneResponse DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.akaxin.proto.plugin.HaiUserPhoneProto.HaiUserPhoneResponse();
}
public static com.akaxin.proto.plugin.HaiUserPhoneProto.HaiUserPhoneResponse getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser<HaiUserPhoneResponse>
PARSER = new com.google.protobuf.AbstractParser<HaiUserPhoneResponse>() {
public HaiUserPhoneResponse parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new HaiUserPhoneResponse(input, extensionRegistry);
}
};
public static com.google.protobuf.Parser<HaiUserPhoneResponse> parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser<HaiUserPhoneResponse> getParserForType() {
return PARSER;
}
public com.akaxin.proto.plugin.HaiUserPhoneProto.HaiUserPhoneResponse getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
private static final com.google.protobuf.Descriptors.Descriptor
internal_static_plugin_HaiUserPhoneRequest_descriptor;
private static final
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internal_static_plugin_HaiUserPhoneRequest_fieldAccessorTable;
private static final com.google.protobuf.Descriptors.Descriptor
internal_static_plugin_HaiUserPhoneResponse_descriptor;
private static final
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internal_static_plugin_HaiUserPhoneResponse_fieldAccessorTable;
public static com.google.protobuf.Descriptors.FileDescriptor
getDescriptor() {
return descriptor;
}
private static com.google.protobuf.Descriptors.FileDescriptor
descriptor;
static {
java.lang.String[] descriptorData = {
"\n\033plugin/hai_user_phone.proto\022\006plugin\"+\n" +
"\023HaiUserPhoneRequest\022\024\n\014site_user_id\030\001 \001" +
"(\t\">\n\024HaiUserPhoneResponse\022\024\n\014country_co" +
"de\030\001 \001(\t\022\020\n\010phone_id\030\002 \001(\t2Y\n\023HaiUserPho" +
"neService\022B\n\005phone\022\033.plugin.HaiUserPhone" +
"Request\032\034.plugin.HaiUserPhoneResponseB,\n" +
"\027com.akaxin.proto.pluginB\021HaiUserPhonePr" +
"otob\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[] {
}, assigner);
internal_static_plugin_HaiUserPhoneRequest_descriptor =
getDescriptor().getMessageTypes().get(0);
internal_static_plugin_HaiUserPhoneRequest_fieldAccessorTable = new
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
internal_static_plugin_HaiUserPhoneRequest_descriptor,
new java.lang.String[] { "SiteUserId", });
internal_static_plugin_HaiUserPhoneResponse_descriptor =
getDescriptor().getMessageTypes().get(1);
internal_static_plugin_HaiUserPhoneResponse_fieldAccessorTable = new
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
internal_static_plugin_HaiUserPhoneResponse_descriptor,
new java.lang.String[] { "CountryCode", "PhoneId", });
}
// @@protoc_insertion_point(outer_class_scope)
}