Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: lock.proto
package io.etcd.jetcd.api.lock;
/**
* Protobuf type {@code v3lockpb.LockResponse}
*/
public final class LockResponse extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:v3lockpb.LockResponse)
LockResponseOrBuilder {
private static final long serialVersionUID = 0L;
// Use LockResponse.newBuilder() to construct.
private LockResponse(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private LockResponse() {
key_ = com.google.protobuf.ByteString.EMPTY;
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(
UnusedPrivateParameter unused) {
return new LockResponse();
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private LockResponse(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
this();
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
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;
case 10: {
io.etcd.jetcd.api.ResponseHeader.Builder subBuilder = null;
if (header_ != null) {
subBuilder = header_.toBuilder();
}
header_ = input.readMessage(io.etcd.jetcd.api.ResponseHeader.parser(), extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(header_);
header_ = subBuilder.buildPartial();
}
break;
}
case 18: {
key_ = input.readBytes();
break;
}
default: {
if (!parseUnknownField(
input, unknownFields, extensionRegistry, tag)) {
done = true;
}
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 io.etcd.jetcd.api.lock.JetcdProto.internal_static_v3lockpb_LockResponse_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.etcd.jetcd.api.lock.JetcdProto.internal_static_v3lockpb_LockResponse_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.etcd.jetcd.api.lock.LockResponse.class, io.etcd.jetcd.api.lock.LockResponse.Builder.class);
}
public static final int HEADER_FIELD_NUMBER = 1;
private io.etcd.jetcd.api.ResponseHeader header_;
/**
* .etcdserverpb.ResponseHeader header = 1;
* @return Whether the header field is set.
*/
public boolean hasHeader() {
return header_ != null;
}
/**
* .etcdserverpb.ResponseHeader header = 1;
* @return The header.
*/
public io.etcd.jetcd.api.ResponseHeader getHeader() {
return header_ == null ? io.etcd.jetcd.api.ResponseHeader.getDefaultInstance() : header_;
}
/**
* .etcdserverpb.ResponseHeader header = 1;
*/
public io.etcd.jetcd.api.ResponseHeaderOrBuilder getHeaderOrBuilder() {
return getHeader();
}
public static final int KEY_FIELD_NUMBER = 2;
private com.google.protobuf.ByteString key_;
/**
*
* key is a key that will exist on etcd for the duration that the Lock caller
* owns the lock. Users should not modify this key or the lock may exhibit
* undefined behavior.
*
* key is a key that will exist on etcd for the duration that the Lock caller
* owns the lock. Users should not modify this key or the lock may exhibit
* undefined behavior.
*
*
* bytes key = 2;
* @return The key.
*/
public com.google.protobuf.ByteString getKey() {
return key_;
}
/**
*
* key is a key that will exist on etcd for the duration that the Lock caller
* owns the lock. Users should not modify this key or the lock may exhibit
* undefined behavior.
*
*
* bytes key = 2;
* @param value The key to set.
* @return This builder for chaining.
*/
public Builder setKey(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
key_ = value;
onChanged();
return this;
}
/**
*
* key is a key that will exist on etcd for the duration that the Lock caller
* owns the lock. Users should not modify this key or the lock may exhibit
* undefined behavior.
*
*
* bytes key = 2;
* @return This builder for chaining.
*/
public Builder clearKey() {
key_ = getDefaultInstance().getKey();
onChanged();
return this;
}
@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:v3lockpb.LockResponse)
}
// @@protoc_insertion_point(class_scope:v3lockpb.LockResponse)
private static final io.etcd.jetcd.api.lock.LockResponse DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new io.etcd.jetcd.api.lock.LockResponse();
}
public static io.etcd.jetcd.api.lock.LockResponse getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public LockResponse parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new LockResponse(input, extensionRegistry);
}
};
public static com.google.protobuf.Parser parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
@java.lang.Override
public io.etcd.jetcd.api.lock.LockResponse getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}