Class AlertItem
java.lang.Object
org.osgi.service.dmt.notification.AlertItem
Immutable data structure carried in an alert (client initiated notification).
The
AlertItem
describes details of various notifications that can be
sent by the client, for example as alerts in the OMA DM protocol. The use
cases include the client sending a session request to the server (alert
1201), the client notifying the server of completion of a software update
operation (alert 1226) or sending back results in response to an asynchronous
EXEC command.
The data syntax and semantics varies widely between various alerts, so does
the optionality of particular parameters of an alert item. If an item, such
as source or type, is not defined, the corresponding getter method returns
null
. For example, for alert 1201 (client-initiated session) all
elements will be null
.
The syntax used in AlertItem
class corresponds to the OMA DM alert
format. NotificationService
implementations on other management
protocols should map these constructs to the underlying protocol.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiongetData()
Get the data associated with the alert item.getMark()
Get the mark parameter associated with the alert item.Get the node which is the source of the alert.getType()
Get the type associated with the alert item.toString()
Returns the string representation of this alert item.
-
Constructor Details
-
AlertItem
Create an instance of the alert item. The constructor takes all possible data entries as parameters. Any of these parameters can benull
. The semantics of the parameters may be refined by the definition of a specific alert, identified by its alert code (seeNotificationService.sendNotification(String, int, String, AlertItem[])
). In case of Generic Alerts for example (code 1226), themark
parameter contains a severity string.- Parameters:
source
- the URI of the node which is the source of the alert itemtype
- a MIME type or a URN that identifies the type of the data in the alert itemdata
- aDmtData
object that contains the format and value of the data in the alert itemmark
- the mark parameter of the alert item
-
AlertItem
Create an instance of the alert item, specifying the source node URI as an array of path segments. The constructor takes all possible data entries as parameters. Any of these parameters can benull
. The semantics of the parameters may be refined by the definition of a specific alert, identified by its alert code (seeNotificationService.sendNotification(String, int, String, AlertItem[])
). In case of Generic Alerts for example (code 1226), themark
parameter contains a severity string.- Parameters:
source
- the path of the node which is the source of the alert itemtype
- a MIME type or a URN that identifies the type of the data in the alert itemdata
- aDmtData
object that contains the format and value of the data in the alert itemmark
- the mark parameter of the alert item
-
-
Method Details
-
getSource
Get the node which is the source of the alert. There might be no source associated with the alert item.- Returns:
- the URI of the node which is the source of this alert, or
null
if there is no source
-
getType
Get the type associated with the alert item. The type string is a MIME type or a URN that identifies the type of the data in the alert item (returned bygetData()
). There might be no type associated with the alert item.- Returns:
- the type associated with the alert item, or
null
if there is no type
-
getMark
Get the mark parameter associated with the alert item. The interpretation of the mark parameter depends on the alert being sent, as identified by the alert code inNotificationService.sendNotification(String, int, String, AlertItem[])
. There might be no mark associated with the alert item.- Returns:
- the mark associated with the alert item, or
null
if there is no mark
-
getData
Get the data associated with the alert item. The returnedDmtData
object contains the format and the value of the data in the alert item. There might be no data associated with the alert item.- Returns:
- the data associated with the alert item, or
null
if there is no data
-
toString
Returns the string representation of this alert item. The returned string includes all parameters of the alert item, and has the following format:AlertItem(<source>, <type>, <mark>, <data>)
The last parameter is the string representation of the data value. The format of the data is not explicitly included.
-