io.provenance.metadata.v1.RecordsRequest Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: provenance/metadata/v1/query.proto
package io.provenance.metadata.v1;
/**
*
* RecordsRequest is the request type for the Query/Records RPC method.
*
*
* Protobuf type {@code provenance.metadata.v1.RecordsRequest}
*/
public final class RecordsRequest extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:provenance.metadata.v1.RecordsRequest)
RecordsRequestOrBuilder {
private static final long serialVersionUID = 0L;
// Use RecordsRequest.newBuilder() to construct.
private RecordsRequest(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private RecordsRequest() {
recordAddr_ = "";
scopeId_ = "";
sessionId_ = "";
name_ = "";
includeScope_ = false;
includeSessions_ = false;
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private RecordsRequest(
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;
case 10: {
java.lang.String s = input.readStringRequireUtf8();
recordAddr_ = s;
break;
}
case 18: {
java.lang.String s = input.readStringRequireUtf8();
scopeId_ = s;
break;
}
case 26: {
java.lang.String s = input.readStringRequireUtf8();
sessionId_ = s;
break;
}
case 34: {
java.lang.String s = input.readStringRequireUtf8();
name_ = s;
break;
}
case 80: {
includeScope_ = input.readBool();
break;
}
case 88: {
includeSessions_ = input.readBool();
break;
}
default: {
if (!parseUnknownFieldProto3(
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.provenance.metadata.v1.QueryOuterClass.internal_static_provenance_metadata_v1_RecordsRequest_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.provenance.metadata.v1.QueryOuterClass.internal_static_provenance_metadata_v1_RecordsRequest_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.provenance.metadata.v1.RecordsRequest.class, io.provenance.metadata.v1.RecordsRequest.Builder.class);
}
public static final int RECORD_ADDR_FIELD_NUMBER = 1;
private volatile java.lang.Object recordAddr_;
/**
*
* record_addr is a bech32 record address, e.g. record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3.
*
*
* string record_addr = 1 [(.gogoproto.moretags) = "yaml:\"record_addr\""];
*/
public java.lang.String getRecordAddr() {
java.lang.Object ref = recordAddr_;
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();
recordAddr_ = s;
return s;
}
}
/**
*
* record_addr is a bech32 record address, e.g. record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3.
*
*
* string record_addr = 1 [(.gogoproto.moretags) = "yaml:\"record_addr\""];
*/
public com.google.protobuf.ByteString
getRecordAddrBytes() {
java.lang.Object ref = recordAddr_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
recordAddr_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int SCOPE_ID_FIELD_NUMBER = 2;
private volatile java.lang.Object scopeId_;
/**
*
* scope_id can either be a uuid, e.g. 91978ba2-5f35-459a-86a7-feca1b0512e0 or a bech32 scope address, e.g.
* scope1qzge0zaztu65tx5x5llv5xc9ztsqxlkwel.
*
*
* string scope_id = 2 [(.gogoproto.moretags) = "yaml:\"scope_id\""];
*/
public java.lang.String getScopeId() {
java.lang.Object ref = scopeId_;
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();
scopeId_ = s;
return s;
}
}
/**
*
* scope_id can either be a uuid, e.g. 91978ba2-5f35-459a-86a7-feca1b0512e0 or a bech32 scope address, e.g.
* scope1qzge0zaztu65tx5x5llv5xc9ztsqxlkwel.
*
*
* string scope_id = 2 [(.gogoproto.moretags) = "yaml:\"scope_id\""];
*/
public com.google.protobuf.ByteString
getScopeIdBytes() {
java.lang.Object ref = scopeId_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
scopeId_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int SESSION_ID_FIELD_NUMBER = 3;
private volatile java.lang.Object sessionId_;
/**
*
* session_id can either be a uuid, e.g. 5803f8bc-6067-4eb5-951f-2121671c2ec0 or a bech32 session address, e.g.
* session1qxge0zaztu65tx5x5llv5xc9zts9sqlch3sxwn44j50jzgt8rshvqyfrjcr. This can only be a uuid if a scope_id is also
* provided.
*
*
* string session_id = 3 [(.gogoproto.moretags) = "yaml:\"session_id\""];
*/
public java.lang.String getSessionId() {
java.lang.Object ref = sessionId_;
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();
sessionId_ = s;
return s;
}
}
/**
*
* session_id can either be a uuid, e.g. 5803f8bc-6067-4eb5-951f-2121671c2ec0 or a bech32 session address, e.g.
* session1qxge0zaztu65tx5x5llv5xc9zts9sqlch3sxwn44j50jzgt8rshvqyfrjcr. This can only be a uuid if a scope_id is also
* provided.
*
*
* string session_id = 3 [(.gogoproto.moretags) = "yaml:\"session_id\""];
*/
public com.google.protobuf.ByteString
getSessionIdBytes() {
java.lang.Object ref = sessionId_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
sessionId_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int NAME_FIELD_NUMBER = 4;
private volatile java.lang.Object name_;
/**
*
* name is the name of the record to look for
*
*
* string name = 4;
*/
public java.lang.String getName() {
java.lang.Object ref = name_;
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();
name_ = s;
return s;
}
}
/**
*
* name is the name of the record to look for
*
*
* string name = 4;
*/
public com.google.protobuf.ByteString
getNameBytes() {
java.lang.Object ref = name_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
name_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int INCLUDE_SCOPE_FIELD_NUMBER = 10;
private boolean includeScope_;
/**
*
* include_scope is a flag for whether or not the scope containing these records should be included.
*
*
* bool include_scope = 10 [(.gogoproto.moretags) = "yaml:\"include_scope\""];
*/
public boolean getIncludeScope() {
return includeScope_;
}
public static final int INCLUDE_SESSIONS_FIELD_NUMBER = 11;
private boolean includeSessions_;
/**
*
* include_sessions is a flag for whether or not the sessions containing these records should be included.
*
*
* bool include_sessions = 11 [(.gogoproto.moretags) = "yaml:\"include_sessions\""];
*/
public boolean getIncludeSessions() {
return includeSessions_;
}
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 (!getRecordAddrBytes().isEmpty()) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 1, recordAddr_);
}
if (!getScopeIdBytes().isEmpty()) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 2, scopeId_);
}
if (!getSessionIdBytes().isEmpty()) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 3, sessionId_);
}
if (!getNameBytes().isEmpty()) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 4, name_);
}
if (includeScope_ != false) {
output.writeBool(10, includeScope_);
}
if (includeSessions_ != false) {
output.writeBool(11, includeSessions_);
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (!getRecordAddrBytes().isEmpty()) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, recordAddr_);
}
if (!getScopeIdBytes().isEmpty()) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, scopeId_);
}
if (!getSessionIdBytes().isEmpty()) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(3, sessionId_);
}
if (!getNameBytes().isEmpty()) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(4, name_);
}
if (includeScope_ != false) {
size += com.google.protobuf.CodedOutputStream
.computeBoolSize(10, includeScope_);
}
if (includeSessions_ != false) {
size += com.google.protobuf.CodedOutputStream
.computeBoolSize(11, includeSessions_);
}
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 io.provenance.metadata.v1.RecordsRequest)) {
return super.equals(obj);
}
io.provenance.metadata.v1.RecordsRequest other = (io.provenance.metadata.v1.RecordsRequest) obj;
boolean result = true;
result = result && getRecordAddr()
.equals(other.getRecordAddr());
result = result && getScopeId()
.equals(other.getScopeId());
result = result && getSessionId()
.equals(other.getSessionId());
result = result && getName()
.equals(other.getName());
result = result && (getIncludeScope()
== other.getIncludeScope());
result = result && (getIncludeSessions()
== other.getIncludeSessions());
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) + RECORD_ADDR_FIELD_NUMBER;
hash = (53 * hash) + getRecordAddr().hashCode();
hash = (37 * hash) + SCOPE_ID_FIELD_NUMBER;
hash = (53 * hash) + getScopeId().hashCode();
hash = (37 * hash) + SESSION_ID_FIELD_NUMBER;
hash = (53 * hash) + getSessionId().hashCode();
hash = (37 * hash) + NAME_FIELD_NUMBER;
hash = (53 * hash) + getName().hashCode();
hash = (37 * hash) + INCLUDE_SCOPE_FIELD_NUMBER;
hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(
getIncludeScope());
hash = (37 * hash) + INCLUDE_SESSIONS_FIELD_NUMBER;
hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(
getIncludeSessions());
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static io.provenance.metadata.v1.RecordsRequest parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.provenance.metadata.v1.RecordsRequest parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.provenance.metadata.v1.RecordsRequest parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.provenance.metadata.v1.RecordsRequest parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.provenance.metadata.v1.RecordsRequest parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.provenance.metadata.v1.RecordsRequest parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.provenance.metadata.v1.RecordsRequest parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.provenance.metadata.v1.RecordsRequest 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 io.provenance.metadata.v1.RecordsRequest parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static io.provenance.metadata.v1.RecordsRequest 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 io.provenance.metadata.v1.RecordsRequest parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.provenance.metadata.v1.RecordsRequest 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(io.provenance.metadata.v1.RecordsRequest 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;
}
/**
*
* RecordsRequest is the request type for the Query/Records RPC method.
*
*
* Protobuf type {@code provenance.metadata.v1.RecordsRequest}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:provenance.metadata.v1.RecordsRequest)
io.provenance.metadata.v1.RecordsRequestOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.provenance.metadata.v1.QueryOuterClass.internal_static_provenance_metadata_v1_RecordsRequest_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.provenance.metadata.v1.QueryOuterClass.internal_static_provenance_metadata_v1_RecordsRequest_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.provenance.metadata.v1.RecordsRequest.class, io.provenance.metadata.v1.RecordsRequest.Builder.class);
}
// Construct using io.provenance.metadata.v1.RecordsRequest.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
}
}
@java.lang.Override
public Builder clear() {
super.clear();
recordAddr_ = "";
scopeId_ = "";
sessionId_ = "";
name_ = "";
includeScope_ = false;
includeSessions_ = false;
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return io.provenance.metadata.v1.QueryOuterClass.internal_static_provenance_metadata_v1_RecordsRequest_descriptor;
}
@java.lang.Override
public io.provenance.metadata.v1.RecordsRequest getDefaultInstanceForType() {
return io.provenance.metadata.v1.RecordsRequest.getDefaultInstance();
}
@java.lang.Override
public io.provenance.metadata.v1.RecordsRequest build() {
io.provenance.metadata.v1.RecordsRequest result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public io.provenance.metadata.v1.RecordsRequest buildPartial() {
io.provenance.metadata.v1.RecordsRequest result = new io.provenance.metadata.v1.RecordsRequest(this);
result.recordAddr_ = recordAddr_;
result.scopeId_ = scopeId_;
result.sessionId_ = sessionId_;
result.name_ = name_;
result.includeScope_ = includeScope_;
result.includeSessions_ = includeSessions_;
onBuilt();
return result;
}
@java.lang.Override
public Builder clone() {
return (Builder) super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.setField(field, value);
}
@java.lang.Override
public Builder clearField(
com.google.protobuf.Descriptors.FieldDescriptor field) {
return (Builder) super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(
com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return (Builder) super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index, java.lang.Object value) {
return (Builder) super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof io.provenance.metadata.v1.RecordsRequest) {
return mergeFrom((io.provenance.metadata.v1.RecordsRequest)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(io.provenance.metadata.v1.RecordsRequest other) {
if (other == io.provenance.metadata.v1.RecordsRequest.getDefaultInstance()) return this;
if (!other.getRecordAddr().isEmpty()) {
recordAddr_ = other.recordAddr_;
onChanged();
}
if (!other.getScopeId().isEmpty()) {
scopeId_ = other.scopeId_;
onChanged();
}
if (!other.getSessionId().isEmpty()) {
sessionId_ = other.sessionId_;
onChanged();
}
if (!other.getName().isEmpty()) {
name_ = other.name_;
onChanged();
}
if (other.getIncludeScope() != false) {
setIncludeScope(other.getIncludeScope());
}
if (other.getIncludeSessions() != false) {
setIncludeSessions(other.getIncludeSessions());
}
this.mergeUnknownFields(other.unknownFields);
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 {
io.provenance.metadata.v1.RecordsRequest parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (io.provenance.metadata.v1.RecordsRequest) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private java.lang.Object recordAddr_ = "";
/**
*
* record_addr is a bech32 record address, e.g. record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3.
*
*
* string record_addr = 1 [(.gogoproto.moretags) = "yaml:\"record_addr\""];
*/
public java.lang.String getRecordAddr() {
java.lang.Object ref = recordAddr_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
recordAddr_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
* record_addr is a bech32 record address, e.g. record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3.
*
*
* string record_addr = 1 [(.gogoproto.moretags) = "yaml:\"record_addr\""];
*/
public com.google.protobuf.ByteString
getRecordAddrBytes() {
java.lang.Object ref = recordAddr_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
recordAddr_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
* record_addr is a bech32 record address, e.g. record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3.
*
*
* string record_addr = 1 [(.gogoproto.moretags) = "yaml:\"record_addr\""];
*/
public Builder setRecordAddr(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
recordAddr_ = value;
onChanged();
return this;
}
/**
*
* record_addr is a bech32 record address, e.g. record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3.
*
*
* string record_addr = 1 [(.gogoproto.moretags) = "yaml:\"record_addr\""];
*/
public Builder clearRecordAddr() {
recordAddr_ = getDefaultInstance().getRecordAddr();
onChanged();
return this;
}
/**
*
* record_addr is a bech32 record address, e.g. record1q2ge0zaztu65tx5x5llv5xc9ztsw42dq2jdvmdazuwzcaddhh8gmu3mcze3.
*
*
* string record_addr = 1 [(.gogoproto.moretags) = "yaml:\"record_addr\""];
*/
public Builder setRecordAddrBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
recordAddr_ = value;
onChanged();
return this;
}
private java.lang.Object scopeId_ = "";
/**
*
* scope_id can either be a uuid, e.g. 91978ba2-5f35-459a-86a7-feca1b0512e0 or a bech32 scope address, e.g.
* scope1qzge0zaztu65tx5x5llv5xc9ztsqxlkwel.
*
*
* string scope_id = 2 [(.gogoproto.moretags) = "yaml:\"scope_id\""];
*/
public java.lang.String getScopeId() {
java.lang.Object ref = scopeId_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
scopeId_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
* scope_id can either be a uuid, e.g. 91978ba2-5f35-459a-86a7-feca1b0512e0 or a bech32 scope address, e.g.
* scope1qzge0zaztu65tx5x5llv5xc9ztsqxlkwel.
*
*
* string scope_id = 2 [(.gogoproto.moretags) = "yaml:\"scope_id\""];
*/
public com.google.protobuf.ByteString
getScopeIdBytes() {
java.lang.Object ref = scopeId_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
scopeId_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
* scope_id can either be a uuid, e.g. 91978ba2-5f35-459a-86a7-feca1b0512e0 or a bech32 scope address, e.g.
* scope1qzge0zaztu65tx5x5llv5xc9ztsqxlkwel.
*
*
* string scope_id = 2 [(.gogoproto.moretags) = "yaml:\"scope_id\""];
*/
public Builder setScopeId(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
scopeId_ = value;
onChanged();
return this;
}
/**
*
* scope_id can either be a uuid, e.g. 91978ba2-5f35-459a-86a7-feca1b0512e0 or a bech32 scope address, e.g.
* scope1qzge0zaztu65tx5x5llv5xc9ztsqxlkwel.
*
*
* string scope_id = 2 [(.gogoproto.moretags) = "yaml:\"scope_id\""];
*/
public Builder clearScopeId() {
scopeId_ = getDefaultInstance().getScopeId();
onChanged();
return this;
}
/**
*
* scope_id can either be a uuid, e.g. 91978ba2-5f35-459a-86a7-feca1b0512e0 or a bech32 scope address, e.g.
* scope1qzge0zaztu65tx5x5llv5xc9ztsqxlkwel.
*
*
* string scope_id = 2 [(.gogoproto.moretags) = "yaml:\"scope_id\""];
*/
public Builder setScopeIdBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
scopeId_ = value;
onChanged();
return this;
}
private java.lang.Object sessionId_ = "";
/**
*
* session_id can either be a uuid, e.g. 5803f8bc-6067-4eb5-951f-2121671c2ec0 or a bech32 session address, e.g.
* session1qxge0zaztu65tx5x5llv5xc9zts9sqlch3sxwn44j50jzgt8rshvqyfrjcr. This can only be a uuid if a scope_id is also
* provided.
*
*
* string session_id = 3 [(.gogoproto.moretags) = "yaml:\"session_id\""];
*/
public java.lang.String getSessionId() {
java.lang.Object ref = sessionId_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
sessionId_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
* session_id can either be a uuid, e.g. 5803f8bc-6067-4eb5-951f-2121671c2ec0 or a bech32 session address, e.g.
* session1qxge0zaztu65tx5x5llv5xc9zts9sqlch3sxwn44j50jzgt8rshvqyfrjcr. This can only be a uuid if a scope_id is also
* provided.
*
*
* string session_id = 3 [(.gogoproto.moretags) = "yaml:\"session_id\""];
*/
public com.google.protobuf.ByteString
getSessionIdBytes() {
java.lang.Object ref = sessionId_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
sessionId_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
* session_id can either be a uuid, e.g. 5803f8bc-6067-4eb5-951f-2121671c2ec0 or a bech32 session address, e.g.
* session1qxge0zaztu65tx5x5llv5xc9zts9sqlch3sxwn44j50jzgt8rshvqyfrjcr. This can only be a uuid if a scope_id is also
* provided.
*
*
* string session_id = 3 [(.gogoproto.moretags) = "yaml:\"session_id\""];
*/
public Builder setSessionId(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
sessionId_ = value;
onChanged();
return this;
}
/**
*
* session_id can either be a uuid, e.g. 5803f8bc-6067-4eb5-951f-2121671c2ec0 or a bech32 session address, e.g.
* session1qxge0zaztu65tx5x5llv5xc9zts9sqlch3sxwn44j50jzgt8rshvqyfrjcr. This can only be a uuid if a scope_id is also
* provided.
*
*
* string session_id = 3 [(.gogoproto.moretags) = "yaml:\"session_id\""];
*/
public Builder clearSessionId() {
sessionId_ = getDefaultInstance().getSessionId();
onChanged();
return this;
}
/**
*
* session_id can either be a uuid, e.g. 5803f8bc-6067-4eb5-951f-2121671c2ec0 or a bech32 session address, e.g.
* session1qxge0zaztu65tx5x5llv5xc9zts9sqlch3sxwn44j50jzgt8rshvqyfrjcr. This can only be a uuid if a scope_id is also
* provided.
*
*
* string session_id = 3 [(.gogoproto.moretags) = "yaml:\"session_id\""];
*/
public Builder setSessionIdBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
sessionId_ = value;
onChanged();
return this;
}
private java.lang.Object name_ = "";
/**
*
* name is the name of the record to look for
*
*
* string name = 4;
*/
public java.lang.String getName() {
java.lang.Object ref = name_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
name_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
* name is the name of the record to look for
*
*
* string name = 4;
*/
public com.google.protobuf.ByteString
getNameBytes() {
java.lang.Object ref = name_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
name_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
* name is the name of the record to look for
*
*
* string name = 4;
*/
public Builder setName(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
name_ = value;
onChanged();
return this;
}
/**
*
* name is the name of the record to look for
*
*
* string name = 4;
*/
public Builder clearName() {
name_ = getDefaultInstance().getName();
onChanged();
return this;
}
/**
*
* name is the name of the record to look for
*
*
* string name = 4;
*/
public Builder setNameBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
name_ = value;
onChanged();
return this;
}
private boolean includeScope_ ;
/**
*
* include_scope is a flag for whether or not the scope containing these records should be included.
*
*
* bool include_scope = 10 [(.gogoproto.moretags) = "yaml:\"include_scope\""];
*/
public boolean getIncludeScope() {
return includeScope_;
}
/**
*
* include_scope is a flag for whether or not the scope containing these records should be included.
*
*
* bool include_scope = 10 [(.gogoproto.moretags) = "yaml:\"include_scope\""];
*/
public Builder setIncludeScope(boolean value) {
includeScope_ = value;
onChanged();
return this;
}
/**
*
* include_scope is a flag for whether or not the scope containing these records should be included.
*
*
* bool include_scope = 10 [(.gogoproto.moretags) = "yaml:\"include_scope\""];
*/
public Builder clearIncludeScope() {
includeScope_ = false;
onChanged();
return this;
}
private boolean includeSessions_ ;
/**
*
* include_sessions is a flag for whether or not the sessions containing these records should be included.
*
*
* bool include_sessions = 11 [(.gogoproto.moretags) = "yaml:\"include_sessions\""];
*/
public boolean getIncludeSessions() {
return includeSessions_;
}
/**
*
* include_sessions is a flag for whether or not the sessions containing these records should be included.
*
*
* bool include_sessions = 11 [(.gogoproto.moretags) = "yaml:\"include_sessions\""];
*/
public Builder setIncludeSessions(boolean value) {
includeSessions_ = value;
onChanged();
return this;
}
/**
*
* include_sessions is a flag for whether or not the sessions containing these records should be included.
*
*
* bool include_sessions = 11 [(.gogoproto.moretags) = "yaml:\"include_sessions\""];
*/
public Builder clearIncludeSessions() {
includeSessions_ = false;
onChanged();
return this;
}
@java.lang.Override
public final Builder setUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.setUnknownFieldsProto3(unknownFields);
}
@java.lang.Override
public final Builder mergeUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.mergeUnknownFields(unknownFields);
}
// @@protoc_insertion_point(builder_scope:provenance.metadata.v1.RecordsRequest)
}
// @@protoc_insertion_point(class_scope:provenance.metadata.v1.RecordsRequest)
private static final io.provenance.metadata.v1.RecordsRequest DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new io.provenance.metadata.v1.RecordsRequest();
}
public static io.provenance.metadata.v1.RecordsRequest getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public RecordsRequest parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new RecordsRequest(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.provenance.metadata.v1.RecordsRequest getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}