Class IssueCommandRequest

  • All Implemented Interfaces:
    com.google.protobuf.Message, com.google.protobuf.MessageLite, com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder, Serializable, IssueCommandRequestOrBuilder

    public final class IssueCommandRequest
    extends com.google.protobuf.GeneratedMessageV3
    implements IssueCommandRequestOrBuilder
    Protobuf type yamcs.protobuf.commanding.IssueCommandRequest
    See Also:
    Serialized Form
    • Method Detail

      • getUnknownFields

        public final com.google.protobuf.UnknownFieldSet getUnknownFields()
        Specified by:
        getUnknownFields in interface com.google.protobuf.MessageOrBuilder
        Overrides:
        getUnknownFields in class com.google.protobuf.GeneratedMessageV3
      • getDescriptor

        public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
      • internalGetMapField

        protected com.google.protobuf.MapField internalGetMapField​(int number)
        Overrides:
        internalGetMapField in class com.google.protobuf.GeneratedMessageV3
      • internalGetFieldAccessorTable

        protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
        Specified by:
        internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
      • getAssignmentCount

        public int getAssignmentCount()
         The name/value assignments for this command.
         
        repeated .yamcs.protobuf.commanding.IssueCommandRequest.Assignment assignment = 1;
        Specified by:
        getAssignmentCount in interface IssueCommandRequestOrBuilder
      • hasOrigin

        public boolean hasOrigin()
         The origin of the command. Typically a hostname.
         
        optional string origin = 2;
        Specified by:
        hasOrigin in interface IssueCommandRequestOrBuilder
      • getOriginBytes

        public com.google.protobuf.ByteString getOriginBytes()
         The origin of the command. Typically a hostname.
         
        optional string origin = 2;
        Specified by:
        getOriginBytes in interface IssueCommandRequestOrBuilder
      • hasSequenceNumber

        public boolean hasSequenceNumber()
         The sequence number as specified by the origin. This gets
         communicated back in command history and command queue entries,
         thereby allowing clients to map local with remote command
         identities.
         
        optional int32 sequenceNumber = 3;
        Specified by:
        hasSequenceNumber in interface IssueCommandRequestOrBuilder
      • getSequenceNumber

        public int getSequenceNumber()
         The sequence number as specified by the origin. This gets
         communicated back in command history and command queue entries,
         thereby allowing clients to map local with remote command
         identities.
         
        optional int32 sequenceNumber = 3;
        Specified by:
        getSequenceNumber in interface IssueCommandRequestOrBuilder
      • hasDryRun

        public boolean hasDryRun()
         Whether a response will be returned without actually issuing
         the command. This is useful when debugging commands.
         Default ``no``
         
        optional bool dryRun = 4;
        Specified by:
        hasDryRun in interface IssueCommandRequestOrBuilder
      • getDryRun

        public boolean getDryRun()
         Whether a response will be returned without actually issuing
         the command. This is useful when debugging commands.
         Default ``no``
         
        optional bool dryRun = 4;
        Specified by:
        getDryRun in interface IssueCommandRequestOrBuilder
      • hasStream

        public boolean hasStream()
         Override the stream on which the command should be sent out.
         Requires elevated privilege.
         
        optional string stream = 11;
        Specified by:
        hasStream in interface IssueCommandRequestOrBuilder
      • getStream

        public String getStream()
         Override the stream on which the command should be sent out.
         Requires elevated privilege.
         
        optional string stream = 11;
        Specified by:
        getStream in interface IssueCommandRequestOrBuilder
      • getStreamBytes

        public com.google.protobuf.ByteString getStreamBytes()
         Override the stream on which the command should be sent out.
         Requires elevated privilege.
         
        optional string stream = 11;
        Specified by:
        getStreamBytes in interface IssueCommandRequestOrBuilder
      • hasDisableTransmissionConstraints

        public boolean hasDisableTransmissionConstraints()
         Disable verification of all transmission constrains (if any
         specified in the MDB).
         Requires elevated privilege.
         
        optional bool disableTransmissionConstraints = 12;
        Specified by:
        hasDisableTransmissionConstraints in interface IssueCommandRequestOrBuilder
      • getDisableTransmissionConstraints

        public boolean getDisableTransmissionConstraints()
         Disable verification of all transmission constrains (if any
         specified in the MDB).
         Requires elevated privilege.
         
        optional bool disableTransmissionConstraints = 12;
        Specified by:
        getDisableTransmissionConstraints in interface IssueCommandRequestOrBuilder
      • hasDisableVerifiers

        public boolean hasDisableVerifiers()
         Disable all post transmission verifiers (if any specified in the MDB)
         Requires elevated privilege.
         
        optional bool disableVerifiers = 13;
        Specified by:
        hasDisableVerifiers in interface IssueCommandRequestOrBuilder
      • getDisableVerifiers

        public boolean getDisableVerifiers()
         Disable all post transmission verifiers (if any specified in the MDB)
         Requires elevated privilege.
         
        optional bool disableVerifiers = 13;
        Specified by:
        getDisableVerifiers in interface IssueCommandRequestOrBuilder
      • containsVerifierConfig

        public boolean containsVerifierConfig​(String key)
         Override verifier configuration. Keyed by verifier name
         Requires elevated privilege.
         
        map<string, .yamcs.protobuf.commanding.VerifierConfig> verifierConfig = 14;
        Specified by:
        containsVerifierConfig in interface IssueCommandRequestOrBuilder
      • getExtraCount

        public int getExtraCount()
        Description copied from interface: IssueCommandRequestOrBuilder
         Specify custom options for interpretation by non-core extensions.
         Extensions must register these options against org.yamcs.YamcsServer
         
        map<string, .yamcs.protobuf.Value> extra = 15;
        Specified by:
        getExtraCount in interface IssueCommandRequestOrBuilder
      • containsExtra

        public boolean containsExtra​(String key)
         Specify custom options for interpretation by non-core extensions.
         Extensions must register these options against org.yamcs.YamcsServer
         
        map<string, .yamcs.protobuf.Value> extra = 15;
        Specified by:
        containsExtra in interface IssueCommandRequestOrBuilder
      • getExtraMap

        public Map<String,​Yamcs.Value> getExtraMap()
         Specify custom options for interpretation by non-core extensions.
         Extensions must register these options against org.yamcs.YamcsServer
         
        map<string, .yamcs.protobuf.Value> extra = 15;
        Specified by:
        getExtraMap in interface IssueCommandRequestOrBuilder
      • getExtraOrThrow

        public Yamcs.Value getExtraOrThrow​(String key)
         Specify custom options for interpretation by non-core extensions.
         Extensions must register these options against org.yamcs.YamcsServer
         
        map<string, .yamcs.protobuf.Value> extra = 15;
        Specified by:
        getExtraOrThrow in interface IssueCommandRequestOrBuilder
      • isInitialized

        public final boolean isInitialized()
        Specified by:
        isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
        Overrides:
        isInitialized in class com.google.protobuf.GeneratedMessageV3
      • writeTo

        public void writeTo​(com.google.protobuf.CodedOutputStream output)
                     throws IOException
        Specified by:
        writeTo in interface com.google.protobuf.MessageLite
        Overrides:
        writeTo in class com.google.protobuf.GeneratedMessageV3
        Throws:
        IOException
      • getSerializedSize

        public int getSerializedSize()
        Specified by:
        getSerializedSize in interface com.google.protobuf.MessageLite
        Overrides:
        getSerializedSize in class com.google.protobuf.GeneratedMessageV3
      • equals

        public boolean equals​(Object obj)
        Specified by:
        equals in interface com.google.protobuf.Message
        Overrides:
        equals in class com.google.protobuf.AbstractMessage
      • hashCode

        public int hashCode()
        Specified by:
        hashCode in interface com.google.protobuf.Message
        Overrides:
        hashCode in class com.google.protobuf.AbstractMessage
      • parseFrom

        public static IssueCommandRequest parseFrom​(ByteBuffer data)
                                             throws com.google.protobuf.InvalidProtocolBufferException
        Throws:
        com.google.protobuf.InvalidProtocolBufferException
      • parseFrom

        public static IssueCommandRequest parseFrom​(ByteBuffer data,
                                                    com.google.protobuf.ExtensionRegistryLite extensionRegistry)
                                             throws com.google.protobuf.InvalidProtocolBufferException
        Throws:
        com.google.protobuf.InvalidProtocolBufferException
      • parseFrom

        public static IssueCommandRequest parseFrom​(com.google.protobuf.ByteString data)
                                             throws com.google.protobuf.InvalidProtocolBufferException
        Throws:
        com.google.protobuf.InvalidProtocolBufferException
      • parseFrom

        public static IssueCommandRequest parseFrom​(com.google.protobuf.ByteString data,
                                                    com.google.protobuf.ExtensionRegistryLite extensionRegistry)
                                             throws com.google.protobuf.InvalidProtocolBufferException
        Throws:
        com.google.protobuf.InvalidProtocolBufferException
      • parseFrom

        public static IssueCommandRequest parseFrom​(byte[] data)
                                             throws com.google.protobuf.InvalidProtocolBufferException
        Throws:
        com.google.protobuf.InvalidProtocolBufferException
      • parseFrom

        public static IssueCommandRequest parseFrom​(byte[] data,
                                                    com.google.protobuf.ExtensionRegistryLite extensionRegistry)
                                             throws com.google.protobuf.InvalidProtocolBufferException
        Throws:
        com.google.protobuf.InvalidProtocolBufferException
      • parseFrom

        public static IssueCommandRequest parseFrom​(com.google.protobuf.CodedInputStream input,
                                                    com.google.protobuf.ExtensionRegistryLite extensionRegistry)
                                             throws IOException
        Throws:
        IOException
      • newBuilderForType

        public IssueCommandRequest.Builder newBuilderForType()
        Specified by:
        newBuilderForType in interface com.google.protobuf.Message
        Specified by:
        newBuilderForType in interface com.google.protobuf.MessageLite
      • toBuilder

        public IssueCommandRequest.Builder toBuilder()
        Specified by:
        toBuilder in interface com.google.protobuf.Message
        Specified by:
        toBuilder in interface com.google.protobuf.MessageLite
      • newBuilderForType

        protected IssueCommandRequest.Builder newBuilderForType​(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
        Specified by:
        newBuilderForType in class com.google.protobuf.GeneratedMessageV3
      • getParserForType

        public com.google.protobuf.Parser<IssueCommandRequest> getParserForType()
        Specified by:
        getParserForType in interface com.google.protobuf.Message
        Specified by:
        getParserForType in interface com.google.protobuf.MessageLite
        Overrides:
        getParserForType in class com.google.protobuf.GeneratedMessageV3
      • getDefaultInstanceForType

        public IssueCommandRequest getDefaultInstanceForType()
        Specified by:
        getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
        Specified by:
        getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder