All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.yamcs.protobuf.SetParameterValueRequest Maven / Gradle / Ivy

There is a newer version: 5.10.9
Show newest version
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: yamcs/protobuf/processing/processing.proto

package org.yamcs.protobuf;

/**
 * 
 * Request message for `SetParameterValue`.
 * 
* * Protobuf type {@code yamcs.protobuf.processing.SetParameterValueRequest} */ public final class SetParameterValueRequest extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:yamcs.protobuf.processing.SetParameterValueRequest) SetParameterValueRequestOrBuilder { private static final long serialVersionUID = 0L; // Use SetParameterValueRequest.newBuilder() to construct. private SetParameterValueRequest(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } private SetParameterValueRequest() { instance_ = ""; processor_ = ""; name_ = ""; } @java.lang.Override @SuppressWarnings({"unused"}) protected java.lang.Object newInstance( UnusedPrivateParameter unused) { return new SetParameterValueRequest(); } @java.lang.Override public final com.google.protobuf.UnknownFieldSet getUnknownFields() { return this.unknownFields; } private SetParameterValueRequest( 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: { com.google.protobuf.ByteString bs = input.readBytes(); bitField0_ |= 0x00000001; instance_ = bs; break; } case 18: { com.google.protobuf.ByteString bs = input.readBytes(); bitField0_ |= 0x00000002; processor_ = bs; break; } case 26: { com.google.protobuf.ByteString bs = input.readBytes(); bitField0_ |= 0x00000004; name_ = bs; break; } case 34: { org.yamcs.protobuf.Yamcs.Value.Builder subBuilder = null; if (((bitField0_ & 0x00000008) != 0)) { subBuilder = value_.toBuilder(); } value_ = input.readMessage(org.yamcs.protobuf.Yamcs.Value.PARSER, extensionRegistry); if (subBuilder != null) { subBuilder.mergeFrom(value_); value_ = subBuilder.buildPartial(); } bitField0_ |= 0x00000008; break; } case 42: { com.google.protobuf.Timestamp.Builder subBuilder = null; if (((bitField0_ & 0x00000010) != 0)) { subBuilder = generationTime_.toBuilder(); } generationTime_ = input.readMessage(com.google.protobuf.Timestamp.parser(), extensionRegistry); if (subBuilder != null) { subBuilder.mergeFrom(generationTime_); generationTime_ = subBuilder.buildPartial(); } bitField0_ |= 0x00000010; break; } case 48: { bitField0_ |= 0x00000020; expiresIn_ = input.readUInt64(); 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 org.yamcs.protobuf.ProcessingProto.internal_static_yamcs_protobuf_processing_SetParameterValueRequest_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return org.yamcs.protobuf.ProcessingProto.internal_static_yamcs_protobuf_processing_SetParameterValueRequest_fieldAccessorTable .ensureFieldAccessorsInitialized( org.yamcs.protobuf.SetParameterValueRequest.class, org.yamcs.protobuf.SetParameterValueRequest.Builder.class); } private int bitField0_; public static final int INSTANCE_FIELD_NUMBER = 1; private volatile java.lang.Object instance_; /** *
   * Yamcs instance name
   * 
* * optional string instance = 1; * @return Whether the instance field is set. */ @java.lang.Override public boolean hasInstance() { return ((bitField0_ & 0x00000001) != 0); } /** *
   * Yamcs instance name
   * 
* * optional string instance = 1; * @return The instance. */ @java.lang.Override public java.lang.String getInstance() { java.lang.Object ref = instance_; 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(); if (bs.isValidUtf8()) { instance_ = s; } return s; } } /** *
   * Yamcs instance name
   * 
* * optional string instance = 1; * @return The bytes for instance. */ @java.lang.Override public com.google.protobuf.ByteString getInstanceBytes() { java.lang.Object ref = instance_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); instance_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } public static final int PROCESSOR_FIELD_NUMBER = 2; private volatile java.lang.Object processor_; /** *
   * Processor name
   * 
* * optional string processor = 2; * @return Whether the processor field is set. */ @java.lang.Override public boolean hasProcessor() { return ((bitField0_ & 0x00000002) != 0); } /** *
   * Processor name
   * 
* * optional string processor = 2; * @return The processor. */ @java.lang.Override public java.lang.String getProcessor() { java.lang.Object ref = processor_; 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(); if (bs.isValidUtf8()) { processor_ = s; } return s; } } /** *
   * Processor name
   * 
* * optional string processor = 2; * @return The bytes for processor. */ @java.lang.Override public com.google.protobuf.ByteString getProcessorBytes() { java.lang.Object ref = processor_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); processor_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } public static final int NAME_FIELD_NUMBER = 3; private volatile java.lang.Object name_; /** *
   * Parameter name
   * 
* * optional string name = 3; * @return Whether the name field is set. */ @java.lang.Override public boolean hasName() { return ((bitField0_ & 0x00000004) != 0); } /** *
   * Parameter name
   * 
* * optional string name = 3; * @return The name. */ @java.lang.Override 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(); if (bs.isValidUtf8()) { name_ = s; } return s; } } /** *
   * Parameter name
   * 
* * optional string name = 3; * @return The bytes for name. */ @java.lang.Override 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 VALUE_FIELD_NUMBER = 4; private org.yamcs.protobuf.Yamcs.Value value_; /** *
   * The new value
   * 
* * optional .yamcs.protobuf.Value value = 4; * @return Whether the value field is set. */ @java.lang.Override public boolean hasValue() { return ((bitField0_ & 0x00000008) != 0); } /** *
   * The new value
   * 
* * optional .yamcs.protobuf.Value value = 4; * @return The value. */ @java.lang.Override public org.yamcs.protobuf.Yamcs.Value getValue() { return value_ == null ? org.yamcs.protobuf.Yamcs.Value.getDefaultInstance() : value_; } /** *
   * The new value
   * 
* * optional .yamcs.protobuf.Value value = 4; */ @java.lang.Override public org.yamcs.protobuf.Yamcs.ValueOrBuilder getValueOrBuilder() { return value_ == null ? org.yamcs.protobuf.Yamcs.Value.getDefaultInstance() : value_; } public static final int GENERATIONTIME_FIELD_NUMBER = 5; private com.google.protobuf.Timestamp generationTime_; /** *
   * The generation time of the value. If specified, must be a date
   * string in ISO 8601 format.
   * 
* * optional .google.protobuf.Timestamp generationTime = 5; * @return Whether the generationTime field is set. */ @java.lang.Override public boolean hasGenerationTime() { return ((bitField0_ & 0x00000010) != 0); } /** *
   * The generation time of the value. If specified, must be a date
   * string in ISO 8601 format.
   * 
* * optional .google.protobuf.Timestamp generationTime = 5; * @return The generationTime. */ @java.lang.Override public com.google.protobuf.Timestamp getGenerationTime() { return generationTime_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : generationTime_; } /** *
   * The generation time of the value. If specified, must be a date
   * string in ISO 8601 format.
   * 
* * optional .google.protobuf.Timestamp generationTime = 5; */ @java.lang.Override public com.google.protobuf.TimestampOrBuilder getGenerationTimeOrBuilder() { return generationTime_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : generationTime_; } public static final int EXPIRESIN_FIELD_NUMBER = 6; private long expiresIn_; /** *
   * How long before this value is expired, in milliseconds
   * 
* * optional uint64 expiresIn = 6; * @return Whether the expiresIn field is set. */ @java.lang.Override public boolean hasExpiresIn() { return ((bitField0_ & 0x00000020) != 0); } /** *
   * How long before this value is expired, in milliseconds
   * 
* * optional uint64 expiresIn = 6; * @return The expiresIn. */ @java.lang.Override public long getExpiresIn() { return expiresIn_; } private byte memoizedIsInitialized = -1; @java.lang.Override public final boolean isInitialized() { byte isInitialized = memoizedIsInitialized; if (isInitialized == 1) return true; if (isInitialized == 0) return false; if (hasValue()) { if (!getValue().isInitialized()) { memoizedIsInitialized = 0; return false; } } memoizedIsInitialized = 1; return true; } @java.lang.Override public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { if (((bitField0_ & 0x00000001) != 0)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 1, instance_); } if (((bitField0_ & 0x00000002) != 0)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 2, processor_); } if (((bitField0_ & 0x00000004) != 0)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 3, name_); } if (((bitField0_ & 0x00000008) != 0)) { output.writeMessage(4, getValue()); } if (((bitField0_ & 0x00000010) != 0)) { output.writeMessage(5, getGenerationTime()); } if (((bitField0_ & 0x00000020) != 0)) { output.writeUInt64(6, expiresIn_); } unknownFields.writeTo(output); } @java.lang.Override public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; if (((bitField0_ & 0x00000001) != 0)) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, instance_); } if (((bitField0_ & 0x00000002) != 0)) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, processor_); } if (((bitField0_ & 0x00000004) != 0)) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(3, name_); } if (((bitField0_ & 0x00000008) != 0)) { size += com.google.protobuf.CodedOutputStream .computeMessageSize(4, getValue()); } if (((bitField0_ & 0x00000010) != 0)) { size += com.google.protobuf.CodedOutputStream .computeMessageSize(5, getGenerationTime()); } if (((bitField0_ & 0x00000020) != 0)) { size += com.google.protobuf.CodedOutputStream .computeUInt64Size(6, expiresIn_); } 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 org.yamcs.protobuf.SetParameterValueRequest)) { return super.equals(obj); } org.yamcs.protobuf.SetParameterValueRequest other = (org.yamcs.protobuf.SetParameterValueRequest) obj; if (hasInstance() != other.hasInstance()) return false; if (hasInstance()) { if (!getInstance() .equals(other.getInstance())) return false; } if (hasProcessor() != other.hasProcessor()) return false; if (hasProcessor()) { if (!getProcessor() .equals(other.getProcessor())) return false; } if (hasName() != other.hasName()) return false; if (hasName()) { if (!getName() .equals(other.getName())) return false; } if (hasValue() != other.hasValue()) return false; if (hasValue()) { if (!getValue() .equals(other.getValue())) return false; } if (hasGenerationTime() != other.hasGenerationTime()) return false; if (hasGenerationTime()) { if (!getGenerationTime() .equals(other.getGenerationTime())) return false; } if (hasExpiresIn() != other.hasExpiresIn()) return false; if (hasExpiresIn()) { if (getExpiresIn() != other.getExpiresIn()) return false; } if (!unknownFields.equals(other.unknownFields)) return false; return true; } @java.lang.Override public int hashCode() { if (memoizedHashCode != 0) { return memoizedHashCode; } int hash = 41; hash = (19 * hash) + getDescriptor().hashCode(); if (hasInstance()) { hash = (37 * hash) + INSTANCE_FIELD_NUMBER; hash = (53 * hash) + getInstance().hashCode(); } if (hasProcessor()) { hash = (37 * hash) + PROCESSOR_FIELD_NUMBER; hash = (53 * hash) + getProcessor().hashCode(); } if (hasName()) { hash = (37 * hash) + NAME_FIELD_NUMBER; hash = (53 * hash) + getName().hashCode(); } if (hasValue()) { hash = (37 * hash) + VALUE_FIELD_NUMBER; hash = (53 * hash) + getValue().hashCode(); } if (hasGenerationTime()) { hash = (37 * hash) + GENERATIONTIME_FIELD_NUMBER; hash = (53 * hash) + getGenerationTime().hashCode(); } if (hasExpiresIn()) { hash = (37 * hash) + EXPIRESIN_FIELD_NUMBER; hash = (53 * hash) + com.google.protobuf.Internal.hashLong( getExpiresIn()); } hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; return hash; } public static org.yamcs.protobuf.SetParameterValueRequest parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static org.yamcs.protobuf.SetParameterValueRequest parseFrom( java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static org.yamcs.protobuf.SetParameterValueRequest parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static org.yamcs.protobuf.SetParameterValueRequest parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static org.yamcs.protobuf.SetParameterValueRequest parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static org.yamcs.protobuf.SetParameterValueRequest parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static org.yamcs.protobuf.SetParameterValueRequest parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static org.yamcs.protobuf.SetParameterValueRequest 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 org.yamcs.protobuf.SetParameterValueRequest parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } public static org.yamcs.protobuf.SetParameterValueRequest 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 org.yamcs.protobuf.SetParameterValueRequest parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static org.yamcs.protobuf.SetParameterValueRequest 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(org.yamcs.protobuf.SetParameterValueRequest 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; } /** *
   * Request message for `SetParameterValue`.
   * 
* * Protobuf type {@code yamcs.protobuf.processing.SetParameterValueRequest} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:yamcs.protobuf.processing.SetParameterValueRequest) org.yamcs.protobuf.SetParameterValueRequestOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return org.yamcs.protobuf.ProcessingProto.internal_static_yamcs_protobuf_processing_SetParameterValueRequest_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return org.yamcs.protobuf.ProcessingProto.internal_static_yamcs_protobuf_processing_SetParameterValueRequest_fieldAccessorTable .ensureFieldAccessorsInitialized( org.yamcs.protobuf.SetParameterValueRequest.class, org.yamcs.protobuf.SetParameterValueRequest.Builder.class); } // Construct using org.yamcs.protobuf.SetParameterValueRequest.newBuilder() private Builder() { maybeForceBuilderInitialization(); } private Builder( com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } private void maybeForceBuilderInitialization() { if (com.google.protobuf.GeneratedMessageV3 .alwaysUseFieldBuilders) { getValueFieldBuilder(); getGenerationTimeFieldBuilder(); } } @java.lang.Override public Builder clear() { super.clear(); instance_ = ""; bitField0_ = (bitField0_ & ~0x00000001); processor_ = ""; bitField0_ = (bitField0_ & ~0x00000002); name_ = ""; bitField0_ = (bitField0_ & ~0x00000004); if (valueBuilder_ == null) { value_ = null; } else { valueBuilder_.clear(); } bitField0_ = (bitField0_ & ~0x00000008); if (generationTimeBuilder_ == null) { generationTime_ = null; } else { generationTimeBuilder_.clear(); } bitField0_ = (bitField0_ & ~0x00000010); expiresIn_ = 0L; bitField0_ = (bitField0_ & ~0x00000020); return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return org.yamcs.protobuf.ProcessingProto.internal_static_yamcs_protobuf_processing_SetParameterValueRequest_descriptor; } @java.lang.Override public org.yamcs.protobuf.SetParameterValueRequest getDefaultInstanceForType() { return org.yamcs.protobuf.SetParameterValueRequest.getDefaultInstance(); } @java.lang.Override public org.yamcs.protobuf.SetParameterValueRequest build() { org.yamcs.protobuf.SetParameterValueRequest result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public org.yamcs.protobuf.SetParameterValueRequest buildPartial() { org.yamcs.protobuf.SetParameterValueRequest result = new org.yamcs.protobuf.SetParameterValueRequest(this); int from_bitField0_ = bitField0_; int to_bitField0_ = 0; if (((from_bitField0_ & 0x00000001) != 0)) { to_bitField0_ |= 0x00000001; } result.instance_ = instance_; if (((from_bitField0_ & 0x00000002) != 0)) { to_bitField0_ |= 0x00000002; } result.processor_ = processor_; if (((from_bitField0_ & 0x00000004) != 0)) { to_bitField0_ |= 0x00000004; } result.name_ = name_; if (((from_bitField0_ & 0x00000008) != 0)) { if (valueBuilder_ == null) { result.value_ = value_; } else { result.value_ = valueBuilder_.build(); } to_bitField0_ |= 0x00000008; } if (((from_bitField0_ & 0x00000010) != 0)) { if (generationTimeBuilder_ == null) { result.generationTime_ = generationTime_; } else { result.generationTime_ = generationTimeBuilder_.build(); } to_bitField0_ |= 0x00000010; } if (((from_bitField0_ & 0x00000020) != 0)) { result.expiresIn_ = expiresIn_; to_bitField0_ |= 0x00000020; } result.bitField0_ = to_bitField0_; onBuilt(); return result; } @java.lang.Override public Builder clone() { return super.clone(); } @java.lang.Override public Builder setField( com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { return super.setField(field, value); } @java.lang.Override public Builder clearField( com.google.protobuf.Descriptors.FieldDescriptor field) { return super.clearField(field); } @java.lang.Override public Builder clearOneof( com.google.protobuf.Descriptors.OneofDescriptor oneof) { return super.clearOneof(oneof); } @java.lang.Override public Builder setRepeatedField( com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { return super.setRepeatedField(field, index, value); } @java.lang.Override public Builder addRepeatedField( com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { return super.addRepeatedField(field, value); } @java.lang.Override public Builder mergeFrom(com.google.protobuf.Message other) { if (other instanceof org.yamcs.protobuf.SetParameterValueRequest) { return mergeFrom((org.yamcs.protobuf.SetParameterValueRequest)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(org.yamcs.protobuf.SetParameterValueRequest other) { if (other == org.yamcs.protobuf.SetParameterValueRequest.getDefaultInstance()) return this; if (other.hasInstance()) { bitField0_ |= 0x00000001; instance_ = other.instance_; onChanged(); } if (other.hasProcessor()) { bitField0_ |= 0x00000002; processor_ = other.processor_; onChanged(); } if (other.hasName()) { bitField0_ |= 0x00000004; name_ = other.name_; onChanged(); } if (other.hasValue()) { mergeValue(other.getValue()); } if (other.hasGenerationTime()) { mergeGenerationTime(other.getGenerationTime()); } if (other.hasExpiresIn()) { setExpiresIn(other.getExpiresIn()); } this.mergeUnknownFields(other.unknownFields); onChanged(); return this; } @java.lang.Override public final boolean isInitialized() { if (hasValue()) { if (!getValue().isInitialized()) { return false; } } return true; } @java.lang.Override public Builder mergeFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { org.yamcs.protobuf.SetParameterValueRequest parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { parsedMessage = (org.yamcs.protobuf.SetParameterValueRequest) e.getUnfinishedMessage(); throw e.unwrapIOException(); } finally { if (parsedMessage != null) { mergeFrom(parsedMessage); } } return this; } private int bitField0_; private java.lang.Object instance_ = ""; /** *
     * Yamcs instance name
     * 
* * optional string instance = 1; * @return Whether the instance field is set. */ public boolean hasInstance() { return ((bitField0_ & 0x00000001) != 0); } /** *
     * Yamcs instance name
     * 
* * optional string instance = 1; * @return The instance. */ public java.lang.String getInstance() { java.lang.Object ref = instance_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); if (bs.isValidUtf8()) { instance_ = s; } return s; } else { return (java.lang.String) ref; } } /** *
     * Yamcs instance name
     * 
* * optional string instance = 1; * @return The bytes for instance. */ public com.google.protobuf.ByteString getInstanceBytes() { java.lang.Object ref = instance_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); instance_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** *
     * Yamcs instance name
     * 
* * optional string instance = 1; * @param value The instance to set. * @return This builder for chaining. */ public Builder setInstance( java.lang.String value) { if (value == null) { throw new NullPointerException(); } bitField0_ |= 0x00000001; instance_ = value; onChanged(); return this; } /** *
     * Yamcs instance name
     * 
* * optional string instance = 1; * @return This builder for chaining. */ public Builder clearInstance() { bitField0_ = (bitField0_ & ~0x00000001); instance_ = getDefaultInstance().getInstance(); onChanged(); return this; } /** *
     * Yamcs instance name
     * 
* * optional string instance = 1; * @param value The bytes for instance to set. * @return This builder for chaining. */ public Builder setInstanceBytes( com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } bitField0_ |= 0x00000001; instance_ = value; onChanged(); return this; } private java.lang.Object processor_ = ""; /** *
     * Processor name
     * 
* * optional string processor = 2; * @return Whether the processor field is set. */ public boolean hasProcessor() { return ((bitField0_ & 0x00000002) != 0); } /** *
     * Processor name
     * 
* * optional string processor = 2; * @return The processor. */ public java.lang.String getProcessor() { java.lang.Object ref = processor_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); if (bs.isValidUtf8()) { processor_ = s; } return s; } else { return (java.lang.String) ref; } } /** *
     * Processor name
     * 
* * optional string processor = 2; * @return The bytes for processor. */ public com.google.protobuf.ByteString getProcessorBytes() { java.lang.Object ref = processor_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); processor_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** *
     * Processor name
     * 
* * optional string processor = 2; * @param value The processor to set. * @return This builder for chaining. */ public Builder setProcessor( java.lang.String value) { if (value == null) { throw new NullPointerException(); } bitField0_ |= 0x00000002; processor_ = value; onChanged(); return this; } /** *
     * Processor name
     * 
* * optional string processor = 2; * @return This builder for chaining. */ public Builder clearProcessor() { bitField0_ = (bitField0_ & ~0x00000002); processor_ = getDefaultInstance().getProcessor(); onChanged(); return this; } /** *
     * Processor name
     * 
* * optional string processor = 2; * @param value The bytes for processor to set. * @return This builder for chaining. */ public Builder setProcessorBytes( com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } bitField0_ |= 0x00000002; processor_ = value; onChanged(); return this; } private java.lang.Object name_ = ""; /** *
     * Parameter name
     * 
* * optional string name = 3; * @return Whether the name field is set. */ public boolean hasName() { return ((bitField0_ & 0x00000004) != 0); } /** *
     * Parameter name
     * 
* * optional string name = 3; * @return The name. */ 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(); if (bs.isValidUtf8()) { name_ = s; } return s; } else { return (java.lang.String) ref; } } /** *
     * Parameter name
     * 
* * optional string name = 3; * @return The bytes for name. */ 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; } } /** *
     * Parameter name
     * 
* * optional string name = 3; * @param value The name to set. * @return This builder for chaining. */ public Builder setName( java.lang.String value) { if (value == null) { throw new NullPointerException(); } bitField0_ |= 0x00000004; name_ = value; onChanged(); return this; } /** *
     * Parameter name
     * 
* * optional string name = 3; * @return This builder for chaining. */ public Builder clearName() { bitField0_ = (bitField0_ & ~0x00000004); name_ = getDefaultInstance().getName(); onChanged(); return this; } /** *
     * Parameter name
     * 
* * optional string name = 3; * @param value The bytes for name to set. * @return This builder for chaining. */ public Builder setNameBytes( com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } bitField0_ |= 0x00000004; name_ = value; onChanged(); return this; } private org.yamcs.protobuf.Yamcs.Value value_; private com.google.protobuf.SingleFieldBuilderV3< org.yamcs.protobuf.Yamcs.Value, org.yamcs.protobuf.Yamcs.Value.Builder, org.yamcs.protobuf.Yamcs.ValueOrBuilder> valueBuilder_; /** *
     * The new value
     * 
* * optional .yamcs.protobuf.Value value = 4; * @return Whether the value field is set. */ public boolean hasValue() { return ((bitField0_ & 0x00000008) != 0); } /** *
     * The new value
     * 
* * optional .yamcs.protobuf.Value value = 4; * @return The value. */ public org.yamcs.protobuf.Yamcs.Value getValue() { if (valueBuilder_ == null) { return value_ == null ? org.yamcs.protobuf.Yamcs.Value.getDefaultInstance() : value_; } else { return valueBuilder_.getMessage(); } } /** *
     * The new value
     * 
* * optional .yamcs.protobuf.Value value = 4; */ public Builder setValue(org.yamcs.protobuf.Yamcs.Value value) { if (valueBuilder_ == null) { if (value == null) { throw new NullPointerException(); } value_ = value; onChanged(); } else { valueBuilder_.setMessage(value); } bitField0_ |= 0x00000008; return this; } /** *
     * The new value
     * 
* * optional .yamcs.protobuf.Value value = 4; */ public Builder setValue( org.yamcs.protobuf.Yamcs.Value.Builder builderForValue) { if (valueBuilder_ == null) { value_ = builderForValue.build(); onChanged(); } else { valueBuilder_.setMessage(builderForValue.build()); } bitField0_ |= 0x00000008; return this; } /** *
     * The new value
     * 
* * optional .yamcs.protobuf.Value value = 4; */ public Builder mergeValue(org.yamcs.protobuf.Yamcs.Value value) { if (valueBuilder_ == null) { if (((bitField0_ & 0x00000008) != 0) && value_ != null && value_ != org.yamcs.protobuf.Yamcs.Value.getDefaultInstance()) { value_ = org.yamcs.protobuf.Yamcs.Value.newBuilder(value_).mergeFrom(value).buildPartial(); } else { value_ = value; } onChanged(); } else { valueBuilder_.mergeFrom(value); } bitField0_ |= 0x00000008; return this; } /** *
     * The new value
     * 
* * optional .yamcs.protobuf.Value value = 4; */ public Builder clearValue() { if (valueBuilder_ == null) { value_ = null; onChanged(); } else { valueBuilder_.clear(); } bitField0_ = (bitField0_ & ~0x00000008); return this; } /** *
     * The new value
     * 
* * optional .yamcs.protobuf.Value value = 4; */ public org.yamcs.protobuf.Yamcs.Value.Builder getValueBuilder() { bitField0_ |= 0x00000008; onChanged(); return getValueFieldBuilder().getBuilder(); } /** *
     * The new value
     * 
* * optional .yamcs.protobuf.Value value = 4; */ public org.yamcs.protobuf.Yamcs.ValueOrBuilder getValueOrBuilder() { if (valueBuilder_ != null) { return valueBuilder_.getMessageOrBuilder(); } else { return value_ == null ? org.yamcs.protobuf.Yamcs.Value.getDefaultInstance() : value_; } } /** *
     * The new value
     * 
* * optional .yamcs.protobuf.Value value = 4; */ private com.google.protobuf.SingleFieldBuilderV3< org.yamcs.protobuf.Yamcs.Value, org.yamcs.protobuf.Yamcs.Value.Builder, org.yamcs.protobuf.Yamcs.ValueOrBuilder> getValueFieldBuilder() { if (valueBuilder_ == null) { valueBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< org.yamcs.protobuf.Yamcs.Value, org.yamcs.protobuf.Yamcs.Value.Builder, org.yamcs.protobuf.Yamcs.ValueOrBuilder>( getValue(), getParentForChildren(), isClean()); value_ = null; } return valueBuilder_; } private com.google.protobuf.Timestamp generationTime_; private com.google.protobuf.SingleFieldBuilderV3< com.google.protobuf.Timestamp, com.google.protobuf.Timestamp.Builder, com.google.protobuf.TimestampOrBuilder> generationTimeBuilder_; /** *
     * The generation time of the value. If specified, must be a date
     * string in ISO 8601 format.
     * 
* * optional .google.protobuf.Timestamp generationTime = 5; * @return Whether the generationTime field is set. */ public boolean hasGenerationTime() { return ((bitField0_ & 0x00000010) != 0); } /** *
     * The generation time of the value. If specified, must be a date
     * string in ISO 8601 format.
     * 
* * optional .google.protobuf.Timestamp generationTime = 5; * @return The generationTime. */ public com.google.protobuf.Timestamp getGenerationTime() { if (generationTimeBuilder_ == null) { return generationTime_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : generationTime_; } else { return generationTimeBuilder_.getMessage(); } } /** *
     * The generation time of the value. If specified, must be a date
     * string in ISO 8601 format.
     * 
* * optional .google.protobuf.Timestamp generationTime = 5; */ public Builder setGenerationTime(com.google.protobuf.Timestamp value) { if (generationTimeBuilder_ == null) { if (value == null) { throw new NullPointerException(); } generationTime_ = value; onChanged(); } else { generationTimeBuilder_.setMessage(value); } bitField0_ |= 0x00000010; return this; } /** *
     * The generation time of the value. If specified, must be a date
     * string in ISO 8601 format.
     * 
* * optional .google.protobuf.Timestamp generationTime = 5; */ public Builder setGenerationTime( com.google.protobuf.Timestamp.Builder builderForValue) { if (generationTimeBuilder_ == null) { generationTime_ = builderForValue.build(); onChanged(); } else { generationTimeBuilder_.setMessage(builderForValue.build()); } bitField0_ |= 0x00000010; return this; } /** *
     * The generation time of the value. If specified, must be a date
     * string in ISO 8601 format.
     * 
* * optional .google.protobuf.Timestamp generationTime = 5; */ public Builder mergeGenerationTime(com.google.protobuf.Timestamp value) { if (generationTimeBuilder_ == null) { if (((bitField0_ & 0x00000010) != 0) && generationTime_ != null && generationTime_ != com.google.protobuf.Timestamp.getDefaultInstance()) { generationTime_ = com.google.protobuf.Timestamp.newBuilder(generationTime_).mergeFrom(value).buildPartial(); } else { generationTime_ = value; } onChanged(); } else { generationTimeBuilder_.mergeFrom(value); } bitField0_ |= 0x00000010; return this; } /** *
     * The generation time of the value. If specified, must be a date
     * string in ISO 8601 format.
     * 
* * optional .google.protobuf.Timestamp generationTime = 5; */ public Builder clearGenerationTime() { if (generationTimeBuilder_ == null) { generationTime_ = null; onChanged(); } else { generationTimeBuilder_.clear(); } bitField0_ = (bitField0_ & ~0x00000010); return this; } /** *
     * The generation time of the value. If specified, must be a date
     * string in ISO 8601 format.
     * 
* * optional .google.protobuf.Timestamp generationTime = 5; */ public com.google.protobuf.Timestamp.Builder getGenerationTimeBuilder() { bitField0_ |= 0x00000010; onChanged(); return getGenerationTimeFieldBuilder().getBuilder(); } /** *
     * The generation time of the value. If specified, must be a date
     * string in ISO 8601 format.
     * 
* * optional .google.protobuf.Timestamp generationTime = 5; */ public com.google.protobuf.TimestampOrBuilder getGenerationTimeOrBuilder() { if (generationTimeBuilder_ != null) { return generationTimeBuilder_.getMessageOrBuilder(); } else { return generationTime_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : generationTime_; } } /** *
     * The generation time of the value. If specified, must be a date
     * string in ISO 8601 format.
     * 
* * optional .google.protobuf.Timestamp generationTime = 5; */ private com.google.protobuf.SingleFieldBuilderV3< com.google.protobuf.Timestamp, com.google.protobuf.Timestamp.Builder, com.google.protobuf.TimestampOrBuilder> getGenerationTimeFieldBuilder() { if (generationTimeBuilder_ == null) { generationTimeBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< com.google.protobuf.Timestamp, com.google.protobuf.Timestamp.Builder, com.google.protobuf.TimestampOrBuilder>( getGenerationTime(), getParentForChildren(), isClean()); generationTime_ = null; } return generationTimeBuilder_; } private long expiresIn_ ; /** *
     * How long before this value is expired, in milliseconds
     * 
* * optional uint64 expiresIn = 6; * @return Whether the expiresIn field is set. */ @java.lang.Override public boolean hasExpiresIn() { return ((bitField0_ & 0x00000020) != 0); } /** *
     * How long before this value is expired, in milliseconds
     * 
* * optional uint64 expiresIn = 6; * @return The expiresIn. */ @java.lang.Override public long getExpiresIn() { return expiresIn_; } /** *
     * How long before this value is expired, in milliseconds
     * 
* * optional uint64 expiresIn = 6; * @param value The expiresIn to set. * @return This builder for chaining. */ public Builder setExpiresIn(long value) { bitField0_ |= 0x00000020; expiresIn_ = value; onChanged(); return this; } /** *
     * How long before this value is expired, in milliseconds
     * 
* * optional uint64 expiresIn = 6; * @return This builder for chaining. */ public Builder clearExpiresIn() { bitField0_ = (bitField0_ & ~0x00000020); expiresIn_ = 0L; 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:yamcs.protobuf.processing.SetParameterValueRequest) } // @@protoc_insertion_point(class_scope:yamcs.protobuf.processing.SetParameterValueRequest) private static final org.yamcs.protobuf.SetParameterValueRequest DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new org.yamcs.protobuf.SetParameterValueRequest(); } public static org.yamcs.protobuf.SetParameterValueRequest getDefaultInstance() { return DEFAULT_INSTANCE; } @java.lang.Deprecated public static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override public SetParameterValueRequest parsePartialFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return new SetParameterValueRequest(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 org.yamcs.protobuf.SetParameterValueRequest getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy