WindChat/windchat-protobuf/src/main/java/com/akaxin/proto/site/ApiFriendListProto.java

1672 lines
56 KiB
Java
Executable File

// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: site/api_friend_list.proto
package com.akaxin.proto.site;
public final class ApiFriendListProto {
private ApiFriendListProto() {}
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 ApiFriendListRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:site.ApiFriendListRequest)
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>
*分页:第几页
* </pre>
*
* <code>int32 page_number = 2;</code>
*/
int getPageNumber();
/**
* <pre>
*分页:每页条数
* </pre>
*
* <code>int32 page_size = 3;</code>
*/
int getPageSize();
}
/**
* Protobuf type {@code site.ApiFriendListRequest}
*/
public static final class ApiFriendListRequest extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:site.ApiFriendListRequest)
ApiFriendListRequestOrBuilder {
private static final long serialVersionUID = 0L;
// Use ApiFriendListRequest.newBuilder() to construct.
private ApiFriendListRequest(com.google.protobuf.GeneratedMessageV3.Builder<?> builder) {
super(builder);
}
private ApiFriendListRequest() {
siteUserId_ = "";
pageNumber_ = 0;
pageSize_ = 0;
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private ApiFriendListRequest(
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;
default: {
if (!parseUnknownFieldProto3(
input, unknownFields, extensionRegistry, tag)) {
done = true;
}
break;
}
case 10: {
java.lang.String s = input.readStringRequireUtf8();
siteUserId_ = s;
break;
}
case 16: {
pageNumber_ = input.readInt32();
break;
}
case 24: {
pageSize_ = input.readInt32();
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.site.ApiFriendListProto.internal_static_site_ApiFriendListRequest_descriptor;
}
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.akaxin.proto.site.ApiFriendListProto.internal_static_site_ApiFriendListRequest_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.akaxin.proto.site.ApiFriendListProto.ApiFriendListRequest.class, com.akaxin.proto.site.ApiFriendListProto.ApiFriendListRequest.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;
}
}
public static final int PAGE_NUMBER_FIELD_NUMBER = 2;
private int pageNumber_;
/**
* <pre>
*分页:第几页
* </pre>
*
* <code>int32 page_number = 2;</code>
*/
public int getPageNumber() {
return pageNumber_;
}
public static final int PAGE_SIZE_FIELD_NUMBER = 3;
private int pageSize_;
/**
* <pre>
*分页:每页条数
* </pre>
*
* <code>int32 page_size = 3;</code>
*/
public int getPageSize() {
return pageSize_;
}
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_);
}
if (pageNumber_ != 0) {
output.writeInt32(2, pageNumber_);
}
if (pageSize_ != 0) {
output.writeInt32(3, pageSize_);
}
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_);
}
if (pageNumber_ != 0) {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(2, pageNumber_);
}
if (pageSize_ != 0) {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(3, pageSize_);
}
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.site.ApiFriendListProto.ApiFriendListRequest)) {
return super.equals(obj);
}
com.akaxin.proto.site.ApiFriendListProto.ApiFriendListRequest other = (com.akaxin.proto.site.ApiFriendListProto.ApiFriendListRequest) obj;
boolean result = true;
result = result && getSiteUserId()
.equals(other.getSiteUserId());
result = result && (getPageNumber()
== other.getPageNumber());
result = result && (getPageSize()
== other.getPageSize());
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 = (37 * hash) + PAGE_NUMBER_FIELD_NUMBER;
hash = (53 * hash) + getPageNumber();
hash = (37 * hash) + PAGE_SIZE_FIELD_NUMBER;
hash = (53 * hash) + getPageSize();
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.akaxin.proto.site.ApiFriendListProto.ApiFriendListRequest parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.akaxin.proto.site.ApiFriendListProto.ApiFriendListRequest 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.site.ApiFriendListProto.ApiFriendListRequest parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.akaxin.proto.site.ApiFriendListProto.ApiFriendListRequest 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.site.ApiFriendListProto.ApiFriendListRequest parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.akaxin.proto.site.ApiFriendListProto.ApiFriendListRequest parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.akaxin.proto.site.ApiFriendListProto.ApiFriendListRequest parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.akaxin.proto.site.ApiFriendListProto.ApiFriendListRequest 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.site.ApiFriendListProto.ApiFriendListRequest parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static com.akaxin.proto.site.ApiFriendListProto.ApiFriendListRequest 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.site.ApiFriendListProto.ApiFriendListRequest parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.akaxin.proto.site.ApiFriendListProto.ApiFriendListRequest 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.site.ApiFriendListProto.ApiFriendListRequest 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 site.ApiFriendListRequest}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder<Builder> implements
// @@protoc_insertion_point(builder_implements:site.ApiFriendListRequest)
com.akaxin.proto.site.ApiFriendListProto.ApiFriendListRequestOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.akaxin.proto.site.ApiFriendListProto.internal_static_site_ApiFriendListRequest_descriptor;
}
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.akaxin.proto.site.ApiFriendListProto.internal_static_site_ApiFriendListRequest_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.akaxin.proto.site.ApiFriendListProto.ApiFriendListRequest.class, com.akaxin.proto.site.ApiFriendListProto.ApiFriendListRequest.Builder.class);
}
// Construct using com.akaxin.proto.site.ApiFriendListProto.ApiFriendListRequest.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_ = "";
pageNumber_ = 0;
pageSize_ = 0;
return this;
}
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return com.akaxin.proto.site.ApiFriendListProto.internal_static_site_ApiFriendListRequest_descriptor;
}
public com.akaxin.proto.site.ApiFriendListProto.ApiFriendListRequest getDefaultInstanceForType() {
return com.akaxin.proto.site.ApiFriendListProto.ApiFriendListRequest.getDefaultInstance();
}
public com.akaxin.proto.site.ApiFriendListProto.ApiFriendListRequest build() {
com.akaxin.proto.site.ApiFriendListProto.ApiFriendListRequest result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
public com.akaxin.proto.site.ApiFriendListProto.ApiFriendListRequest buildPartial() {
com.akaxin.proto.site.ApiFriendListProto.ApiFriendListRequest result = new com.akaxin.proto.site.ApiFriendListProto.ApiFriendListRequest(this);
result.siteUserId_ = siteUserId_;
result.pageNumber_ = pageNumber_;
result.pageSize_ = pageSize_;
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.site.ApiFriendListProto.ApiFriendListRequest) {
return mergeFrom((com.akaxin.proto.site.ApiFriendListProto.ApiFriendListRequest)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.akaxin.proto.site.ApiFriendListProto.ApiFriendListRequest other) {
if (other == com.akaxin.proto.site.ApiFriendListProto.ApiFriendListRequest.getDefaultInstance()) return this;
if (!other.getSiteUserId().isEmpty()) {
siteUserId_ = other.siteUserId_;
onChanged();
}
if (other.getPageNumber() != 0) {
setPageNumber(other.getPageNumber());
}
if (other.getPageSize() != 0) {
setPageSize(other.getPageSize());
}
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.site.ApiFriendListProto.ApiFriendListRequest parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (com.akaxin.proto.site.ApiFriendListProto.ApiFriendListRequest) 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;
}
private int pageNumber_ ;
/**
* <pre>
*分页:第几页
* </pre>
*
* <code>int32 page_number = 2;</code>
*/
public int getPageNumber() {
return pageNumber_;
}
/**
* <pre>
*分页:第几页
* </pre>
*
* <code>int32 page_number = 2;</code>
*/
public Builder setPageNumber(int value) {
pageNumber_ = value;
onChanged();
return this;
}
/**
* <pre>
*分页:第几页
* </pre>
*
* <code>int32 page_number = 2;</code>
*/
public Builder clearPageNumber() {
pageNumber_ = 0;
onChanged();
return this;
}
private int pageSize_ ;
/**
* <pre>
*分页:每页条数
* </pre>
*
* <code>int32 page_size = 3;</code>
*/
public int getPageSize() {
return pageSize_;
}
/**
* <pre>
*分页:每页条数
* </pre>
*
* <code>int32 page_size = 3;</code>
*/
public Builder setPageSize(int value) {
pageSize_ = value;
onChanged();
return this;
}
/**
* <pre>
*分页:每页条数
* </pre>
*
* <code>int32 page_size = 3;</code>
*/
public Builder clearPageSize() {
pageSize_ = 0;
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:site.ApiFriendListRequest)
}
// @@protoc_insertion_point(class_scope:site.ApiFriendListRequest)
private static final com.akaxin.proto.site.ApiFriendListProto.ApiFriendListRequest DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.akaxin.proto.site.ApiFriendListProto.ApiFriendListRequest();
}
public static com.akaxin.proto.site.ApiFriendListProto.ApiFriendListRequest getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser<ApiFriendListRequest>
PARSER = new com.google.protobuf.AbstractParser<ApiFriendListRequest>() {
public ApiFriendListRequest parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new ApiFriendListRequest(input, extensionRegistry);
}
};
public static com.google.protobuf.Parser<ApiFriendListRequest> parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser<ApiFriendListRequest> getParserForType() {
return PARSER;
}
public com.akaxin.proto.site.ApiFriendListProto.ApiFriendListRequest getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
public interface ApiFriendListResponseOrBuilder extends
// @@protoc_insertion_point(interface_extends:site.ApiFriendListResponse)
com.google.protobuf.MessageOrBuilder {
/**
* <pre>
*好友列表
* </pre>
*
* <code>repeated .core.SimpleUserProfile list = 1;</code>
*/
java.util.List<com.akaxin.proto.core.UserProto.SimpleUserProfile>
getListList();
/**
* <pre>
*好友列表
* </pre>
*
* <code>repeated .core.SimpleUserProfile list = 1;</code>
*/
com.akaxin.proto.core.UserProto.SimpleUserProfile getList(int index);
/**
* <pre>
*好友列表
* </pre>
*
* <code>repeated .core.SimpleUserProfile list = 1;</code>
*/
int getListCount();
/**
* <pre>
*好友列表
* </pre>
*
* <code>repeated .core.SimpleUserProfile list = 1;</code>
*/
java.util.List<? extends com.akaxin.proto.core.UserProto.SimpleUserProfileOrBuilder>
getListOrBuilderList();
/**
* <pre>
*好友列表
* </pre>
*
* <code>repeated .core.SimpleUserProfile list = 1;</code>
*/
com.akaxin.proto.core.UserProto.SimpleUserProfileOrBuilder getListOrBuilder(
int index);
}
/**
* Protobuf type {@code site.ApiFriendListResponse}
*/
public static final class ApiFriendListResponse extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:site.ApiFriendListResponse)
ApiFriendListResponseOrBuilder {
private static final long serialVersionUID = 0L;
// Use ApiFriendListResponse.newBuilder() to construct.
private ApiFriendListResponse(com.google.protobuf.GeneratedMessageV3.Builder<?> builder) {
super(builder);
}
private ApiFriendListResponse() {
list_ = java.util.Collections.emptyList();
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private ApiFriendListResponse(
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;
default: {
if (!parseUnknownFieldProto3(
input, unknownFields, extensionRegistry, tag)) {
done = true;
}
break;
}
case 10: {
if (!((mutable_bitField0_ & 0x00000001) == 0x00000001)) {
list_ = new java.util.ArrayList<com.akaxin.proto.core.UserProto.SimpleUserProfile>();
mutable_bitField0_ |= 0x00000001;
}
list_.add(
input.readMessage(com.akaxin.proto.core.UserProto.SimpleUserProfile.parser(), extensionRegistry));
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)) {
list_ = java.util.Collections.unmodifiableList(list_);
}
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.akaxin.proto.site.ApiFriendListProto.internal_static_site_ApiFriendListResponse_descriptor;
}
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.akaxin.proto.site.ApiFriendListProto.internal_static_site_ApiFriendListResponse_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.akaxin.proto.site.ApiFriendListProto.ApiFriendListResponse.class, com.akaxin.proto.site.ApiFriendListProto.ApiFriendListResponse.Builder.class);
}
public static final int LIST_FIELD_NUMBER = 1;
private java.util.List<com.akaxin.proto.core.UserProto.SimpleUserProfile> list_;
/**
* <pre>
*好友列表
* </pre>
*
* <code>repeated .core.SimpleUserProfile list = 1;</code>
*/
public java.util.List<com.akaxin.proto.core.UserProto.SimpleUserProfile> getListList() {
return list_;
}
/**
* <pre>
*好友列表
* </pre>
*
* <code>repeated .core.SimpleUserProfile list = 1;</code>
*/
public java.util.List<? extends com.akaxin.proto.core.UserProto.SimpleUserProfileOrBuilder>
getListOrBuilderList() {
return list_;
}
/**
* <pre>
*好友列表
* </pre>
*
* <code>repeated .core.SimpleUserProfile list = 1;</code>
*/
public int getListCount() {
return list_.size();
}
/**
* <pre>
*好友列表
* </pre>
*
* <code>repeated .core.SimpleUserProfile list = 1;</code>
*/
public com.akaxin.proto.core.UserProto.SimpleUserProfile getList(int index) {
return list_.get(index);
}
/**
* <pre>
*好友列表
* </pre>
*
* <code>repeated .core.SimpleUserProfile list = 1;</code>
*/
public com.akaxin.proto.core.UserProto.SimpleUserProfileOrBuilder getListOrBuilder(
int index) {
return list_.get(index);
}
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 {
for (int i = 0; i < list_.size(); i++) {
output.writeMessage(1, list_.get(i));
}
unknownFields.writeTo(output);
}
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
for (int i = 0; i < list_.size(); i++) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(1, list_.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 com.akaxin.proto.site.ApiFriendListProto.ApiFriendListResponse)) {
return super.equals(obj);
}
com.akaxin.proto.site.ApiFriendListProto.ApiFriendListResponse other = (com.akaxin.proto.site.ApiFriendListProto.ApiFriendListResponse) obj;
boolean result = true;
result = result && getListList()
.equals(other.getListList());
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 (getListCount() > 0) {
hash = (37 * hash) + LIST_FIELD_NUMBER;
hash = (53 * hash) + getListList().hashCode();
}
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.akaxin.proto.site.ApiFriendListProto.ApiFriendListResponse parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.akaxin.proto.site.ApiFriendListProto.ApiFriendListResponse 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.site.ApiFriendListProto.ApiFriendListResponse parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.akaxin.proto.site.ApiFriendListProto.ApiFriendListResponse 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.site.ApiFriendListProto.ApiFriendListResponse parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.akaxin.proto.site.ApiFriendListProto.ApiFriendListResponse parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.akaxin.proto.site.ApiFriendListProto.ApiFriendListResponse parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.akaxin.proto.site.ApiFriendListProto.ApiFriendListResponse 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.site.ApiFriendListProto.ApiFriendListResponse parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static com.akaxin.proto.site.ApiFriendListProto.ApiFriendListResponse 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.site.ApiFriendListProto.ApiFriendListResponse parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.akaxin.proto.site.ApiFriendListProto.ApiFriendListResponse 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.site.ApiFriendListProto.ApiFriendListResponse 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 site.ApiFriendListResponse}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder<Builder> implements
// @@protoc_insertion_point(builder_implements:site.ApiFriendListResponse)
com.akaxin.proto.site.ApiFriendListProto.ApiFriendListResponseOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.akaxin.proto.site.ApiFriendListProto.internal_static_site_ApiFriendListResponse_descriptor;
}
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.akaxin.proto.site.ApiFriendListProto.internal_static_site_ApiFriendListResponse_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.akaxin.proto.site.ApiFriendListProto.ApiFriendListResponse.class, com.akaxin.proto.site.ApiFriendListProto.ApiFriendListResponse.Builder.class);
}
// Construct using com.akaxin.proto.site.ApiFriendListProto.ApiFriendListResponse.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
getListFieldBuilder();
}
}
public Builder clear() {
super.clear();
if (listBuilder_ == null) {
list_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000001);
} else {
listBuilder_.clear();
}
return this;
}
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return com.akaxin.proto.site.ApiFriendListProto.internal_static_site_ApiFriendListResponse_descriptor;
}
public com.akaxin.proto.site.ApiFriendListProto.ApiFriendListResponse getDefaultInstanceForType() {
return com.akaxin.proto.site.ApiFriendListProto.ApiFriendListResponse.getDefaultInstance();
}
public com.akaxin.proto.site.ApiFriendListProto.ApiFriendListResponse build() {
com.akaxin.proto.site.ApiFriendListProto.ApiFriendListResponse result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
public com.akaxin.proto.site.ApiFriendListProto.ApiFriendListResponse buildPartial() {
com.akaxin.proto.site.ApiFriendListProto.ApiFriendListResponse result = new com.akaxin.proto.site.ApiFriendListProto.ApiFriendListResponse(this);
int from_bitField0_ = bitField0_;
if (listBuilder_ == null) {
if (((bitField0_ & 0x00000001) == 0x00000001)) {
list_ = java.util.Collections.unmodifiableList(list_);
bitField0_ = (bitField0_ & ~0x00000001);
}
result.list_ = list_;
} else {
result.list_ = listBuilder_.build();
}
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.site.ApiFriendListProto.ApiFriendListResponse) {
return mergeFrom((com.akaxin.proto.site.ApiFriendListProto.ApiFriendListResponse)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.akaxin.proto.site.ApiFriendListProto.ApiFriendListResponse other) {
if (other == com.akaxin.proto.site.ApiFriendListProto.ApiFriendListResponse.getDefaultInstance()) return this;
if (listBuilder_ == null) {
if (!other.list_.isEmpty()) {
if (list_.isEmpty()) {
list_ = other.list_;
bitField0_ = (bitField0_ & ~0x00000001);
} else {
ensureListIsMutable();
list_.addAll(other.list_);
}
onChanged();
}
} else {
if (!other.list_.isEmpty()) {
if (listBuilder_.isEmpty()) {
listBuilder_.dispose();
listBuilder_ = null;
list_ = other.list_;
bitField0_ = (bitField0_ & ~0x00000001);
listBuilder_ =
com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ?
getListFieldBuilder() : null;
} else {
listBuilder_.addAllMessages(other.list_);
}
}
}
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.site.ApiFriendListProto.ApiFriendListResponse parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (com.akaxin.proto.site.ApiFriendListProto.ApiFriendListResponse) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
private java.util.List<com.akaxin.proto.core.UserProto.SimpleUserProfile> list_ =
java.util.Collections.emptyList();
private void ensureListIsMutable() {
if (!((bitField0_ & 0x00000001) == 0x00000001)) {
list_ = new java.util.ArrayList<com.akaxin.proto.core.UserProto.SimpleUserProfile>(list_);
bitField0_ |= 0x00000001;
}
}
private com.google.protobuf.RepeatedFieldBuilderV3<
com.akaxin.proto.core.UserProto.SimpleUserProfile, com.akaxin.proto.core.UserProto.SimpleUserProfile.Builder, com.akaxin.proto.core.UserProto.SimpleUserProfileOrBuilder> listBuilder_;
/**
* <pre>
*好友列表
* </pre>
*
* <code>repeated .core.SimpleUserProfile list = 1;</code>
*/
public java.util.List<com.akaxin.proto.core.UserProto.SimpleUserProfile> getListList() {
if (listBuilder_ == null) {
return java.util.Collections.unmodifiableList(list_);
} else {
return listBuilder_.getMessageList();
}
}
/**
* <pre>
*好友列表
* </pre>
*
* <code>repeated .core.SimpleUserProfile list = 1;</code>
*/
public int getListCount() {
if (listBuilder_ == null) {
return list_.size();
} else {
return listBuilder_.getCount();
}
}
/**
* <pre>
*好友列表
* </pre>
*
* <code>repeated .core.SimpleUserProfile list = 1;</code>
*/
public com.akaxin.proto.core.UserProto.SimpleUserProfile getList(int index) {
if (listBuilder_ == null) {
return list_.get(index);
} else {
return listBuilder_.getMessage(index);
}
}
/**
* <pre>
*好友列表
* </pre>
*
* <code>repeated .core.SimpleUserProfile list = 1;</code>
*/
public Builder setList(
int index, com.akaxin.proto.core.UserProto.SimpleUserProfile value) {
if (listBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureListIsMutable();
list_.set(index, value);
onChanged();
} else {
listBuilder_.setMessage(index, value);
}
return this;
}
/**
* <pre>
*好友列表
* </pre>
*
* <code>repeated .core.SimpleUserProfile list = 1;</code>
*/
public Builder setList(
int index, com.akaxin.proto.core.UserProto.SimpleUserProfile.Builder builderForValue) {
if (listBuilder_ == null) {
ensureListIsMutable();
list_.set(index, builderForValue.build());
onChanged();
} else {
listBuilder_.setMessage(index, builderForValue.build());
}
return this;
}
/**
* <pre>
*好友列表
* </pre>
*
* <code>repeated .core.SimpleUserProfile list = 1;</code>
*/
public Builder addList(com.akaxin.proto.core.UserProto.SimpleUserProfile value) {
if (listBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureListIsMutable();
list_.add(value);
onChanged();
} else {
listBuilder_.addMessage(value);
}
return this;
}
/**
* <pre>
*好友列表
* </pre>
*
* <code>repeated .core.SimpleUserProfile list = 1;</code>
*/
public Builder addList(
int index, com.akaxin.proto.core.UserProto.SimpleUserProfile value) {
if (listBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureListIsMutable();
list_.add(index, value);
onChanged();
} else {
listBuilder_.addMessage(index, value);
}
return this;
}
/**
* <pre>
*好友列表
* </pre>
*
* <code>repeated .core.SimpleUserProfile list = 1;</code>
*/
public Builder addList(
com.akaxin.proto.core.UserProto.SimpleUserProfile.Builder builderForValue) {
if (listBuilder_ == null) {
ensureListIsMutable();
list_.add(builderForValue.build());
onChanged();
} else {
listBuilder_.addMessage(builderForValue.build());
}
return this;
}
/**
* <pre>
*好友列表
* </pre>
*
* <code>repeated .core.SimpleUserProfile list = 1;</code>
*/
public Builder addList(
int index, com.akaxin.proto.core.UserProto.SimpleUserProfile.Builder builderForValue) {
if (listBuilder_ == null) {
ensureListIsMutable();
list_.add(index, builderForValue.build());
onChanged();
} else {
listBuilder_.addMessage(index, builderForValue.build());
}
return this;
}
/**
* <pre>
*好友列表
* </pre>
*
* <code>repeated .core.SimpleUserProfile list = 1;</code>
*/
public Builder addAllList(
java.lang.Iterable<? extends com.akaxin.proto.core.UserProto.SimpleUserProfile> values) {
if (listBuilder_ == null) {
ensureListIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, list_);
onChanged();
} else {
listBuilder_.addAllMessages(values);
}
return this;
}
/**
* <pre>
*好友列表
* </pre>
*
* <code>repeated .core.SimpleUserProfile list = 1;</code>
*/
public Builder clearList() {
if (listBuilder_ == null) {
list_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000001);
onChanged();
} else {
listBuilder_.clear();
}
return this;
}
/**
* <pre>
*好友列表
* </pre>
*
* <code>repeated .core.SimpleUserProfile list = 1;</code>
*/
public Builder removeList(int index) {
if (listBuilder_ == null) {
ensureListIsMutable();
list_.remove(index);
onChanged();
} else {
listBuilder_.remove(index);
}
return this;
}
/**
* <pre>
*好友列表
* </pre>
*
* <code>repeated .core.SimpleUserProfile list = 1;</code>
*/
public com.akaxin.proto.core.UserProto.SimpleUserProfile.Builder getListBuilder(
int index) {
return getListFieldBuilder().getBuilder(index);
}
/**
* <pre>
*好友列表
* </pre>
*
* <code>repeated .core.SimpleUserProfile list = 1;</code>
*/
public com.akaxin.proto.core.UserProto.SimpleUserProfileOrBuilder getListOrBuilder(
int index) {
if (listBuilder_ == null) {
return list_.get(index); } else {
return listBuilder_.getMessageOrBuilder(index);
}
}
/**
* <pre>
*好友列表
* </pre>
*
* <code>repeated .core.SimpleUserProfile list = 1;</code>
*/
public java.util.List<? extends com.akaxin.proto.core.UserProto.SimpleUserProfileOrBuilder>
getListOrBuilderList() {
if (listBuilder_ != null) {
return listBuilder_.getMessageOrBuilderList();
} else {
return java.util.Collections.unmodifiableList(list_);
}
}
/**
* <pre>
*好友列表
* </pre>
*
* <code>repeated .core.SimpleUserProfile list = 1;</code>
*/
public com.akaxin.proto.core.UserProto.SimpleUserProfile.Builder addListBuilder() {
return getListFieldBuilder().addBuilder(
com.akaxin.proto.core.UserProto.SimpleUserProfile.getDefaultInstance());
}
/**
* <pre>
*好友列表
* </pre>
*
* <code>repeated .core.SimpleUserProfile list = 1;</code>
*/
public com.akaxin.proto.core.UserProto.SimpleUserProfile.Builder addListBuilder(
int index) {
return getListFieldBuilder().addBuilder(
index, com.akaxin.proto.core.UserProto.SimpleUserProfile.getDefaultInstance());
}
/**
* <pre>
*好友列表
* </pre>
*
* <code>repeated .core.SimpleUserProfile list = 1;</code>
*/
public java.util.List<com.akaxin.proto.core.UserProto.SimpleUserProfile.Builder>
getListBuilderList() {
return getListFieldBuilder().getBuilderList();
}
private com.google.protobuf.RepeatedFieldBuilderV3<
com.akaxin.proto.core.UserProto.SimpleUserProfile, com.akaxin.proto.core.UserProto.SimpleUserProfile.Builder, com.akaxin.proto.core.UserProto.SimpleUserProfileOrBuilder>
getListFieldBuilder() {
if (listBuilder_ == null) {
listBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3<
com.akaxin.proto.core.UserProto.SimpleUserProfile, com.akaxin.proto.core.UserProto.SimpleUserProfile.Builder, com.akaxin.proto.core.UserProto.SimpleUserProfileOrBuilder>(
list_,
((bitField0_ & 0x00000001) == 0x00000001),
getParentForChildren(),
isClean());
list_ = null;
}
return listBuilder_;
}
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:site.ApiFriendListResponse)
}
// @@protoc_insertion_point(class_scope:site.ApiFriendListResponse)
private static final com.akaxin.proto.site.ApiFriendListProto.ApiFriendListResponse DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.akaxin.proto.site.ApiFriendListProto.ApiFriendListResponse();
}
public static com.akaxin.proto.site.ApiFriendListProto.ApiFriendListResponse getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser<ApiFriendListResponse>
PARSER = new com.google.protobuf.AbstractParser<ApiFriendListResponse>() {
public ApiFriendListResponse parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new ApiFriendListResponse(input, extensionRegistry);
}
};
public static com.google.protobuf.Parser<ApiFriendListResponse> parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser<ApiFriendListResponse> getParserForType() {
return PARSER;
}
public com.akaxin.proto.site.ApiFriendListProto.ApiFriendListResponse getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
private static final com.google.protobuf.Descriptors.Descriptor
internal_static_site_ApiFriendListRequest_descriptor;
private static final
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internal_static_site_ApiFriendListRequest_fieldAccessorTable;
private static final com.google.protobuf.Descriptors.Descriptor
internal_static_site_ApiFriendListResponse_descriptor;
private static final
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internal_static_site_ApiFriendListResponse_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\032site/api_friend_list.proto\022\004site\032\017core" +
"/user.proto\"T\n\024ApiFriendListRequest\022\024\n\014s" +
"ite_user_id\030\001 \001(\t\022\023\n\013page_number\030\002 \001(\005\022\021" +
"\n\tpage_size\030\003 \001(\005\">\n\025ApiFriendListRespon" +
"se\022%\n\004list\030\001 \003(\0132\027.core.SimpleUserProfil" +
"e2W\n\024ApiFriendListService\022?\n\004list\022\032.site" +
".ApiFriendListRequest\032\033.site.ApiFriendLi" +
"stResponseB+\n\025com.akaxin.proto.siteB\022Api" +
"FriendListProtob\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[] {
com.akaxin.proto.core.UserProto.getDescriptor(),
}, assigner);
internal_static_site_ApiFriendListRequest_descriptor =
getDescriptor().getMessageTypes().get(0);
internal_static_site_ApiFriendListRequest_fieldAccessorTable = new
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
internal_static_site_ApiFriendListRequest_descriptor,
new java.lang.String[] { "SiteUserId", "PageNumber", "PageSize", });
internal_static_site_ApiFriendListResponse_descriptor =
getDescriptor().getMessageTypes().get(1);
internal_static_site_ApiFriendListResponse_fieldAccessorTable = new
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
internal_static_site_ApiFriendListResponse_descriptor,
new java.lang.String[] { "List", });
com.akaxin.proto.core.UserProto.getDescriptor();
}
// @@protoc_insertion_point(outer_class_scope)
}