KeyedAppState
abstract class KeyedAppState
kotlin.Any | |
↳ | androidx.enterprise.feedback.KeyedAppState |
A keyed app state to be sent to an EMM (enterprise mobility management), with the intention that it is displayed to the management organization.
Summary
Nested classes | |
---|---|
abstract |
The builder for |
Constants | |
---|---|
static Int | |
static Int | |
static Int | |
static Int | |
static Int |
Public methods | |
---|---|
open static KeyedAppState.KeyedAppStateBuilder |
builder() Create a |
abstract String? |
getData() Optionally, a machine-readable value to be read by the EMM. |
abstract String |
getKey() The key for the app state. |
static Int |
Get the maximum length of |
static Int |
Get the maximum length of |
static Int |
Get the maximum length of |
abstract String? |
Optionally, a free-form message string to explain the app state. |
abstract Int |
The severity of the app state. |
Constants
MAX_MESSAGE_LENGTH
static valMAX_MESSAGE_LENGTH: Int
Deprecated: Use getMaxMessageLength()
Value: 1000
Public methods
builder
@NonNull open static fun builder(): KeyedAppState.KeyedAppStateBuilder
Create a KeyedAppStateBuilder
.
getData
@Nullable abstract fun getData(): String?
Optionally, a machine-readable value to be read by the EMM. For example, setting values that the admin can choose to query against in the EMM console (e.g. “notify me if the battery_warning data < 10”).
getKey
@NonNull abstract fun getKey(): String
The key for the app state. Acts as a point of reference for what the app is providing state for. For example, when providing managed configuration feedback, this key could be the managed configuration key to allow EMMs to take advantage of the connection in their UI.
getMessage
@Nullable abstract fun getMessage(): String?
Optionally, a free-form message string to explain the app state. If the state was triggered by a particular value (e.g. a managed configuration value), it should be included in the message.
getSeverity
abstract fun getSeverity(): Int
The severity of the app state. This allows EMMs to choose to notify admins of errors. This should only be set to SEVERITY_ERROR
for genuine error conditions that a management organization needs to take action to fix.
When sending an app state containing errors, it is critical that follow-up app states are sent when the errors have been resolved, using the same key and this value set to SEVERITY_INFO
.