Enum RSCPTag
-
-
Enum Constant Summary
Enum Constants Enum Constant Description REQ_AUTHENTICATIONhex = "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_USERhex = "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_PASSWORDhex = "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
AUTHENTICATIONhex = "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_LEVELhex = "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_LEVELhex = "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_PASSPHRASEhex = "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_PASSPHRASEhex = "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_ERRORhex = "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 RSCPTagvalueOf(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. NamespacegetNamespace()StringgetHex()DataTypegetType()final EnumEntries<RSCPTag>getEntries()Defines tags related to the RSCP protocol itself. -
-
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.
-
getNamespace
Namespace getNamespace()
-
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
-
-
-
-