Class UpdateBandRequest

java.lang.Object
com.google.protobuf.AbstractMessageLite
com.google.protobuf.AbstractMessage
com.google.protobuf.GeneratedMessageV3
org.yamcs.protobuf.UpdateBandRequest
All Implemented Interfaces:
com.google.protobuf.Message, com.google.protobuf.MessageLite, com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder, Serializable, UpdateBandRequestOrBuilder

public final class UpdateBandRequest extends com.google.protobuf.GeneratedMessageV3 implements UpdateBandRequestOrBuilder
Protobuf type yamcs.protobuf.timeline.UpdateBandRequest
See Also:
  • Field Details

  • Method Details

    • newInstance

      protected Object newInstance(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
      Overrides:
      newInstance in class com.google.protobuf.GeneratedMessageV3
    • 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
    • hasInstance

      public boolean hasInstance()
       Yamcs instance name
       
      optional string instance = 1;
      Specified by:
      hasInstance in interface UpdateBandRequestOrBuilder
      Returns:
      Whether the instance field is set.
    • getInstance

      public String getInstance()
       Yamcs instance name
       
      optional string instance = 1;
      Specified by:
      getInstance in interface UpdateBandRequestOrBuilder
      Returns:
      The instance.
    • getInstanceBytes

      public com.google.protobuf.ByteString getInstanceBytes()
       Yamcs instance name
       
      optional string instance = 1;
      Specified by:
      getInstanceBytes in interface UpdateBandRequestOrBuilder
      Returns:
      The bytes for instance.
    • hasId

      public boolean hasId()
       Band identifier
       
      optional string id = 2;
      Specified by:
      hasId in interface UpdateBandRequestOrBuilder
      Returns:
      Whether the id field is set.
    • getId

      public String getId()
       Band identifier
       
      optional string id = 2;
      Specified by:
      getId in interface UpdateBandRequestOrBuilder
      Returns:
      The id.
    • getIdBytes

      public com.google.protobuf.ByteString getIdBytes()
       Band identifier
       
      optional string id = 2;
      Specified by:
      getIdBytes in interface UpdateBandRequestOrBuilder
      Returns:
      The bytes for id.
    • hasName

      public boolean hasName()
       Band name
       
      optional string name = 3;
      Specified by:
      hasName in interface UpdateBandRequestOrBuilder
      Returns:
      Whether the name field is set.
    • getName

      public String getName()
       Band name
       
      optional string name = 3;
      Specified by:
      getName in interface UpdateBandRequestOrBuilder
      Returns:
      The name.
    • getNameBytes

      public com.google.protobuf.ByteString getNameBytes()
       Band name
       
      optional string name = 3;
      Specified by:
      getNameBytes in interface UpdateBandRequestOrBuilder
      Returns:
      The bytes for name.
    • hasDescription

      public boolean hasDescription()
       Band description
       
      optional string description = 4;
      Specified by:
      hasDescription in interface UpdateBandRequestOrBuilder
      Returns:
      Whether the description field is set.
    • getDescription

      public String getDescription()
       Band description
       
      optional string description = 4;
      Specified by:
      getDescription in interface UpdateBandRequestOrBuilder
      Returns:
      The description.
    • getDescriptionBytes

      public com.google.protobuf.ByteString getDescriptionBytes()
       Band description
       
      optional string description = 4;
      Specified by:
      getDescriptionBytes in interface UpdateBandRequestOrBuilder
      Returns:
      The bytes for description.
    • hasShared

      public boolean hasShared()
      if true, all users have access to this band, otherwise only the user who has created it
       
      optional bool shared = 5;
      Specified by:
      hasShared in interface UpdateBandRequestOrBuilder
      Returns:
      Whether the shared field is set.
    • getShared

      public boolean getShared()
      if true, all users have access to this band, otherwise only the user who has created it
       
      optional bool shared = 5;
      Specified by:
      getShared in interface UpdateBandRequestOrBuilder
      Returns:
      The shared.
    • getTagsList

      public com.google.protobuf.ProtocolStringList getTagsList()
       Items containing these tags will be part of the timeline
       
      repeated string tags = 6;
      Specified by:
      getTagsList in interface UpdateBandRequestOrBuilder
      Returns:
      A list containing the tags.
    • getTagsCount

      public int getTagsCount()
       Items containing these tags will be part of the timeline
       
      repeated string tags = 6;
      Specified by:
      getTagsCount in interface UpdateBandRequestOrBuilder
      Returns:
      The count of tags.
    • getTags

      public String getTags(int index)
       Items containing these tags will be part of the timeline
       
      repeated string tags = 6;
      Specified by:
      getTags in interface UpdateBandRequestOrBuilder
      Parameters:
      index - The index of the element to return.
      Returns:
      The tags at the given index.
    • getTagsBytes

      public com.google.protobuf.ByteString getTagsBytes(int index)
       Items containing these tags will be part of the timeline
       
      repeated string tags = 6;
      Specified by:
      getTagsBytes in interface UpdateBandRequestOrBuilder
      Parameters:
      index - The index of the value to return.
      Returns:
      The bytes of the tags at the given index.
    • getPropertiesCount

      public int getPropertiesCount()
      Description copied from interface: UpdateBandRequestOrBuilder
       Additional properties used by yamcs-web to render this band
       
      map<string, string> properties = 7;
      Specified by:
      getPropertiesCount in interface UpdateBandRequestOrBuilder
    • containsProperties

      public boolean containsProperties(String key)
       Additional properties used by yamcs-web to render this band
       
      map<string, string> properties = 7;
      Specified by:
      containsProperties in interface UpdateBandRequestOrBuilder
    • getProperties

      @Deprecated public Map<String,String> getProperties()
      Deprecated.
      Use getPropertiesMap() instead.
      Specified by:
      getProperties in interface UpdateBandRequestOrBuilder
    • getPropertiesMap

      public Map<String,String> getPropertiesMap()
       Additional properties used by yamcs-web to render this band
       
      map<string, string> properties = 7;
      Specified by:
      getPropertiesMap in interface UpdateBandRequestOrBuilder
    • getPropertiesOrDefault

      public String getPropertiesOrDefault(String key, String defaultValue)
       Additional properties used by yamcs-web to render this band
       
      map<string, string> properties = 7;
      Specified by:
      getPropertiesOrDefault in interface UpdateBandRequestOrBuilder
    • getPropertiesOrThrow

      public String getPropertiesOrThrow(String key)
       Additional properties used by yamcs-web to render this band
       
      map<string, string> properties = 7;
      Specified by:
      getPropertiesOrThrow in interface UpdateBandRequestOrBuilder
    • hasSource

      public boolean hasSource()
      Where the items shown on this band come from
       
      optional string source = 8;
      Specified by:
      hasSource in interface UpdateBandRequestOrBuilder
      Returns:
      Whether the source field is set.
    • getSource

      public String getSource()
      Where the items shown on this band come from
       
      optional string source = 8;
      Specified by:
      getSource in interface UpdateBandRequestOrBuilder
      Returns:
      The source.
    • getSourceBytes

      public com.google.protobuf.ByteString getSourceBytes()
      Where the items shown on this band come from
       
      optional string source = 8;
      Specified by:
      getSourceBytes in interface UpdateBandRequestOrBuilder
      Returns:
      The bytes for source.
    • getFiltersList

      public List<ItemFilter> getFiltersList()
      filters to apply when retrieving the items
       
      repeated .yamcs.protobuf.timeline.ItemFilter filters = 9;
      Specified by:
      getFiltersList in interface UpdateBandRequestOrBuilder
    • getFiltersOrBuilderList

      public List<? extends ItemFilterOrBuilder> getFiltersOrBuilderList()
      filters to apply when retrieving the items
       
      repeated .yamcs.protobuf.timeline.ItemFilter filters = 9;
      Specified by:
      getFiltersOrBuilderList in interface UpdateBandRequestOrBuilder
    • getFiltersCount

      public int getFiltersCount()
      filters to apply when retrieving the items
       
      repeated .yamcs.protobuf.timeline.ItemFilter filters = 9;
      Specified by:
      getFiltersCount in interface UpdateBandRequestOrBuilder
    • getFilters

      public ItemFilter getFilters(int index)
      filters to apply when retrieving the items
       
      repeated .yamcs.protobuf.timeline.ItemFilter filters = 9;
      Specified by:
      getFilters in interface UpdateBandRequestOrBuilder
    • getFiltersOrBuilder

      public ItemFilterOrBuilder getFiltersOrBuilder(int index)
      filters to apply when retrieving the items
       
      repeated .yamcs.protobuf.timeline.ItemFilter filters = 9;
      Specified by:
      getFiltersOrBuilder in interface UpdateBandRequestOrBuilder
    • 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 UpdateBandRequest parseFrom(ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
    • parseFrom

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

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

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

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

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

      public static UpdateBandRequest parseFrom(InputStream input) throws IOException
      Throws:
      IOException
    • parseFrom

      public static UpdateBandRequest parseFrom(InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws IOException
      Throws:
      IOException
    • parseDelimitedFrom

      public static UpdateBandRequest parseDelimitedFrom(InputStream input) throws IOException
      Throws:
      IOException
    • parseDelimitedFrom

      public static UpdateBandRequest parseDelimitedFrom(InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws IOException
      Throws:
      IOException
    • parseFrom

      public static UpdateBandRequest parseFrom(com.google.protobuf.CodedInputStream input) throws IOException
      Throws:
      IOException
    • parseFrom

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

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

      public static UpdateBandRequest.Builder newBuilder()
    • newBuilder

      public static UpdateBandRequest.Builder newBuilder(UpdateBandRequest prototype)
    • toBuilder

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

      protected UpdateBandRequest.Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
      Specified by:
      newBuilderForType in class com.google.protobuf.GeneratedMessageV3
    • getDefaultInstance

      public static UpdateBandRequest getDefaultInstance()
    • parser

      public static com.google.protobuf.Parser<UpdateBandRequest> parser()
    • getParserForType

      public com.google.protobuf.Parser<UpdateBandRequest> 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 UpdateBandRequest getDefaultInstanceForType()
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder