com.google.photos.library.v1.proto.ShareAlbumResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of google-photos-library-client Show documentation
Show all versions of google-photos-library-client Show documentation
Google Photos Library API Client Library for Java
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/photos/library/v1/photos_library.proto
package com.google.photos.library.v1.proto;
/**
*
*
*
* Response to successfully sharing an album.
*
*
* Protobuf type {@code google.photos.library.v1.ShareAlbumResponse}
*/
public final class ShareAlbumResponse extends com.google.protobuf.GeneratedMessageV3
implements
// @@protoc_insertion_point(message_implements:google.photos.library.v1.ShareAlbumResponse)
ShareAlbumResponseOrBuilder {
private static final long serialVersionUID = 0L;
// Use ShareAlbumResponse.newBuilder() to construct.
private ShareAlbumResponse(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private ShareAlbumResponse() {}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(UnusedPrivateParameter unused) {
return new ShareAlbumResponse();
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet getUnknownFields() {
return this.unknownFields;
}
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.photos.library.v1.proto.LibraryServiceProto
.internal_static_google_photos_library_v1_ShareAlbumResponse_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.photos.library.v1.proto.LibraryServiceProto
.internal_static_google_photos_library_v1_ShareAlbumResponse_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.photos.library.v1.proto.ShareAlbumResponse.class,
com.google.photos.library.v1.proto.ShareAlbumResponse.Builder.class);
}
public static final int SHARE_INFO_FIELD_NUMBER = 1;
private com.google.photos.types.proto.ShareInfo shareInfo_;
/**
*
*
*
* Output only. Information about the shared album.
*
*
* .google.photos.types.ShareInfo share_info = 1;
*
* @return Whether the shareInfo field is set.
*/
@java.lang.Override
public boolean hasShareInfo() {
return shareInfo_ != null;
}
/**
*
*
*
* Output only. Information about the shared album.
*
*
* .google.photos.types.ShareInfo share_info = 1;
*
* @return The shareInfo.
*/
@java.lang.Override
public com.google.photos.types.proto.ShareInfo getShareInfo() {
return shareInfo_ == null
? com.google.photos.types.proto.ShareInfo.getDefaultInstance()
: shareInfo_;
}
/**
*
*
*
* Output only. Information about the shared album.
*
*
* .google.photos.types.ShareInfo share_info = 1;
*/
@java.lang.Override
public com.google.photos.types.proto.ShareInfoOrBuilder getShareInfoOrBuilder() {
return shareInfo_ == null
? com.google.photos.types.proto.ShareInfo.getDefaultInstance()
: shareInfo_;
}
private byte memoizedIsInitialized = -1;
@java.lang.Override
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
@java.lang.Override
public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException {
if (shareInfo_ != null) {
output.writeMessage(1, getShareInfo());
}
getUnknownFields().writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (shareInfo_ != null) {
size += com.google.protobuf.CodedOutputStream.computeMessageSize(1, getShareInfo());
}
size += getUnknownFields().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.google.photos.library.v1.proto.ShareAlbumResponse)) {
return super.equals(obj);
}
com.google.photos.library.v1.proto.ShareAlbumResponse other =
(com.google.photos.library.v1.proto.ShareAlbumResponse) obj;
if (hasShareInfo() != other.hasShareInfo()) return false;
if (hasShareInfo()) {
if (!getShareInfo().equals(other.getShareInfo())) return false;
}
if (!getUnknownFields().equals(other.getUnknownFields())) return false;
return true;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
if (hasShareInfo()) {
hash = (37 * hash) + SHARE_INFO_FIELD_NUMBER;
hash = (53 * hash) + getShareInfo().hashCode();
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.google.photos.library.v1.proto.ShareAlbumResponse parseFrom(
java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.photos.library.v1.proto.ShareAlbumResponse parseFrom(
java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.photos.library.v1.proto.ShareAlbumResponse parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.photos.library.v1.proto.ShareAlbumResponse parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.photos.library.v1.proto.ShareAlbumResponse parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.photos.library.v1.proto.ShareAlbumResponse parseFrom(
byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.photos.library.v1.proto.ShareAlbumResponse parseFrom(
java.io.InputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.photos.library.v1.proto.ShareAlbumResponse 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.google.photos.library.v1.proto.ShareAlbumResponse parseDelimitedFrom(
java.io.InputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input);
}
public static com.google.photos.library.v1.proto.ShareAlbumResponse 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.google.photos.library.v1.proto.ShareAlbumResponse parseFrom(
com.google.protobuf.CodedInputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.photos.library.v1.proto.ShareAlbumResponse parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(
PARSER, input, extensionRegistry);
}
@java.lang.Override
public Builder newBuilderForType() {
return newBuilder();
}
public static Builder newBuilder() {
return DEFAULT_INSTANCE.toBuilder();
}
public static Builder newBuilder(
com.google.photos.library.v1.proto.ShareAlbumResponse prototype) {
return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
}
@java.lang.Override
public Builder toBuilder() {
return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this);
}
@java.lang.Override
protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
*
*
*
* Response to successfully sharing an album.
*
*
* Protobuf type {@code google.photos.library.v1.ShareAlbumResponse}
*/
public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder
implements
// @@protoc_insertion_point(builder_implements:google.photos.library.v1.ShareAlbumResponse)
com.google.photos.library.v1.proto.ShareAlbumResponseOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.photos.library.v1.proto.LibraryServiceProto
.internal_static_google_photos_library_v1_ShareAlbumResponse_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.photos.library.v1.proto.LibraryServiceProto
.internal_static_google_photos_library_v1_ShareAlbumResponse_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.photos.library.v1.proto.ShareAlbumResponse.class,
com.google.photos.library.v1.proto.ShareAlbumResponse.Builder.class);
}
// Construct using com.google.photos.library.v1.proto.ShareAlbumResponse.newBuilder()
private Builder() {}
private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
shareInfo_ = null;
if (shareInfoBuilder_ != null) {
shareInfoBuilder_.dispose();
shareInfoBuilder_ = null;
}
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() {
return com.google.photos.library.v1.proto.LibraryServiceProto
.internal_static_google_photos_library_v1_ShareAlbumResponse_descriptor;
}
@java.lang.Override
public com.google.photos.library.v1.proto.ShareAlbumResponse getDefaultInstanceForType() {
return com.google.photos.library.v1.proto.ShareAlbumResponse.getDefaultInstance();
}
@java.lang.Override
public com.google.photos.library.v1.proto.ShareAlbumResponse build() {
com.google.photos.library.v1.proto.ShareAlbumResponse result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.google.photos.library.v1.proto.ShareAlbumResponse buildPartial() {
com.google.photos.library.v1.proto.ShareAlbumResponse result =
new com.google.photos.library.v1.proto.ShareAlbumResponse(this);
if (bitField0_ != 0) {
buildPartial0(result);
}
onBuilt();
return result;
}
private void buildPartial0(com.google.photos.library.v1.proto.ShareAlbumResponse result) {
int from_bitField0_ = bitField0_;
if (((from_bitField0_ & 0x00000001) != 0)) {
result.shareInfo_ = shareInfoBuilder_ == null ? shareInfo_ : shareInfoBuilder_.build();
}
}
@java.lang.Override
public Builder clone() {
return super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
return super.setField(field, value);
}
@java.lang.Override
public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) {
return super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) {
return super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
return super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof com.google.photos.library.v1.proto.ShareAlbumResponse) {
return mergeFrom((com.google.photos.library.v1.proto.ShareAlbumResponse) other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.google.photos.library.v1.proto.ShareAlbumResponse other) {
if (other == com.google.photos.library.v1.proto.ShareAlbumResponse.getDefaultInstance())
return this;
if (other.hasShareInfo()) {
mergeShareInfo(other.getShareInfo());
}
this.mergeUnknownFields(other.getUnknownFields());
onChanged();
return this;
}
@java.lang.Override
public final boolean isInitialized() {
return true;
}
@java.lang.Override
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 10:
{
input.readMessage(getShareInfoFieldBuilder().getBuilder(), extensionRegistry);
bitField0_ |= 0x00000001;
break;
} // case 10
default:
{
if (!super.parseUnknownField(input, extensionRegistry, tag)) {
done = true; // was an endgroup tag
}
break;
} // default:
} // switch (tag)
} // while (!done)
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.unwrapIOException();
} finally {
onChanged();
} // finally
return this;
}
private int bitField0_;
private com.google.photos.types.proto.ShareInfo shareInfo_;
private com.google.protobuf.SingleFieldBuilderV3<
com.google.photos.types.proto.ShareInfo,
com.google.photos.types.proto.ShareInfo.Builder,
com.google.photos.types.proto.ShareInfoOrBuilder>
shareInfoBuilder_;
/**
*
*
*
* Output only. Information about the shared album.
*
*
* .google.photos.types.ShareInfo share_info = 1;
*
* @return Whether the shareInfo field is set.
*/
public boolean hasShareInfo() {
return ((bitField0_ & 0x00000001) != 0);
}
/**
*
*
*
* Output only. Information about the shared album.
*
*
* .google.photos.types.ShareInfo share_info = 1;
*
* @return The shareInfo.
*/
public com.google.photos.types.proto.ShareInfo getShareInfo() {
if (shareInfoBuilder_ == null) {
return shareInfo_ == null
? com.google.photos.types.proto.ShareInfo.getDefaultInstance()
: shareInfo_;
} else {
return shareInfoBuilder_.getMessage();
}
}
/**
*
*
*
* Output only. Information about the shared album.
*
*
* .google.photos.types.ShareInfo share_info = 1;
*/
public Builder setShareInfo(com.google.photos.types.proto.ShareInfo value) {
if (shareInfoBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
shareInfo_ = value;
} else {
shareInfoBuilder_.setMessage(value);
}
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
*
*
* Output only. Information about the shared album.
*
*
* .google.photos.types.ShareInfo share_info = 1;
*/
public Builder setShareInfo(com.google.photos.types.proto.ShareInfo.Builder builderForValue) {
if (shareInfoBuilder_ == null) {
shareInfo_ = builderForValue.build();
} else {
shareInfoBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
*
*
* Output only. Information about the shared album.
*
*
* .google.photos.types.ShareInfo share_info = 1;
*/
public Builder mergeShareInfo(com.google.photos.types.proto.ShareInfo value) {
if (shareInfoBuilder_ == null) {
if (((bitField0_ & 0x00000001) != 0)
&& shareInfo_ != null
&& shareInfo_ != com.google.photos.types.proto.ShareInfo.getDefaultInstance()) {
getShareInfoBuilder().mergeFrom(value);
} else {
shareInfo_ = value;
}
} else {
shareInfoBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
*
*
* Output only. Information about the shared album.
*
*
* .google.photos.types.ShareInfo share_info = 1;
*/
public Builder clearShareInfo() {
bitField0_ = (bitField0_ & ~0x00000001);
shareInfo_ = null;
if (shareInfoBuilder_ != null) {
shareInfoBuilder_.dispose();
shareInfoBuilder_ = null;
}
onChanged();
return this;
}
/**
*
*
*
* Output only. Information about the shared album.
*
*
* .google.photos.types.ShareInfo share_info = 1;
*/
public com.google.photos.types.proto.ShareInfo.Builder getShareInfoBuilder() {
bitField0_ |= 0x00000001;
onChanged();
return getShareInfoFieldBuilder().getBuilder();
}
/**
*
*
*
* Output only. Information about the shared album.
*
*
* .google.photos.types.ShareInfo share_info = 1;
*/
public com.google.photos.types.proto.ShareInfoOrBuilder getShareInfoOrBuilder() {
if (shareInfoBuilder_ != null) {
return shareInfoBuilder_.getMessageOrBuilder();
} else {
return shareInfo_ == null
? com.google.photos.types.proto.ShareInfo.getDefaultInstance()
: shareInfo_;
}
}
/**
*
*
*
* Output only. Information about the shared album.
*
*
* .google.photos.types.ShareInfo share_info = 1;
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.google.photos.types.proto.ShareInfo,
com.google.photos.types.proto.ShareInfo.Builder,
com.google.photos.types.proto.ShareInfoOrBuilder>
getShareInfoFieldBuilder() {
if (shareInfoBuilder_ == null) {
shareInfoBuilder_ =
new com.google.protobuf.SingleFieldBuilderV3<
com.google.photos.types.proto.ShareInfo,
com.google.photos.types.proto.ShareInfo.Builder,
com.google.photos.types.proto.ShareInfoOrBuilder>(
getShareInfo(), getParentForChildren(), isClean());
shareInfo_ = null;
}
return shareInfoBuilder_;
}
@java.lang.Override
public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.setUnknownFields(unknownFields);
}
@java.lang.Override
public final Builder mergeUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.mergeUnknownFields(unknownFields);
}
// @@protoc_insertion_point(builder_scope:google.photos.library.v1.ShareAlbumResponse)
}
// @@protoc_insertion_point(class_scope:google.photos.library.v1.ShareAlbumResponse)
private static final com.google.photos.library.v1.proto.ShareAlbumResponse DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.google.photos.library.v1.proto.ShareAlbumResponse();
}
public static com.google.photos.library.v1.proto.ShareAlbumResponse getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
@java.lang.Override
public ShareAlbumResponse parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
Builder builder = newBuilder();
try {
builder.mergeFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(builder.buildPartial());
} catch (com.google.protobuf.UninitializedMessageException e) {
throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial());
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(e)
.setUnfinishedMessage(builder.buildPartial());
}
return builder.buildPartial();
}
};
public static com.google.protobuf.Parser parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
@java.lang.Override
public com.google.photos.library.v1.proto.ShareAlbumResponse getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}