Enum RSCPTag

  • All Implemented Interfaces:
    de.jnkconsulting.e3dc.easyrscp.api.frame.Tag , java.io.Serializable , kotlin.Comparable

    
    public enum RSCPTag
    extends Enum<RSCPTag> implements Tag
                        

    Defines tags related to the RSCP protocol itself. Mostly acts these are the tags for authentication and encryption

    Since:

    2.0

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Constructor Summary

      Constructors 
      Constructor Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      REQ_AUTHENTICATION

      hex = "0x00000001", type = DataType.CONTAINER

      You know what the tag means or want to improve the tag description? Create a Ticket.

      Original E3DC Documentation:

      en: This TAG encapsulates an authorization request to the S10. It therefore contains the data tags AUTHENTICATION_USER and AUTHENTICATION_PASSWORD

      de: Dieser TAG kapselt eine Authorisierungsanfrage an das S10. Er enthält daher die Daten-Tags AUTHENTICATION_USER und AUTHENTICATION_PASSWORD

      AUTHENTICATION_USER

      hex = "0x00000002", type = DataType.STRING

      You know what the tag means or want to improve the tag description? Create a Ticket.

      Original E3DC Documentation:

      en:

      de: Benutzername innerhalb eines REQ_AUTHENTICATION

      AUTHENTICATION_PASSWORD

      hex = "0x00000003", type = DataType.STRING

      You know what the tag means or want to improve the tag description? Create a Ticket.

      Original E3DC Documentation:

      en:

      de: Passwort innerhalb eines REQ_AUTHENTICATION

      AUTHENTICATION

      hex = "0x00800001", type = DataType.UCHAR8

      You know what the tag means or want to improve the tag description? Create a Ticket.

      Original E3DC Documentation:

      en: The response to a REQ_AUTHENTICATION containing the level obtained. / authorization failed.

      de: Die Antwort auf einen REQ_AUTHENTICATION die den erhaltenen Level enthällt. / ist die Authorisierung fehlgeschlagen.

      NO_AUTH - 0 USER - 10 INSTALLER - 20 PARTNER - 30 E3DC - 40 E3DC_ADMIN - 50 E3DC_ROOT - 60

      REQ_USER_LEVEL

      hex = "0x00000004", type = DataType.NONE

      You know what the tag means or want to improve the tag description? Create a Ticket.

      Original E3DC Documentation:

      en:

      de:

      USER_LEVEL

      hex = "0x00800004", type = DataType.UCHAR8

      You know what the tag means or want to improve the tag description? Create a Ticket.

      Original E3DC Documentation:

      en:

      de:

      REQ_SET_ENCRYPTION_PASSPHRASE

      hex = "0x00000005", type = DataType.STRING

      You know what the tag means or want to improve the tag description? Create a Ticket.

      Original E3DC Documentation:

      en: Set a Network Encryption passphrase

      de: Setze einen Netzwerk Encryption-Passphrase

      SET_ENCRYPTION_PASSPHRASE

      hex = "0x00800005", type = DataType.BOOL

      You know what the tag means or want to improve the tag description? Create a Ticket.

      Original E3DC Documentation:

      en:

      de:

      GENERAL_ERROR

      hex = "0x00FFFFFF", type = DataType.ERROR

      You know what the tag means or want to improve the tag description? Create a Ticket.

      Original E3DC Documentation:

      en:

      de:

    • Method Summary

      Modifier and Type Method Description
      final RSCPTag valueOf(String value) Returns the enum constant of this type with the specified name.
      final Array<RSCPTag> values() Returns an array containing the constants of this enum type, in the order they're declared.
      Namespace getNamespace()
      String getHex()
      DataType getType()
      final EnumEntries<RSCPTag> getEntries() Defines tags related to the RSCP protocol itself.
      • Methods inherited from class kotlin.Enum

        getName, getOrdinal
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

    • Method Detail

      • valueOf

         final RSCPTag valueOf(String value)

        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

        Parameters:
        value - Der Namespace des Tags für die Abbildung des jeweiligen Bereichs
      • values

         final Array<RSCPTag> values()

        Returns an array containing the constants of this enum type, in the order they're declared.

        This method may be used to iterate over the constants.

      • getEntries

         final EnumEntries<RSCPTag> getEntries()

        Defines tags related to the RSCP protocol itself. Mostly acts these are the tags for authentication and encryption

        Since:

        2.0