grpc.webhook._Webhook Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of client-protos Show documentation
Show all versions of client-protos Show documentation
Java protobuf protocols that define the Momento gRPC wire format
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: webhook.proto
package grpc.webhook;
/**
* Protobuf type {@code webhook._Webhook}
*/
public final class _Webhook extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:webhook._Webhook)
_WebhookOrBuilder {
private static final long serialVersionUID = 0L;
// Use _Webhook.newBuilder() to construct.
private _Webhook(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private _Webhook() {
topicName_ = "";
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(
UnusedPrivateParameter unused) {
return new _Webhook();
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return grpc.webhook.WebhookOuterClass.internal_static_webhook__Webhook_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return grpc.webhook.WebhookOuterClass.internal_static_webhook__Webhook_fieldAccessorTable
.ensureFieldAccessorsInitialized(
grpc.webhook._Webhook.class, grpc.webhook._Webhook.Builder.class);
}
public static final int WEBHOOK_ID_FIELD_NUMBER = 1;
private grpc.webhook._WebhookId webhookId_;
/**
* .webhook._WebhookId webhook_id = 1;
* @return Whether the webhookId field is set.
*/
@java.lang.Override
public boolean hasWebhookId() {
return webhookId_ != null;
}
/**
* .webhook._WebhookId webhook_id = 1;
* @return The webhookId.
*/
@java.lang.Override
public grpc.webhook._WebhookId getWebhookId() {
return webhookId_ == null ? grpc.webhook._WebhookId.getDefaultInstance() : webhookId_;
}
/**
* .webhook._WebhookId webhook_id = 1;
*/
@java.lang.Override
public grpc.webhook._WebhookIdOrBuilder getWebhookIdOrBuilder() {
return webhookId_ == null ? grpc.webhook._WebhookId.getDefaultInstance() : webhookId_;
}
public static final int TOPIC_NAME_FIELD_NUMBER = 2;
@SuppressWarnings("serial")
private volatile java.lang.Object topicName_ = "";
/**
* string topic_name = 2;
* @return The topicName.
*/
@java.lang.Override
public java.lang.String getTopicName() {
java.lang.Object ref = topicName_;
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();
topicName_ = s;
return s;
}
}
/**
* string topic_name = 2;
* @return The bytes for topicName.
*/
@java.lang.Override
public com.google.protobuf.ByteString
getTopicNameBytes() {
java.lang.Object ref = topicName_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
topicName_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int DESTINATION_FIELD_NUMBER = 3;
private grpc.webhook._WebhookDestination destination_;
/**
* .webhook._WebhookDestination destination = 3;
* @return Whether the destination field is set.
*/
@java.lang.Override
public boolean hasDestination() {
return destination_ != null;
}
/**
* .webhook._WebhookDestination destination = 3;
* @return The destination.
*/
@java.lang.Override
public grpc.webhook._WebhookDestination getDestination() {
return destination_ == null ? grpc.webhook._WebhookDestination.getDefaultInstance() : destination_;
}
/**
* .webhook._WebhookDestination destination = 3;
*/
@java.lang.Override
public grpc.webhook._WebhookDestinationOrBuilder getDestinationOrBuilder() {
return destination_ == null ? grpc.webhook._WebhookDestination.getDefaultInstance() : destination_;
}
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 (webhookId_ != null) {
output.writeMessage(1, getWebhookId());
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(topicName_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 2, topicName_);
}
if (destination_ != null) {
output.writeMessage(3, getDestination());
}
getUnknownFields().writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (webhookId_ != null) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(1, getWebhookId());
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(topicName_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, topicName_);
}
if (destination_ != null) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(3, getDestination());
}
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 grpc.webhook._Webhook)) {
return super.equals(obj);
}
grpc.webhook._Webhook other = (grpc.webhook._Webhook) obj;
if (hasWebhookId() != other.hasWebhookId()) return false;
if (hasWebhookId()) {
if (!getWebhookId()
.equals(other.getWebhookId())) return false;
}
if (!getTopicName()
.equals(other.getTopicName())) return false;
if (hasDestination() != other.hasDestination()) return false;
if (hasDestination()) {
if (!getDestination()
.equals(other.getDestination())) 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 (hasWebhookId()) {
hash = (37 * hash) + WEBHOOK_ID_FIELD_NUMBER;
hash = (53 * hash) + getWebhookId().hashCode();
}
hash = (37 * hash) + TOPIC_NAME_FIELD_NUMBER;
hash = (53 * hash) + getTopicName().hashCode();
if (hasDestination()) {
hash = (37 * hash) + DESTINATION_FIELD_NUMBER;
hash = (53 * hash) + getDestination().hashCode();
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static grpc.webhook._Webhook parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static grpc.webhook._Webhook parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static grpc.webhook._Webhook parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static grpc.webhook._Webhook parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static grpc.webhook._Webhook parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static grpc.webhook._Webhook parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static grpc.webhook._Webhook parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static grpc.webhook._Webhook 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 grpc.webhook._Webhook parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static grpc.webhook._Webhook 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 grpc.webhook._Webhook parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static grpc.webhook._Webhook 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(grpc.webhook._Webhook 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;
}
/**
* Protobuf type {@code webhook._Webhook}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:webhook._Webhook)
grpc.webhook._WebhookOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return grpc.webhook.WebhookOuterClass.internal_static_webhook__Webhook_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return grpc.webhook.WebhookOuterClass.internal_static_webhook__Webhook_fieldAccessorTable
.ensureFieldAccessorsInitialized(
grpc.webhook._Webhook.class, grpc.webhook._Webhook.Builder.class);
}
// Construct using grpc.webhook._Webhook.newBuilder()
private Builder() {
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
webhookId_ = null;
if (webhookIdBuilder_ != null) {
webhookIdBuilder_.dispose();
webhookIdBuilder_ = null;
}
topicName_ = "";
destination_ = null;
if (destinationBuilder_ != null) {
destinationBuilder_.dispose();
destinationBuilder_ = null;
}
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return grpc.webhook.WebhookOuterClass.internal_static_webhook__Webhook_descriptor;
}
@java.lang.Override
public grpc.webhook._Webhook getDefaultInstanceForType() {
return grpc.webhook._Webhook.getDefaultInstance();
}
@java.lang.Override
public grpc.webhook._Webhook build() {
grpc.webhook._Webhook result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public grpc.webhook._Webhook buildPartial() {
grpc.webhook._Webhook result = new grpc.webhook._Webhook(this);
if (bitField0_ != 0) { buildPartial0(result); }
onBuilt();
return result;
}
private void buildPartial0(grpc.webhook._Webhook result) {
int from_bitField0_ = bitField0_;
if (((from_bitField0_ & 0x00000001) != 0)) {
result.webhookId_ = webhookIdBuilder_ == null
? webhookId_
: webhookIdBuilder_.build();
}
if (((from_bitField0_ & 0x00000002) != 0)) {
result.topicName_ = topicName_;
}
if (((from_bitField0_ & 0x00000004) != 0)) {
result.destination_ = destinationBuilder_ == null
? destination_
: destinationBuilder_.build();
}
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof grpc.webhook._Webhook) {
return mergeFrom((grpc.webhook._Webhook)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(grpc.webhook._Webhook other) {
if (other == grpc.webhook._Webhook.getDefaultInstance()) return this;
if (other.hasWebhookId()) {
mergeWebhookId(other.getWebhookId());
}
if (!other.getTopicName().isEmpty()) {
topicName_ = other.topicName_;
bitField0_ |= 0x00000002;
onChanged();
}
if (other.hasDestination()) {
mergeDestination(other.getDestination());
}
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(
getWebhookIdFieldBuilder().getBuilder(),
extensionRegistry);
bitField0_ |= 0x00000001;
break;
} // case 10
case 18: {
topicName_ = input.readStringRequireUtf8();
bitField0_ |= 0x00000002;
break;
} // case 18
case 26: {
input.readMessage(
getDestinationFieldBuilder().getBuilder(),
extensionRegistry);
bitField0_ |= 0x00000004;
break;
} // case 26
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 grpc.webhook._WebhookId webhookId_;
private com.google.protobuf.SingleFieldBuilderV3<
grpc.webhook._WebhookId, grpc.webhook._WebhookId.Builder, grpc.webhook._WebhookIdOrBuilder> webhookIdBuilder_;
/**
* .webhook._WebhookId webhook_id = 1;
* @return Whether the webhookId field is set.
*/
public boolean hasWebhookId() {
return ((bitField0_ & 0x00000001) != 0);
}
/**
* .webhook._WebhookId webhook_id = 1;
* @return The webhookId.
*/
public grpc.webhook._WebhookId getWebhookId() {
if (webhookIdBuilder_ == null) {
return webhookId_ == null ? grpc.webhook._WebhookId.getDefaultInstance() : webhookId_;
} else {
return webhookIdBuilder_.getMessage();
}
}
/**
* .webhook._WebhookId webhook_id = 1;
*/
public Builder setWebhookId(grpc.webhook._WebhookId value) {
if (webhookIdBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
webhookId_ = value;
} else {
webhookIdBuilder_.setMessage(value);
}
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
* .webhook._WebhookId webhook_id = 1;
*/
public Builder setWebhookId(
grpc.webhook._WebhookId.Builder builderForValue) {
if (webhookIdBuilder_ == null) {
webhookId_ = builderForValue.build();
} else {
webhookIdBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
* .webhook._WebhookId webhook_id = 1;
*/
public Builder mergeWebhookId(grpc.webhook._WebhookId value) {
if (webhookIdBuilder_ == null) {
if (((bitField0_ & 0x00000001) != 0) &&
webhookId_ != null &&
webhookId_ != grpc.webhook._WebhookId.getDefaultInstance()) {
getWebhookIdBuilder().mergeFrom(value);
} else {
webhookId_ = value;
}
} else {
webhookIdBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
* .webhook._WebhookId webhook_id = 1;
*/
public Builder clearWebhookId() {
bitField0_ = (bitField0_ & ~0x00000001);
webhookId_ = null;
if (webhookIdBuilder_ != null) {
webhookIdBuilder_.dispose();
webhookIdBuilder_ = null;
}
onChanged();
return this;
}
/**
* .webhook._WebhookId webhook_id = 1;
*/
public grpc.webhook._WebhookId.Builder getWebhookIdBuilder() {
bitField0_ |= 0x00000001;
onChanged();
return getWebhookIdFieldBuilder().getBuilder();
}
/**
* .webhook._WebhookId webhook_id = 1;
*/
public grpc.webhook._WebhookIdOrBuilder getWebhookIdOrBuilder() {
if (webhookIdBuilder_ != null) {
return webhookIdBuilder_.getMessageOrBuilder();
} else {
return webhookId_ == null ?
grpc.webhook._WebhookId.getDefaultInstance() : webhookId_;
}
}
/**
* .webhook._WebhookId webhook_id = 1;
*/
private com.google.protobuf.SingleFieldBuilderV3<
grpc.webhook._WebhookId, grpc.webhook._WebhookId.Builder, grpc.webhook._WebhookIdOrBuilder>
getWebhookIdFieldBuilder() {
if (webhookIdBuilder_ == null) {
webhookIdBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
grpc.webhook._WebhookId, grpc.webhook._WebhookId.Builder, grpc.webhook._WebhookIdOrBuilder>(
getWebhookId(),
getParentForChildren(),
isClean());
webhookId_ = null;
}
return webhookIdBuilder_;
}
private java.lang.Object topicName_ = "";
/**
* string topic_name = 2;
* @return The topicName.
*/
public java.lang.String getTopicName() {
java.lang.Object ref = topicName_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
topicName_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* string topic_name = 2;
* @return The bytes for topicName.
*/
public com.google.protobuf.ByteString
getTopicNameBytes() {
java.lang.Object ref = topicName_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
topicName_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* string topic_name = 2;
* @param value The topicName to set.
* @return This builder for chaining.
*/
public Builder setTopicName(
java.lang.String value) {
if (value == null) { throw new NullPointerException(); }
topicName_ = value;
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
* string topic_name = 2;
* @return This builder for chaining.
*/
public Builder clearTopicName() {
topicName_ = getDefaultInstance().getTopicName();
bitField0_ = (bitField0_ & ~0x00000002);
onChanged();
return this;
}
/**
* string topic_name = 2;
* @param value The bytes for topicName to set.
* @return This builder for chaining.
*/
public Builder setTopicNameBytes(
com.google.protobuf.ByteString value) {
if (value == null) { throw new NullPointerException(); }
checkByteStringIsUtf8(value);
topicName_ = value;
bitField0_ |= 0x00000002;
onChanged();
return this;
}
private grpc.webhook._WebhookDestination destination_;
private com.google.protobuf.SingleFieldBuilderV3<
grpc.webhook._WebhookDestination, grpc.webhook._WebhookDestination.Builder, grpc.webhook._WebhookDestinationOrBuilder> destinationBuilder_;
/**
* .webhook._WebhookDestination destination = 3;
* @return Whether the destination field is set.
*/
public boolean hasDestination() {
return ((bitField0_ & 0x00000004) != 0);
}
/**
* .webhook._WebhookDestination destination = 3;
* @return The destination.
*/
public grpc.webhook._WebhookDestination getDestination() {
if (destinationBuilder_ == null) {
return destination_ == null ? grpc.webhook._WebhookDestination.getDefaultInstance() : destination_;
} else {
return destinationBuilder_.getMessage();
}
}
/**
* .webhook._WebhookDestination destination = 3;
*/
public Builder setDestination(grpc.webhook._WebhookDestination value) {
if (destinationBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
destination_ = value;
} else {
destinationBuilder_.setMessage(value);
}
bitField0_ |= 0x00000004;
onChanged();
return this;
}
/**
* .webhook._WebhookDestination destination = 3;
*/
public Builder setDestination(
grpc.webhook._WebhookDestination.Builder builderForValue) {
if (destinationBuilder_ == null) {
destination_ = builderForValue.build();
} else {
destinationBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000004;
onChanged();
return this;
}
/**
* .webhook._WebhookDestination destination = 3;
*/
public Builder mergeDestination(grpc.webhook._WebhookDestination value) {
if (destinationBuilder_ == null) {
if (((bitField0_ & 0x00000004) != 0) &&
destination_ != null &&
destination_ != grpc.webhook._WebhookDestination.getDefaultInstance()) {
getDestinationBuilder().mergeFrom(value);
} else {
destination_ = value;
}
} else {
destinationBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00000004;
onChanged();
return this;
}
/**
* .webhook._WebhookDestination destination = 3;
*/
public Builder clearDestination() {
bitField0_ = (bitField0_ & ~0x00000004);
destination_ = null;
if (destinationBuilder_ != null) {
destinationBuilder_.dispose();
destinationBuilder_ = null;
}
onChanged();
return this;
}
/**
* .webhook._WebhookDestination destination = 3;
*/
public grpc.webhook._WebhookDestination.Builder getDestinationBuilder() {
bitField0_ |= 0x00000004;
onChanged();
return getDestinationFieldBuilder().getBuilder();
}
/**
* .webhook._WebhookDestination destination = 3;
*/
public grpc.webhook._WebhookDestinationOrBuilder getDestinationOrBuilder() {
if (destinationBuilder_ != null) {
return destinationBuilder_.getMessageOrBuilder();
} else {
return destination_ == null ?
grpc.webhook._WebhookDestination.getDefaultInstance() : destination_;
}
}
/**
* .webhook._WebhookDestination destination = 3;
*/
private com.google.protobuf.SingleFieldBuilderV3<
grpc.webhook._WebhookDestination, grpc.webhook._WebhookDestination.Builder, grpc.webhook._WebhookDestinationOrBuilder>
getDestinationFieldBuilder() {
if (destinationBuilder_ == null) {
destinationBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
grpc.webhook._WebhookDestination, grpc.webhook._WebhookDestination.Builder, grpc.webhook._WebhookDestinationOrBuilder>(
getDestination(),
getParentForChildren(),
isClean());
destination_ = null;
}
return destinationBuilder_;
}
@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:webhook._Webhook)
}
// @@protoc_insertion_point(class_scope:webhook._Webhook)
private static final grpc.webhook._Webhook DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new grpc.webhook._Webhook();
}
public static grpc.webhook._Webhook getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser<_Webhook>
PARSER = new com.google.protobuf.AbstractParser<_Webhook>() {
@java.lang.Override
public _Webhook 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<_Webhook> parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser<_Webhook> getParserForType() {
return PARSER;
}
@java.lang.Override
public grpc.webhook._Webhook getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}