![JAR search and dependency download from the Maven repository](/logo.png)
io.provenance.attribute.v1.MsgUpdateAttributeRequest Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: provenance/attribute/v1/tx.proto
package io.provenance.attribute.v1;
/**
*
* MsgUpdateAttributeRequest defines an sdk.Msg type that is used to update an existing attribute to an account
* Attributes may only be set in an account by the account that the attribute name resolves to.
*
*
* Protobuf type {@code provenance.attribute.v1.MsgUpdateAttributeRequest}
*/
public final class MsgUpdateAttributeRequest extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:provenance.attribute.v1.MsgUpdateAttributeRequest)
MsgUpdateAttributeRequestOrBuilder {
private static final long serialVersionUID = 0L;
// Use MsgUpdateAttributeRequest.newBuilder() to construct.
private MsgUpdateAttributeRequest(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private MsgUpdateAttributeRequest() {
name_ = "";
originalValue_ = com.google.protobuf.ByteString.EMPTY;
updateValue_ = com.google.protobuf.ByteString.EMPTY;
originalAttributeType_ = 0;
updateAttributeType_ = 0;
account_ = "";
owner_ = "";
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private MsgUpdateAttributeRequest(
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();
name_ = s;
break;
}
case 18: {
originalValue_ = input.readBytes();
break;
}
case 26: {
updateValue_ = input.readBytes();
break;
}
case 32: {
int rawValue = input.readEnum();
originalAttributeType_ = rawValue;
break;
}
case 40: {
int rawValue = input.readEnum();
updateAttributeType_ = rawValue;
break;
}
case 50: {
java.lang.String s = input.readStringRequireUtf8();
account_ = s;
break;
}
case 58: {
java.lang.String s = input.readStringRequireUtf8();
owner_ = s;
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.attribute.v1.Tx.internal_static_provenance_attribute_v1_MsgUpdateAttributeRequest_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.provenance.attribute.v1.Tx.internal_static_provenance_attribute_v1_MsgUpdateAttributeRequest_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.provenance.attribute.v1.MsgUpdateAttributeRequest.class, io.provenance.attribute.v1.MsgUpdateAttributeRequest.Builder.class);
}
public static final int NAME_FIELD_NUMBER = 1;
private volatile java.lang.Object name_;
/**
*
* The attribute name.
*
*
* string name = 1;
*/
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;
}
}
/**
*
* The attribute name.
*
*
* string name = 1;
*/
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 ORIGINAL_VALUE_FIELD_NUMBER = 2;
private com.google.protobuf.ByteString originalValue_;
/**
*
* The original attribute value.
*
*
* bytes original_value = 2;
*/
public com.google.protobuf.ByteString getOriginalValue() {
return originalValue_;
}
public static final int UPDATE_VALUE_FIELD_NUMBER = 3;
private com.google.protobuf.ByteString updateValue_;
/**
*
* The update attribute value.
*
*
* bytes update_value = 3;
*/
public com.google.protobuf.ByteString getUpdateValue() {
return updateValue_;
}
public static final int ORIGINAL_ATTRIBUTE_TYPE_FIELD_NUMBER = 4;
private int originalAttributeType_;
/**
*
* The original attribute value type.
*
*
* .provenance.attribute.v1.AttributeType original_attribute_type = 4;
*/
public int getOriginalAttributeTypeValue() {
return originalAttributeType_;
}
/**
*
* The original attribute value type.
*
*
* .provenance.attribute.v1.AttributeType original_attribute_type = 4;
*/
public io.provenance.attribute.v1.AttributeType getOriginalAttributeType() {
@SuppressWarnings("deprecation")
io.provenance.attribute.v1.AttributeType result = io.provenance.attribute.v1.AttributeType.valueOf(originalAttributeType_);
return result == null ? io.provenance.attribute.v1.AttributeType.UNRECOGNIZED : result;
}
public static final int UPDATE_ATTRIBUTE_TYPE_FIELD_NUMBER = 5;
private int updateAttributeType_;
/**
*
* The update attribute value type.
*
*
* .provenance.attribute.v1.AttributeType update_attribute_type = 5;
*/
public int getUpdateAttributeTypeValue() {
return updateAttributeType_;
}
/**
*
* The update attribute value type.
*
*
* .provenance.attribute.v1.AttributeType update_attribute_type = 5;
*/
public io.provenance.attribute.v1.AttributeType getUpdateAttributeType() {
@SuppressWarnings("deprecation")
io.provenance.attribute.v1.AttributeType result = io.provenance.attribute.v1.AttributeType.valueOf(updateAttributeType_);
return result == null ? io.provenance.attribute.v1.AttributeType.UNRECOGNIZED : result;
}
public static final int ACCOUNT_FIELD_NUMBER = 6;
private volatile java.lang.Object account_;
/**
*
* The account to add the attribute to.
*
*
* string account = 6;
*/
public java.lang.String getAccount() {
java.lang.Object ref = account_;
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();
account_ = s;
return s;
}
}
/**
*
* The account to add the attribute to.
*
*
* string account = 6;
*/
public com.google.protobuf.ByteString
getAccountBytes() {
java.lang.Object ref = account_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
account_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int OWNER_FIELD_NUMBER = 7;
private volatile java.lang.Object owner_;
/**
*
* The address that the name must resolve to.
*
*
* string owner = 7;
*/
public java.lang.String getOwner() {
java.lang.Object ref = owner_;
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();
owner_ = s;
return s;
}
}
/**
*
* The address that the name must resolve to.
*
*
* string owner = 7;
*/
public com.google.protobuf.ByteString
getOwnerBytes() {
java.lang.Object ref = owner_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
owner_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
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 (!getNameBytes().isEmpty()) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 1, name_);
}
if (!originalValue_.isEmpty()) {
output.writeBytes(2, originalValue_);
}
if (!updateValue_.isEmpty()) {
output.writeBytes(3, updateValue_);
}
if (originalAttributeType_ != io.provenance.attribute.v1.AttributeType.ATTRIBUTE_TYPE_UNSPECIFIED.getNumber()) {
output.writeEnum(4, originalAttributeType_);
}
if (updateAttributeType_ != io.provenance.attribute.v1.AttributeType.ATTRIBUTE_TYPE_UNSPECIFIED.getNumber()) {
output.writeEnum(5, updateAttributeType_);
}
if (!getAccountBytes().isEmpty()) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 6, account_);
}
if (!getOwnerBytes().isEmpty()) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 7, owner_);
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (!getNameBytes().isEmpty()) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, name_);
}
if (!originalValue_.isEmpty()) {
size += com.google.protobuf.CodedOutputStream
.computeBytesSize(2, originalValue_);
}
if (!updateValue_.isEmpty()) {
size += com.google.protobuf.CodedOutputStream
.computeBytesSize(3, updateValue_);
}
if (originalAttributeType_ != io.provenance.attribute.v1.AttributeType.ATTRIBUTE_TYPE_UNSPECIFIED.getNumber()) {
size += com.google.protobuf.CodedOutputStream
.computeEnumSize(4, originalAttributeType_);
}
if (updateAttributeType_ != io.provenance.attribute.v1.AttributeType.ATTRIBUTE_TYPE_UNSPECIFIED.getNumber()) {
size += com.google.protobuf.CodedOutputStream
.computeEnumSize(5, updateAttributeType_);
}
if (!getAccountBytes().isEmpty()) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(6, account_);
}
if (!getOwnerBytes().isEmpty()) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(7, owner_);
}
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.attribute.v1.MsgUpdateAttributeRequest)) {
return super.equals(obj);
}
io.provenance.attribute.v1.MsgUpdateAttributeRequest other = (io.provenance.attribute.v1.MsgUpdateAttributeRequest) obj;
boolean result = true;
result = result && getName()
.equals(other.getName());
result = result && getOriginalValue()
.equals(other.getOriginalValue());
result = result && getUpdateValue()
.equals(other.getUpdateValue());
result = result && originalAttributeType_ == other.originalAttributeType_;
result = result && updateAttributeType_ == other.updateAttributeType_;
result = result && getAccount()
.equals(other.getAccount());
result = result && getOwner()
.equals(other.getOwner());
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) + NAME_FIELD_NUMBER;
hash = (53 * hash) + getName().hashCode();
hash = (37 * hash) + ORIGINAL_VALUE_FIELD_NUMBER;
hash = (53 * hash) + getOriginalValue().hashCode();
hash = (37 * hash) + UPDATE_VALUE_FIELD_NUMBER;
hash = (53 * hash) + getUpdateValue().hashCode();
hash = (37 * hash) + ORIGINAL_ATTRIBUTE_TYPE_FIELD_NUMBER;
hash = (53 * hash) + originalAttributeType_;
hash = (37 * hash) + UPDATE_ATTRIBUTE_TYPE_FIELD_NUMBER;
hash = (53 * hash) + updateAttributeType_;
hash = (37 * hash) + ACCOUNT_FIELD_NUMBER;
hash = (53 * hash) + getAccount().hashCode();
hash = (37 * hash) + OWNER_FIELD_NUMBER;
hash = (53 * hash) + getOwner().hashCode();
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static io.provenance.attribute.v1.MsgUpdateAttributeRequest parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.provenance.attribute.v1.MsgUpdateAttributeRequest parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.provenance.attribute.v1.MsgUpdateAttributeRequest parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.provenance.attribute.v1.MsgUpdateAttributeRequest 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.attribute.v1.MsgUpdateAttributeRequest parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.provenance.attribute.v1.MsgUpdateAttributeRequest parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.provenance.attribute.v1.MsgUpdateAttributeRequest parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.provenance.attribute.v1.MsgUpdateAttributeRequest 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.attribute.v1.MsgUpdateAttributeRequest parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static io.provenance.attribute.v1.MsgUpdateAttributeRequest 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.attribute.v1.MsgUpdateAttributeRequest parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.provenance.attribute.v1.MsgUpdateAttributeRequest 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.attribute.v1.MsgUpdateAttributeRequest 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;
}
/**
*
* MsgUpdateAttributeRequest defines an sdk.Msg type that is used to update an existing attribute to an account
* Attributes may only be set in an account by the account that the attribute name resolves to.
*
*
* Protobuf type {@code provenance.attribute.v1.MsgUpdateAttributeRequest}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:provenance.attribute.v1.MsgUpdateAttributeRequest)
io.provenance.attribute.v1.MsgUpdateAttributeRequestOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.provenance.attribute.v1.Tx.internal_static_provenance_attribute_v1_MsgUpdateAttributeRequest_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.provenance.attribute.v1.Tx.internal_static_provenance_attribute_v1_MsgUpdateAttributeRequest_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.provenance.attribute.v1.MsgUpdateAttributeRequest.class, io.provenance.attribute.v1.MsgUpdateAttributeRequest.Builder.class);
}
// Construct using io.provenance.attribute.v1.MsgUpdateAttributeRequest.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();
name_ = "";
originalValue_ = com.google.protobuf.ByteString.EMPTY;
updateValue_ = com.google.protobuf.ByteString.EMPTY;
originalAttributeType_ = 0;
updateAttributeType_ = 0;
account_ = "";
owner_ = "";
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return io.provenance.attribute.v1.Tx.internal_static_provenance_attribute_v1_MsgUpdateAttributeRequest_descriptor;
}
@java.lang.Override
public io.provenance.attribute.v1.MsgUpdateAttributeRequest getDefaultInstanceForType() {
return io.provenance.attribute.v1.MsgUpdateAttributeRequest.getDefaultInstance();
}
@java.lang.Override
public io.provenance.attribute.v1.MsgUpdateAttributeRequest build() {
io.provenance.attribute.v1.MsgUpdateAttributeRequest result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public io.provenance.attribute.v1.MsgUpdateAttributeRequest buildPartial() {
io.provenance.attribute.v1.MsgUpdateAttributeRequest result = new io.provenance.attribute.v1.MsgUpdateAttributeRequest(this);
result.name_ = name_;
result.originalValue_ = originalValue_;
result.updateValue_ = updateValue_;
result.originalAttributeType_ = originalAttributeType_;
result.updateAttributeType_ = updateAttributeType_;
result.account_ = account_;
result.owner_ = owner_;
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.attribute.v1.MsgUpdateAttributeRequest) {
return mergeFrom((io.provenance.attribute.v1.MsgUpdateAttributeRequest)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(io.provenance.attribute.v1.MsgUpdateAttributeRequest other) {
if (other == io.provenance.attribute.v1.MsgUpdateAttributeRequest.getDefaultInstance()) return this;
if (!other.getName().isEmpty()) {
name_ = other.name_;
onChanged();
}
if (other.getOriginalValue() != com.google.protobuf.ByteString.EMPTY) {
setOriginalValue(other.getOriginalValue());
}
if (other.getUpdateValue() != com.google.protobuf.ByteString.EMPTY) {
setUpdateValue(other.getUpdateValue());
}
if (other.originalAttributeType_ != 0) {
setOriginalAttributeTypeValue(other.getOriginalAttributeTypeValue());
}
if (other.updateAttributeType_ != 0) {
setUpdateAttributeTypeValue(other.getUpdateAttributeTypeValue());
}
if (!other.getAccount().isEmpty()) {
account_ = other.account_;
onChanged();
}
if (!other.getOwner().isEmpty()) {
owner_ = other.owner_;
onChanged();
}
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.attribute.v1.MsgUpdateAttributeRequest parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (io.provenance.attribute.v1.MsgUpdateAttributeRequest) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private java.lang.Object name_ = "";
/**
*
* The attribute name.
*
*
* string name = 1;
*/
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;
}
}
/**
*
* The attribute name.
*
*
* string name = 1;
*/
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;
}
}
/**
*
* The attribute name.
*
*
* string name = 1;
*/
public Builder setName(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
name_ = value;
onChanged();
return this;
}
/**
*
* The attribute name.
*
*
* string name = 1;
*/
public Builder clearName() {
name_ = getDefaultInstance().getName();
onChanged();
return this;
}
/**
*
* The attribute name.
*
*
* string name = 1;
*/
public Builder setNameBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
name_ = value;
onChanged();
return this;
}
private com.google.protobuf.ByteString originalValue_ = com.google.protobuf.ByteString.EMPTY;
/**
*
* The original attribute value.
*
*
* bytes original_value = 2;
*/
public com.google.protobuf.ByteString getOriginalValue() {
return originalValue_;
}
/**
*
* The original attribute value.
*
*
* bytes original_value = 2;
*/
public Builder setOriginalValue(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
originalValue_ = value;
onChanged();
return this;
}
/**
*
* The original attribute value.
*
*
* bytes original_value = 2;
*/
public Builder clearOriginalValue() {
originalValue_ = getDefaultInstance().getOriginalValue();
onChanged();
return this;
}
private com.google.protobuf.ByteString updateValue_ = com.google.protobuf.ByteString.EMPTY;
/**
*
* The update attribute value.
*
*
* bytes update_value = 3;
*/
public com.google.protobuf.ByteString getUpdateValue() {
return updateValue_;
}
/**
*
* The update attribute value.
*
*
* bytes update_value = 3;
*/
public Builder setUpdateValue(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
updateValue_ = value;
onChanged();
return this;
}
/**
*
* The update attribute value.
*
*
* bytes update_value = 3;
*/
public Builder clearUpdateValue() {
updateValue_ = getDefaultInstance().getUpdateValue();
onChanged();
return this;
}
private int originalAttributeType_ = 0;
/**
*
* The original attribute value type.
*
*
* .provenance.attribute.v1.AttributeType original_attribute_type = 4;
*/
public int getOriginalAttributeTypeValue() {
return originalAttributeType_;
}
/**
*
* The original attribute value type.
*
*
* .provenance.attribute.v1.AttributeType original_attribute_type = 4;
*/
public Builder setOriginalAttributeTypeValue(int value) {
originalAttributeType_ = value;
onChanged();
return this;
}
/**
*
* The original attribute value type.
*
*
* .provenance.attribute.v1.AttributeType original_attribute_type = 4;
*/
public io.provenance.attribute.v1.AttributeType getOriginalAttributeType() {
@SuppressWarnings("deprecation")
io.provenance.attribute.v1.AttributeType result = io.provenance.attribute.v1.AttributeType.valueOf(originalAttributeType_);
return result == null ? io.provenance.attribute.v1.AttributeType.UNRECOGNIZED : result;
}
/**
*
* The original attribute value type.
*
*
* .provenance.attribute.v1.AttributeType original_attribute_type = 4;
*/
public Builder setOriginalAttributeType(io.provenance.attribute.v1.AttributeType value) {
if (value == null) {
throw new NullPointerException();
}
originalAttributeType_ = value.getNumber();
onChanged();
return this;
}
/**
*
* The original attribute value type.
*
*
* .provenance.attribute.v1.AttributeType original_attribute_type = 4;
*/
public Builder clearOriginalAttributeType() {
originalAttributeType_ = 0;
onChanged();
return this;
}
private int updateAttributeType_ = 0;
/**
*
* The update attribute value type.
*
*
* .provenance.attribute.v1.AttributeType update_attribute_type = 5;
*/
public int getUpdateAttributeTypeValue() {
return updateAttributeType_;
}
/**
*
* The update attribute value type.
*
*
* .provenance.attribute.v1.AttributeType update_attribute_type = 5;
*/
public Builder setUpdateAttributeTypeValue(int value) {
updateAttributeType_ = value;
onChanged();
return this;
}
/**
*
* The update attribute value type.
*
*
* .provenance.attribute.v1.AttributeType update_attribute_type = 5;
*/
public io.provenance.attribute.v1.AttributeType getUpdateAttributeType() {
@SuppressWarnings("deprecation")
io.provenance.attribute.v1.AttributeType result = io.provenance.attribute.v1.AttributeType.valueOf(updateAttributeType_);
return result == null ? io.provenance.attribute.v1.AttributeType.UNRECOGNIZED : result;
}
/**
*
* The update attribute value type.
*
*
* .provenance.attribute.v1.AttributeType update_attribute_type = 5;
*/
public Builder setUpdateAttributeType(io.provenance.attribute.v1.AttributeType value) {
if (value == null) {
throw new NullPointerException();
}
updateAttributeType_ = value.getNumber();
onChanged();
return this;
}
/**
*
* The update attribute value type.
*
*
* .provenance.attribute.v1.AttributeType update_attribute_type = 5;
*/
public Builder clearUpdateAttributeType() {
updateAttributeType_ = 0;
onChanged();
return this;
}
private java.lang.Object account_ = "";
/**
*
* The account to add the attribute to.
*
*
* string account = 6;
*/
public java.lang.String getAccount() {
java.lang.Object ref = account_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
account_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
* The account to add the attribute to.
*
*
* string account = 6;
*/
public com.google.protobuf.ByteString
getAccountBytes() {
java.lang.Object ref = account_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
account_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
* The account to add the attribute to.
*
*
* string account = 6;
*/
public Builder setAccount(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
account_ = value;
onChanged();
return this;
}
/**
*
* The account to add the attribute to.
*
*
* string account = 6;
*/
public Builder clearAccount() {
account_ = getDefaultInstance().getAccount();
onChanged();
return this;
}
/**
*
* The account to add the attribute to.
*
*
* string account = 6;
*/
public Builder setAccountBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
account_ = value;
onChanged();
return this;
}
private java.lang.Object owner_ = "";
/**
*
* The address that the name must resolve to.
*
*
* string owner = 7;
*/
public java.lang.String getOwner() {
java.lang.Object ref = owner_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
owner_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
* The address that the name must resolve to.
*
*
* string owner = 7;
*/
public com.google.protobuf.ByteString
getOwnerBytes() {
java.lang.Object ref = owner_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
owner_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
* The address that the name must resolve to.
*
*
* string owner = 7;
*/
public Builder setOwner(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
owner_ = value;
onChanged();
return this;
}
/**
*
* The address that the name must resolve to.
*
*
* string owner = 7;
*/
public Builder clearOwner() {
owner_ = getDefaultInstance().getOwner();
onChanged();
return this;
}
/**
*
* The address that the name must resolve to.
*
*
* string owner = 7;
*/
public Builder setOwnerBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
owner_ = value;
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.attribute.v1.MsgUpdateAttributeRequest)
}
// @@protoc_insertion_point(class_scope:provenance.attribute.v1.MsgUpdateAttributeRequest)
private static final io.provenance.attribute.v1.MsgUpdateAttributeRequest DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new io.provenance.attribute.v1.MsgUpdateAttributeRequest();
}
public static io.provenance.attribute.v1.MsgUpdateAttributeRequest getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public MsgUpdateAttributeRequest parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new MsgUpdateAttributeRequest(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.attribute.v1.MsgUpdateAttributeRequest getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy