Package | Description |
---|---|
com.hp.sdn |
Definitions of domain model and related general constructs which are
applicable to multiple tiers and software layers of the SDN Controller.
|
com.hp.sdn.adm.alert |
Definitions of the services pertaining to the Alert system.
|
com.hp.sdn.adm.dao.model |
Model POJOs implementations used to persist and retrieve information
applicable at the Administrator tier of the SDN Controller.
|
com.hp.sdn.alert |
Definitions of the domain model pertaining to the Alerts.
|
Modifier and Type | Method and Description |
---|---|
static Severity |
Severity.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Severity[] |
Severity.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
Alert |
AlertService.post(Severity severity,
AlertTopic topic,
String origin,
String data)
Creates a new
Alert based on the supplied parameters. |
Modifier and Type | Method and Description |
---|---|
Severity |
AlertEntity.getSeverity()
Returns the severity associated with this alert.
|
Severity |
AlertEntity.AlertSeverity.toSeverity()
returns the Severity enumeration matching this Severity enum.
|
Modifier and Type | Method and Description |
---|---|
static AlertEntity.AlertSeverity |
AlertEntity.AlertSeverity.fromSeverity(Severity alertSeverity)
Locates the Severity enumeration constant matching a given Severity
enumeration.
|
Constructor and Description |
---|
AlertEntity(UUID uid,
UUID sysId,
Boolean state,
String topic,
String origin,
Date timestamp,
Severity severity,
String description)
Creates an alert entity.
|
Modifier and Type | Method and Description |
---|---|
Severity |
AlertSummary.getHighestSeverity()
Returns the highest alert severity represented in the alert summary.
|
Severity |
Alert.getSeverity()
Returns the
Severity associated with this
alert. |
Modifier and Type | Method and Description |
---|---|
SetCondition<Severity> |
AlertFilter.getSeverityCondition()
Returns the
SetCondition filter that has been defined for
filtering the Severity . |
Modifier and Type | Method and Description |
---|---|
void |
AlertFilter.setSeverityCondition(SetCondition<Severity> severityCondition)
Sets the
SetCondition to be used for filtering based on the
Severity . |
Constructor and Description |
---|
Alert(Id<Alert,UUID> id,
Id<SystemInformation,UUID> sysId,
boolean state,
String topicId,
String origin,
Date timestamp,
Severity severity,
String description)
Constructs an instance of an Alert with a unique identification.
|
Alert(Id<SystemInformation,UUID> sysId,
boolean state,
String topicId,
String origin,
Date timestamp,
Severity severity,
String description)
Constructs an instance of an Alert.
|
AlertSummary(long count,
List<Alert> alerts,
Severity highestSeverity)
Construct an alert summary data with the supplied parameters.
|
Copyright © 2015. All Rights Reserved.