Interface AlarmProvider
- 
 public interface AlarmProviderThe AlarmProvider is an entity that operates on alarms, and essentially provides access to alarm state model functionality, but in a way that can be remote or implemented differently than the core implementation. Currently we have two potentially sub-interfaces that an implementation may support: AlarmQueryProvider and AlarmNotificationProvider.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetName()AlarmNotificationProvidergetNotificationProvider()AlarmQueryProvidergetQueryProvider()booleansupportsNotification()booleansupportsQuerying()
 
- 
- 
- 
Method Detail- 
getNamejava.lang.String getName() 
 - 
supportsQueryingboolean supportsQuerying() 
 - 
getQueryProviderAlarmQueryProvider getQueryProvider() 
 - 
supportsNotificationboolean supportsNotification() 
 - 
getNotificationProviderAlarmNotificationProvider getNotificationProvider() 
 
- 
 
-