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

1367 lines
47 KiB
Java
Executable File

// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: site/im_site_auth.proto
package com.akaxin.proto.site;
public final class ImSiteAuthProto {
private ImSiteAuthProto() {}
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 ImSiteAuthRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:site.ImSiteAuthRequest)
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>
*用户认证sessionID
* </pre>
*
* <code>string site_session_id = 2;</code>
*/
java.lang.String getSiteSessionId();
/**
* <pre>
*用户认证sessionID
* </pre>
*
* <code>string site_session_id = 2;</code>
*/
com.google.protobuf.ByteString
getSiteSessionIdBytes();
}
/**
* Protobuf type {@code site.ImSiteAuthRequest}
*/
public static final class ImSiteAuthRequest extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:site.ImSiteAuthRequest)
ImSiteAuthRequestOrBuilder {
private static final long serialVersionUID = 0L;
// Use ImSiteAuthRequest.newBuilder() to construct.
private ImSiteAuthRequest(com.google.protobuf.GeneratedMessageV3.Builder<?> builder) {
super(builder);
}
private ImSiteAuthRequest() {
siteUserId_ = "";
siteSessionId_ = "";
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private ImSiteAuthRequest(
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 18: {
java.lang.String s = input.readStringRequireUtf8();
siteSessionId_ = 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.site.ImSiteAuthProto.internal_static_site_ImSiteAuthRequest_descriptor;
}
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.akaxin.proto.site.ImSiteAuthProto.internal_static_site_ImSiteAuthRequest_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.akaxin.proto.site.ImSiteAuthProto.ImSiteAuthRequest.class, com.akaxin.proto.site.ImSiteAuthProto.ImSiteAuthRequest.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 SITE_SESSION_ID_FIELD_NUMBER = 2;
private volatile java.lang.Object siteSessionId_;
/**
* <pre>
*用户认证sessionID
* </pre>
*
* <code>string site_session_id = 2;</code>
*/
public java.lang.String getSiteSessionId() {
java.lang.Object ref = siteSessionId_;
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();
siteSessionId_ = s;
return s;
}
}
/**
* <pre>
*用户认证sessionID
* </pre>
*
* <code>string site_session_id = 2;</code>
*/
public com.google.protobuf.ByteString
getSiteSessionIdBytes() {
java.lang.Object ref = siteSessionId_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
siteSessionId_ = 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_);
}
if (!getSiteSessionIdBytes().isEmpty()) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 2, siteSessionId_);
}
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 (!getSiteSessionIdBytes().isEmpty()) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, siteSessionId_);
}
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.ImSiteAuthProto.ImSiteAuthRequest)) {
return super.equals(obj);
}
com.akaxin.proto.site.ImSiteAuthProto.ImSiteAuthRequest other = (com.akaxin.proto.site.ImSiteAuthProto.ImSiteAuthRequest) obj;
boolean result = true;
result = result && getSiteUserId()
.equals(other.getSiteUserId());
result = result && getSiteSessionId()
.equals(other.getSiteSessionId());
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) + SITE_SESSION_ID_FIELD_NUMBER;
hash = (53 * hash) + getSiteSessionId().hashCode();
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.akaxin.proto.site.ImSiteAuthProto.ImSiteAuthRequest parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.akaxin.proto.site.ImSiteAuthProto.ImSiteAuthRequest 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.ImSiteAuthProto.ImSiteAuthRequest parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.akaxin.proto.site.ImSiteAuthProto.ImSiteAuthRequest 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.ImSiteAuthProto.ImSiteAuthRequest parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.akaxin.proto.site.ImSiteAuthProto.ImSiteAuthRequest parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.akaxin.proto.site.ImSiteAuthProto.ImSiteAuthRequest parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.akaxin.proto.site.ImSiteAuthProto.ImSiteAuthRequest 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.ImSiteAuthProto.ImSiteAuthRequest parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static com.akaxin.proto.site.ImSiteAuthProto.ImSiteAuthRequest 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.ImSiteAuthProto.ImSiteAuthRequest parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.akaxin.proto.site.ImSiteAuthProto.ImSiteAuthRequest 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.ImSiteAuthProto.ImSiteAuthRequest 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.ImSiteAuthRequest}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder<Builder> implements
// @@protoc_insertion_point(builder_implements:site.ImSiteAuthRequest)
com.akaxin.proto.site.ImSiteAuthProto.ImSiteAuthRequestOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.akaxin.proto.site.ImSiteAuthProto.internal_static_site_ImSiteAuthRequest_descriptor;
}
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.akaxin.proto.site.ImSiteAuthProto.internal_static_site_ImSiteAuthRequest_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.akaxin.proto.site.ImSiteAuthProto.ImSiteAuthRequest.class, com.akaxin.proto.site.ImSiteAuthProto.ImSiteAuthRequest.Builder.class);
}
// Construct using com.akaxin.proto.site.ImSiteAuthProto.ImSiteAuthRequest.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_ = "";
siteSessionId_ = "";
return this;
}
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return com.akaxin.proto.site.ImSiteAuthProto.internal_static_site_ImSiteAuthRequest_descriptor;
}
public com.akaxin.proto.site.ImSiteAuthProto.ImSiteAuthRequest getDefaultInstanceForType() {
return com.akaxin.proto.site.ImSiteAuthProto.ImSiteAuthRequest.getDefaultInstance();
}
public com.akaxin.proto.site.ImSiteAuthProto.ImSiteAuthRequest build() {
com.akaxin.proto.site.ImSiteAuthProto.ImSiteAuthRequest result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
public com.akaxin.proto.site.ImSiteAuthProto.ImSiteAuthRequest buildPartial() {
com.akaxin.proto.site.ImSiteAuthProto.ImSiteAuthRequest result = new com.akaxin.proto.site.ImSiteAuthProto.ImSiteAuthRequest(this);
result.siteUserId_ = siteUserId_;
result.siteSessionId_ = siteSessionId_;
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.ImSiteAuthProto.ImSiteAuthRequest) {
return mergeFrom((com.akaxin.proto.site.ImSiteAuthProto.ImSiteAuthRequest)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.akaxin.proto.site.ImSiteAuthProto.ImSiteAuthRequest other) {
if (other == com.akaxin.proto.site.ImSiteAuthProto.ImSiteAuthRequest.getDefaultInstance()) return this;
if (!other.getSiteUserId().isEmpty()) {
siteUserId_ = other.siteUserId_;
onChanged();
}
if (!other.getSiteSessionId().isEmpty()) {
siteSessionId_ = other.siteSessionId_;
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.site.ImSiteAuthProto.ImSiteAuthRequest parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (com.akaxin.proto.site.ImSiteAuthProto.ImSiteAuthRequest) 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 java.lang.Object siteSessionId_ = "";
/**
* <pre>
*用户认证sessionID
* </pre>
*
* <code>string site_session_id = 2;</code>
*/
public java.lang.String getSiteSessionId() {
java.lang.Object ref = siteSessionId_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
siteSessionId_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* <pre>
*用户认证sessionID
* </pre>
*
* <code>string site_session_id = 2;</code>
*/
public com.google.protobuf.ByteString
getSiteSessionIdBytes() {
java.lang.Object ref = siteSessionId_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
siteSessionId_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* <pre>
*用户认证sessionID
* </pre>
*
* <code>string site_session_id = 2;</code>
*/
public Builder setSiteSessionId(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
siteSessionId_ = value;
onChanged();
return this;
}
/**
* <pre>
*用户认证sessionID
* </pre>
*
* <code>string site_session_id = 2;</code>
*/
public Builder clearSiteSessionId() {
siteSessionId_ = getDefaultInstance().getSiteSessionId();
onChanged();
return this;
}
/**
* <pre>
*用户认证sessionID
* </pre>
*
* <code>string site_session_id = 2;</code>
*/
public Builder setSiteSessionIdBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
siteSessionId_ = 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:site.ImSiteAuthRequest)
}
// @@protoc_insertion_point(class_scope:site.ImSiteAuthRequest)
private static final com.akaxin.proto.site.ImSiteAuthProto.ImSiteAuthRequest DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.akaxin.proto.site.ImSiteAuthProto.ImSiteAuthRequest();
}
public static com.akaxin.proto.site.ImSiteAuthProto.ImSiteAuthRequest getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser<ImSiteAuthRequest>
PARSER = new com.google.protobuf.AbstractParser<ImSiteAuthRequest>() {
public ImSiteAuthRequest parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new ImSiteAuthRequest(input, extensionRegistry);
}
};
public static com.google.protobuf.Parser<ImSiteAuthRequest> parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser<ImSiteAuthRequest> getParserForType() {
return PARSER;
}
public com.akaxin.proto.site.ImSiteAuthProto.ImSiteAuthRequest getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
public interface ImSiteAuthResponseOrBuilder extends
// @@protoc_insertion_point(interface_extends:site.ImSiteAuthResponse)
com.google.protobuf.MessageOrBuilder {
/**
* <pre>
*服务站点的地址
* </pre>
*
* <code>string site_server = 1;</code>
*/
java.lang.String getSiteServer();
/**
* <pre>
*服务站点的地址
* </pre>
*
* <code>string site_server = 1;</code>
*/
com.google.protobuf.ByteString
getSiteServerBytes();
}
/**
* Protobuf type {@code site.ImSiteAuthResponse}
*/
public static final class ImSiteAuthResponse extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:site.ImSiteAuthResponse)
ImSiteAuthResponseOrBuilder {
private static final long serialVersionUID = 0L;
// Use ImSiteAuthResponse.newBuilder() to construct.
private ImSiteAuthResponse(com.google.protobuf.GeneratedMessageV3.Builder<?> builder) {
super(builder);
}
private ImSiteAuthResponse() {
siteServer_ = "";
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private ImSiteAuthResponse(
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();
siteServer_ = 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.site.ImSiteAuthProto.internal_static_site_ImSiteAuthResponse_descriptor;
}
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.akaxin.proto.site.ImSiteAuthProto.internal_static_site_ImSiteAuthResponse_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.akaxin.proto.site.ImSiteAuthProto.ImSiteAuthResponse.class, com.akaxin.proto.site.ImSiteAuthProto.ImSiteAuthResponse.Builder.class);
}
public static final int SITE_SERVER_FIELD_NUMBER = 1;
private volatile java.lang.Object siteServer_;
/**
* <pre>
*服务站点的地址
* </pre>
*
* <code>string site_server = 1;</code>
*/
public java.lang.String getSiteServer() {
java.lang.Object ref = siteServer_;
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();
siteServer_ = s;
return s;
}
}
/**
* <pre>
*服务站点的地址
* </pre>
*
* <code>string site_server = 1;</code>
*/
public com.google.protobuf.ByteString
getSiteServerBytes() {
java.lang.Object ref = siteServer_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
siteServer_ = 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 (!getSiteServerBytes().isEmpty()) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 1, siteServer_);
}
unknownFields.writeTo(output);
}
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (!getSiteServerBytes().isEmpty()) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, siteServer_);
}
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.ImSiteAuthProto.ImSiteAuthResponse)) {
return super.equals(obj);
}
com.akaxin.proto.site.ImSiteAuthProto.ImSiteAuthResponse other = (com.akaxin.proto.site.ImSiteAuthProto.ImSiteAuthResponse) obj;
boolean result = true;
result = result && getSiteServer()
.equals(other.getSiteServer());
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_SERVER_FIELD_NUMBER;
hash = (53 * hash) + getSiteServer().hashCode();
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.akaxin.proto.site.ImSiteAuthProto.ImSiteAuthResponse parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.akaxin.proto.site.ImSiteAuthProto.ImSiteAuthResponse 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.ImSiteAuthProto.ImSiteAuthResponse parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.akaxin.proto.site.ImSiteAuthProto.ImSiteAuthResponse 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.ImSiteAuthProto.ImSiteAuthResponse parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.akaxin.proto.site.ImSiteAuthProto.ImSiteAuthResponse parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.akaxin.proto.site.ImSiteAuthProto.ImSiteAuthResponse parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.akaxin.proto.site.ImSiteAuthProto.ImSiteAuthResponse 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.ImSiteAuthProto.ImSiteAuthResponse parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static com.akaxin.proto.site.ImSiteAuthProto.ImSiteAuthResponse 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.ImSiteAuthProto.ImSiteAuthResponse parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.akaxin.proto.site.ImSiteAuthProto.ImSiteAuthResponse 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.ImSiteAuthProto.ImSiteAuthResponse 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.ImSiteAuthResponse}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder<Builder> implements
// @@protoc_insertion_point(builder_implements:site.ImSiteAuthResponse)
com.akaxin.proto.site.ImSiteAuthProto.ImSiteAuthResponseOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.akaxin.proto.site.ImSiteAuthProto.internal_static_site_ImSiteAuthResponse_descriptor;
}
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.akaxin.proto.site.ImSiteAuthProto.internal_static_site_ImSiteAuthResponse_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.akaxin.proto.site.ImSiteAuthProto.ImSiteAuthResponse.class, com.akaxin.proto.site.ImSiteAuthProto.ImSiteAuthResponse.Builder.class);
}
// Construct using com.akaxin.proto.site.ImSiteAuthProto.ImSiteAuthResponse.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();
siteServer_ = "";
return this;
}
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return com.akaxin.proto.site.ImSiteAuthProto.internal_static_site_ImSiteAuthResponse_descriptor;
}
public com.akaxin.proto.site.ImSiteAuthProto.ImSiteAuthResponse getDefaultInstanceForType() {
return com.akaxin.proto.site.ImSiteAuthProto.ImSiteAuthResponse.getDefaultInstance();
}
public com.akaxin.proto.site.ImSiteAuthProto.ImSiteAuthResponse build() {
com.akaxin.proto.site.ImSiteAuthProto.ImSiteAuthResponse result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
public com.akaxin.proto.site.ImSiteAuthProto.ImSiteAuthResponse buildPartial() {
com.akaxin.proto.site.ImSiteAuthProto.ImSiteAuthResponse result = new com.akaxin.proto.site.ImSiteAuthProto.ImSiteAuthResponse(this);
result.siteServer_ = siteServer_;
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.ImSiteAuthProto.ImSiteAuthResponse) {
return mergeFrom((com.akaxin.proto.site.ImSiteAuthProto.ImSiteAuthResponse)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.akaxin.proto.site.ImSiteAuthProto.ImSiteAuthResponse other) {
if (other == com.akaxin.proto.site.ImSiteAuthProto.ImSiteAuthResponse.getDefaultInstance()) return this;
if (!other.getSiteServer().isEmpty()) {
siteServer_ = other.siteServer_;
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.site.ImSiteAuthProto.ImSiteAuthResponse parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (com.akaxin.proto.site.ImSiteAuthProto.ImSiteAuthResponse) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private java.lang.Object siteServer_ = "";
/**
* <pre>
*服务站点的地址
* </pre>
*
* <code>string site_server = 1;</code>
*/
public java.lang.String getSiteServer() {
java.lang.Object ref = siteServer_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
siteServer_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* <pre>
*服务站点的地址
* </pre>
*
* <code>string site_server = 1;</code>
*/
public com.google.protobuf.ByteString
getSiteServerBytes() {
java.lang.Object ref = siteServer_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
siteServer_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* <pre>
*服务站点的地址
* </pre>
*
* <code>string site_server = 1;</code>
*/
public Builder setSiteServer(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
siteServer_ = value;
onChanged();
return this;
}
/**
* <pre>
*服务站点的地址
* </pre>
*
* <code>string site_server = 1;</code>
*/
public Builder clearSiteServer() {
siteServer_ = getDefaultInstance().getSiteServer();
onChanged();
return this;
}
/**
* <pre>
*服务站点的地址
* </pre>
*
* <code>string site_server = 1;</code>
*/
public Builder setSiteServerBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
siteServer_ = 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:site.ImSiteAuthResponse)
}
// @@protoc_insertion_point(class_scope:site.ImSiteAuthResponse)
private static final com.akaxin.proto.site.ImSiteAuthProto.ImSiteAuthResponse DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.akaxin.proto.site.ImSiteAuthProto.ImSiteAuthResponse();
}
public static com.akaxin.proto.site.ImSiteAuthProto.ImSiteAuthResponse getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser<ImSiteAuthResponse>
PARSER = new com.google.protobuf.AbstractParser<ImSiteAuthResponse>() {
public ImSiteAuthResponse parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new ImSiteAuthResponse(input, extensionRegistry);
}
};
public static com.google.protobuf.Parser<ImSiteAuthResponse> parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser<ImSiteAuthResponse> getParserForType() {
return PARSER;
}
public com.akaxin.proto.site.ImSiteAuthProto.ImSiteAuthResponse getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
private static final com.google.protobuf.Descriptors.Descriptor
internal_static_site_ImSiteAuthRequest_descriptor;
private static final
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internal_static_site_ImSiteAuthRequest_fieldAccessorTable;
private static final com.google.protobuf.Descriptors.Descriptor
internal_static_site_ImSiteAuthResponse_descriptor;
private static final
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internal_static_site_ImSiteAuthResponse_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\027site/im_site_auth.proto\022\004site\"B\n\021ImSit" +
"eAuthRequest\022\024\n\014site_user_id\030\001 \001(\t\022\027\n\017si" +
"te_session_id\030\002 \001(\t\")\n\022ImSiteAuthRespons" +
"e\022\023\n\013site_server\030\001 \001(\t2N\n\021ImSiteAuthServ" +
"ice\0229\n\004auth\022\027.site.ImSiteAuthRequest\032\030.s" +
"ite.ImSiteAuthResponseB(\n\025com.akaxin.pro" +
"to.siteB\017ImSiteAuthProtob\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_site_ImSiteAuthRequest_descriptor =
getDescriptor().getMessageTypes().get(0);
internal_static_site_ImSiteAuthRequest_fieldAccessorTable = new
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
internal_static_site_ImSiteAuthRequest_descriptor,
new java.lang.String[] { "SiteUserId", "SiteSessionId", });
internal_static_site_ImSiteAuthResponse_descriptor =
getDescriptor().getMessageTypes().get(1);
internal_static_site_ImSiteAuthResponse_fieldAccessorTable = new
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
internal_static_site_ImSiteAuthResponse_descriptor,
new java.lang.String[] { "SiteServer", });
}
// @@protoc_insertion_point(outer_class_scope)
}