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

1301 lines
45 KiB
Java
Executable File

// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: plugin/hai_user_avatar.proto
package com.akaxin.proto.plugin;
public final class HaiUserAvatarProto {
private HaiUserAvatarProto() {}
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 HaiUserAvatarRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:plugin.HaiUserAvatarRequest)
com.google.protobuf.MessageOrBuilder {
/**
* <pre>
*用户的siteUserId
* </pre>
*
* <code>string site_user_id = 1;</code>
*/
java.lang.String getSiteUserId();
/**
* <pre>
*用户的siteUserId
* </pre>
*
* <code>string site_user_id = 1;</code>
*/
com.google.protobuf.ByteString
getSiteUserIdBytes();
}
/**
* <pre>
**
*获取用户头像
*----
*接口名
*----
* /hai/user/avatar
*错误码
*----
*- success
*- error.alert
* </pre>
*
* Protobuf type {@code plugin.HaiUserAvatarRequest}
*/
public static final class HaiUserAvatarRequest extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:plugin.HaiUserAvatarRequest)
HaiUserAvatarRequestOrBuilder {
private static final long serialVersionUID = 0L;
// Use HaiUserAvatarRequest.newBuilder() to construct.
private HaiUserAvatarRequest(com.google.protobuf.GeneratedMessageV3.Builder<?> builder) {
super(builder);
}
private HaiUserAvatarRequest() {
siteUserId_ = "";
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private HaiUserAvatarRequest(
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.HaiUserAvatarProto.internal_static_plugin_HaiUserAvatarRequest_descriptor;
}
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.akaxin.proto.plugin.HaiUserAvatarProto.internal_static_plugin_HaiUserAvatarRequest_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.akaxin.proto.plugin.HaiUserAvatarProto.HaiUserAvatarRequest.class, com.akaxin.proto.plugin.HaiUserAvatarProto.HaiUserAvatarRequest.Builder.class);
}
public static final int SITE_USER_ID_FIELD_NUMBER = 1;
private volatile java.lang.Object siteUserId_;
/**
* <pre>
*用户的siteUserId
* </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>
*用户的siteUserId
* </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.HaiUserAvatarProto.HaiUserAvatarRequest)) {
return super.equals(obj);
}
com.akaxin.proto.plugin.HaiUserAvatarProto.HaiUserAvatarRequest other = (com.akaxin.proto.plugin.HaiUserAvatarProto.HaiUserAvatarRequest) 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.HaiUserAvatarProto.HaiUserAvatarRequest parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.akaxin.proto.plugin.HaiUserAvatarProto.HaiUserAvatarRequest 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.HaiUserAvatarProto.HaiUserAvatarRequest parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.akaxin.proto.plugin.HaiUserAvatarProto.HaiUserAvatarRequest 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.HaiUserAvatarProto.HaiUserAvatarRequest parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.akaxin.proto.plugin.HaiUserAvatarProto.HaiUserAvatarRequest parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.akaxin.proto.plugin.HaiUserAvatarProto.HaiUserAvatarRequest parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.akaxin.proto.plugin.HaiUserAvatarProto.HaiUserAvatarRequest 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.HaiUserAvatarProto.HaiUserAvatarRequest parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static com.akaxin.proto.plugin.HaiUserAvatarProto.HaiUserAvatarRequest 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.HaiUserAvatarProto.HaiUserAvatarRequest parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.akaxin.proto.plugin.HaiUserAvatarProto.HaiUserAvatarRequest 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.HaiUserAvatarProto.HaiUserAvatarRequest 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/avatar
*错误码
*----
*- success
*- error.alert
* </pre>
*
* Protobuf type {@code plugin.HaiUserAvatarRequest}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder<Builder> implements
// @@protoc_insertion_point(builder_implements:plugin.HaiUserAvatarRequest)
com.akaxin.proto.plugin.HaiUserAvatarProto.HaiUserAvatarRequestOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.akaxin.proto.plugin.HaiUserAvatarProto.internal_static_plugin_HaiUserAvatarRequest_descriptor;
}
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.akaxin.proto.plugin.HaiUserAvatarProto.internal_static_plugin_HaiUserAvatarRequest_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.akaxin.proto.plugin.HaiUserAvatarProto.HaiUserAvatarRequest.class, com.akaxin.proto.plugin.HaiUserAvatarProto.HaiUserAvatarRequest.Builder.class);
}
// Construct using com.akaxin.proto.plugin.HaiUserAvatarProto.HaiUserAvatarRequest.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.HaiUserAvatarProto.internal_static_plugin_HaiUserAvatarRequest_descriptor;
}
public com.akaxin.proto.plugin.HaiUserAvatarProto.HaiUserAvatarRequest getDefaultInstanceForType() {
return com.akaxin.proto.plugin.HaiUserAvatarProto.HaiUserAvatarRequest.getDefaultInstance();
}
public com.akaxin.proto.plugin.HaiUserAvatarProto.HaiUserAvatarRequest build() {
com.akaxin.proto.plugin.HaiUserAvatarProto.HaiUserAvatarRequest result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
public com.akaxin.proto.plugin.HaiUserAvatarProto.HaiUserAvatarRequest buildPartial() {
com.akaxin.proto.plugin.HaiUserAvatarProto.HaiUserAvatarRequest result = new com.akaxin.proto.plugin.HaiUserAvatarProto.HaiUserAvatarRequest(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.HaiUserAvatarProto.HaiUserAvatarRequest) {
return mergeFrom((com.akaxin.proto.plugin.HaiUserAvatarProto.HaiUserAvatarRequest)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.akaxin.proto.plugin.HaiUserAvatarProto.HaiUserAvatarRequest other) {
if (other == com.akaxin.proto.plugin.HaiUserAvatarProto.HaiUserAvatarRequest.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.HaiUserAvatarProto.HaiUserAvatarRequest parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (com.akaxin.proto.plugin.HaiUserAvatarProto.HaiUserAvatarRequest) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private java.lang.Object siteUserId_ = "";
/**
* <pre>
*用户的siteUserId
* </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>
*用户的siteUserId
* </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>
*用户的siteUserId
* </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>
*用户的siteUserId
* </pre>
*
* <code>string site_user_id = 1;</code>
*/
public Builder clearSiteUserId() {
siteUserId_ = getDefaultInstance().getSiteUserId();
onChanged();
return this;
}
/**
* <pre>
*用户的siteUserId
* </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.HaiUserAvatarRequest)
}
// @@protoc_insertion_point(class_scope:plugin.HaiUserAvatarRequest)
private static final com.akaxin.proto.plugin.HaiUserAvatarProto.HaiUserAvatarRequest DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.akaxin.proto.plugin.HaiUserAvatarProto.HaiUserAvatarRequest();
}
public static com.akaxin.proto.plugin.HaiUserAvatarProto.HaiUserAvatarRequest getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser<HaiUserAvatarRequest>
PARSER = new com.google.protobuf.AbstractParser<HaiUserAvatarRequest>() {
public HaiUserAvatarRequest parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new HaiUserAvatarRequest(input, extensionRegistry);
}
};
public static com.google.protobuf.Parser<HaiUserAvatarRequest> parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser<HaiUserAvatarRequest> getParserForType() {
return PARSER;
}
public com.akaxin.proto.plugin.HaiUserAvatarProto.HaiUserAvatarRequest getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
public interface HaiUserAvatarResponseOrBuilder extends
// @@protoc_insertion_point(interface_extends:plugin.HaiUserAvatarResponse)
com.google.protobuf.MessageOrBuilder {
/**
* <pre>
*头像图片的ID
* </pre>
*
* <code>string photo_id = 1;</code>
*/
java.lang.String getPhotoId();
/**
* <pre>
*头像图片的ID
* </pre>
*
* <code>string photo_id = 1;</code>
*/
com.google.protobuf.ByteString
getPhotoIdBytes();
/**
* <pre>
*图片二进制内容
* </pre>
*
* <code>bytes photo_content = 2;</code>
*/
com.google.protobuf.ByteString getPhotoContent();
}
/**
* Protobuf type {@code plugin.HaiUserAvatarResponse}
*/
public static final class HaiUserAvatarResponse extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:plugin.HaiUserAvatarResponse)
HaiUserAvatarResponseOrBuilder {
private static final long serialVersionUID = 0L;
// Use HaiUserAvatarResponse.newBuilder() to construct.
private HaiUserAvatarResponse(com.google.protobuf.GeneratedMessageV3.Builder<?> builder) {
super(builder);
}
private HaiUserAvatarResponse() {
photoId_ = "";
photoContent_ = com.google.protobuf.ByteString.EMPTY;
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private HaiUserAvatarResponse(
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();
photoId_ = s;
break;
}
case 18: {
photoContent_ = input.readBytes();
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.HaiUserAvatarProto.internal_static_plugin_HaiUserAvatarResponse_descriptor;
}
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.akaxin.proto.plugin.HaiUserAvatarProto.internal_static_plugin_HaiUserAvatarResponse_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.akaxin.proto.plugin.HaiUserAvatarProto.HaiUserAvatarResponse.class, com.akaxin.proto.plugin.HaiUserAvatarProto.HaiUserAvatarResponse.Builder.class);
}
public static final int PHOTO_ID_FIELD_NUMBER = 1;
private volatile java.lang.Object photoId_;
/**
* <pre>
*头像图片的ID
* </pre>
*
* <code>string photo_id = 1;</code>
*/
public java.lang.String getPhotoId() {
java.lang.Object ref = photoId_;
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();
photoId_ = s;
return s;
}
}
/**
* <pre>
*头像图片的ID
* </pre>
*
* <code>string photo_id = 1;</code>
*/
public com.google.protobuf.ByteString
getPhotoIdBytes() {
java.lang.Object ref = photoId_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
photoId_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int PHOTO_CONTENT_FIELD_NUMBER = 2;
private com.google.protobuf.ByteString photoContent_;
/**
* <pre>
*图片二进制内容
* </pre>
*
* <code>bytes photo_content = 2;</code>
*/
public com.google.protobuf.ByteString getPhotoContent() {
return photoContent_;
}
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 (!getPhotoIdBytes().isEmpty()) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 1, photoId_);
}
if (!photoContent_.isEmpty()) {
output.writeBytes(2, photoContent_);
}
unknownFields.writeTo(output);
}
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (!getPhotoIdBytes().isEmpty()) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, photoId_);
}
if (!photoContent_.isEmpty()) {
size += com.google.protobuf.CodedOutputStream
.computeBytesSize(2, photoContent_);
}
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.HaiUserAvatarProto.HaiUserAvatarResponse)) {
return super.equals(obj);
}
com.akaxin.proto.plugin.HaiUserAvatarProto.HaiUserAvatarResponse other = (com.akaxin.proto.plugin.HaiUserAvatarProto.HaiUserAvatarResponse) obj;
boolean result = true;
result = result && getPhotoId()
.equals(other.getPhotoId());
result = result && getPhotoContent()
.equals(other.getPhotoContent());
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) + PHOTO_ID_FIELD_NUMBER;
hash = (53 * hash) + getPhotoId().hashCode();
hash = (37 * hash) + PHOTO_CONTENT_FIELD_NUMBER;
hash = (53 * hash) + getPhotoContent().hashCode();
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.akaxin.proto.plugin.HaiUserAvatarProto.HaiUserAvatarResponse parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.akaxin.proto.plugin.HaiUserAvatarProto.HaiUserAvatarResponse 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.HaiUserAvatarProto.HaiUserAvatarResponse parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.akaxin.proto.plugin.HaiUserAvatarProto.HaiUserAvatarResponse 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.HaiUserAvatarProto.HaiUserAvatarResponse parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.akaxin.proto.plugin.HaiUserAvatarProto.HaiUserAvatarResponse parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.akaxin.proto.plugin.HaiUserAvatarProto.HaiUserAvatarResponse parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.akaxin.proto.plugin.HaiUserAvatarProto.HaiUserAvatarResponse 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.HaiUserAvatarProto.HaiUserAvatarResponse parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static com.akaxin.proto.plugin.HaiUserAvatarProto.HaiUserAvatarResponse 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.HaiUserAvatarProto.HaiUserAvatarResponse parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.akaxin.proto.plugin.HaiUserAvatarProto.HaiUserAvatarResponse 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.HaiUserAvatarProto.HaiUserAvatarResponse 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.HaiUserAvatarResponse}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder<Builder> implements
// @@protoc_insertion_point(builder_implements:plugin.HaiUserAvatarResponse)
com.akaxin.proto.plugin.HaiUserAvatarProto.HaiUserAvatarResponseOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.akaxin.proto.plugin.HaiUserAvatarProto.internal_static_plugin_HaiUserAvatarResponse_descriptor;
}
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.akaxin.proto.plugin.HaiUserAvatarProto.internal_static_plugin_HaiUserAvatarResponse_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.akaxin.proto.plugin.HaiUserAvatarProto.HaiUserAvatarResponse.class, com.akaxin.proto.plugin.HaiUserAvatarProto.HaiUserAvatarResponse.Builder.class);
}
// Construct using com.akaxin.proto.plugin.HaiUserAvatarProto.HaiUserAvatarResponse.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();
photoId_ = "";
photoContent_ = com.google.protobuf.ByteString.EMPTY;
return this;
}
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return com.akaxin.proto.plugin.HaiUserAvatarProto.internal_static_plugin_HaiUserAvatarResponse_descriptor;
}
public com.akaxin.proto.plugin.HaiUserAvatarProto.HaiUserAvatarResponse getDefaultInstanceForType() {
return com.akaxin.proto.plugin.HaiUserAvatarProto.HaiUserAvatarResponse.getDefaultInstance();
}
public com.akaxin.proto.plugin.HaiUserAvatarProto.HaiUserAvatarResponse build() {
com.akaxin.proto.plugin.HaiUserAvatarProto.HaiUserAvatarResponse result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
public com.akaxin.proto.plugin.HaiUserAvatarProto.HaiUserAvatarResponse buildPartial() {
com.akaxin.proto.plugin.HaiUserAvatarProto.HaiUserAvatarResponse result = new com.akaxin.proto.plugin.HaiUserAvatarProto.HaiUserAvatarResponse(this);
result.photoId_ = photoId_;
result.photoContent_ = photoContent_;
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.HaiUserAvatarProto.HaiUserAvatarResponse) {
return mergeFrom((com.akaxin.proto.plugin.HaiUserAvatarProto.HaiUserAvatarResponse)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.akaxin.proto.plugin.HaiUserAvatarProto.HaiUserAvatarResponse other) {
if (other == com.akaxin.proto.plugin.HaiUserAvatarProto.HaiUserAvatarResponse.getDefaultInstance()) return this;
if (!other.getPhotoId().isEmpty()) {
photoId_ = other.photoId_;
onChanged();
}
if (other.getPhotoContent() != com.google.protobuf.ByteString.EMPTY) {
setPhotoContent(other.getPhotoContent());
}
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.HaiUserAvatarProto.HaiUserAvatarResponse parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (com.akaxin.proto.plugin.HaiUserAvatarProto.HaiUserAvatarResponse) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private java.lang.Object photoId_ = "";
/**
* <pre>
*头像图片的ID
* </pre>
*
* <code>string photo_id = 1;</code>
*/
public java.lang.String getPhotoId() {
java.lang.Object ref = photoId_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
photoId_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* <pre>
*头像图片的ID
* </pre>
*
* <code>string photo_id = 1;</code>
*/
public com.google.protobuf.ByteString
getPhotoIdBytes() {
java.lang.Object ref = photoId_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
photoId_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* <pre>
*头像图片的ID
* </pre>
*
* <code>string photo_id = 1;</code>
*/
public Builder setPhotoId(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
photoId_ = value;
onChanged();
return this;
}
/**
* <pre>
*头像图片的ID
* </pre>
*
* <code>string photo_id = 1;</code>
*/
public Builder clearPhotoId() {
photoId_ = getDefaultInstance().getPhotoId();
onChanged();
return this;
}
/**
* <pre>
*头像图片的ID
* </pre>
*
* <code>string photo_id = 1;</code>
*/
public Builder setPhotoIdBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
photoId_ = value;
onChanged();
return this;
}
private com.google.protobuf.ByteString photoContent_ = com.google.protobuf.ByteString.EMPTY;
/**
* <pre>
*图片二进制内容
* </pre>
*
* <code>bytes photo_content = 2;</code>
*/
public com.google.protobuf.ByteString getPhotoContent() {
return photoContent_;
}
/**
* <pre>
*图片二进制内容
* </pre>
*
* <code>bytes photo_content = 2;</code>
*/
public Builder setPhotoContent(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
photoContent_ = value;
onChanged();
return this;
}
/**
* <pre>
*图片二进制内容
* </pre>
*
* <code>bytes photo_content = 2;</code>
*/
public Builder clearPhotoContent() {
photoContent_ = getDefaultInstance().getPhotoContent();
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.HaiUserAvatarResponse)
}
// @@protoc_insertion_point(class_scope:plugin.HaiUserAvatarResponse)
private static final com.akaxin.proto.plugin.HaiUserAvatarProto.HaiUserAvatarResponse DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.akaxin.proto.plugin.HaiUserAvatarProto.HaiUserAvatarResponse();
}
public static com.akaxin.proto.plugin.HaiUserAvatarProto.HaiUserAvatarResponse getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser<HaiUserAvatarResponse>
PARSER = new com.google.protobuf.AbstractParser<HaiUserAvatarResponse>() {
public HaiUserAvatarResponse parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new HaiUserAvatarResponse(input, extensionRegistry);
}
};
public static com.google.protobuf.Parser<HaiUserAvatarResponse> parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser<HaiUserAvatarResponse> getParserForType() {
return PARSER;
}
public com.akaxin.proto.plugin.HaiUserAvatarProto.HaiUserAvatarResponse getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
private static final com.google.protobuf.Descriptors.Descriptor
internal_static_plugin_HaiUserAvatarRequest_descriptor;
private static final
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internal_static_plugin_HaiUserAvatarRequest_fieldAccessorTable;
private static final com.google.protobuf.Descriptors.Descriptor
internal_static_plugin_HaiUserAvatarResponse_descriptor;
private static final
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internal_static_plugin_HaiUserAvatarResponse_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\034plugin/hai_user_avatar.proto\022\006plugin\"," +
"\n\024HaiUserAvatarRequest\022\024\n\014site_user_id\030\001" +
" \001(\t\"@\n\025HaiUserAvatarResponse\022\020\n\010photo_i" +
"d\030\001 \001(\t\022\025\n\rphoto_content\030\002 \001(\0142]\n\024HaiUse" +
"rAvatarService\022E\n\006avatar\022\034.plugin.HaiUse" +
"rAvatarRequest\032\035.plugin.HaiUserAvatarRes" +
"ponseB-\n\027com.akaxin.proto.pluginB\022HaiUse" +
"rAvatarProtob\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_HaiUserAvatarRequest_descriptor =
getDescriptor().getMessageTypes().get(0);
internal_static_plugin_HaiUserAvatarRequest_fieldAccessorTable = new
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
internal_static_plugin_HaiUserAvatarRequest_descriptor,
new java.lang.String[] { "SiteUserId", });
internal_static_plugin_HaiUserAvatarResponse_descriptor =
getDescriptor().getMessageTypes().get(1);
internal_static_plugin_HaiUserAvatarResponse_fieldAccessorTable = new
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
internal_static_plugin_HaiUserAvatarResponse_descriptor,
new java.lang.String[] { "PhotoId", "PhotoContent", });
}
// @@protoc_insertion_point(outer_class_scope)
}