public interface AdminI extends Serializable
| Modifier and Type | Method and Description |
|---|---|
Collection<String> |
getChildCollections(String parentPath,
int start,
int count)
Obtain the next batch of children paths for the supplied path.
|
Collection<String> |
getChildEntities(String parentPath,
int start,
int count)
Obtain the next batch of children names for the supplied path.
|
Collection<BwEvent> |
getEventsByAlarm(BwAlarm alarm)
Given an alarm return the associated event(s)
|
Collection<BwAlarm> |
getUnexpiredAlarms(long triggerTime)
Return all unexpired alarms before a given time.
|
Collection<String> getChildCollections(String parentPath, int start, int count) throws CalFacadeException
parentPath - start - start index in the batch - 0 for the firstcount - count of results we wantCalFacadeExceptionCollection<String> getChildEntities(String parentPath, int start, int count) throws CalFacadeException
parentPath - start - start index in the batch - 0 for the firstcount - count of results we wantCalFacadeExceptionCollection<BwAlarm> getUnexpiredAlarms(long triggerTime) throws CalFacadeException
Any cancelled alarms will be excluded from the result.
Typically the system will call this with a time set into the near future and then queue up alarms that are near to triggering.
triggerTime - CalFacadeExceptionCollection<BwEvent> getEventsByAlarm(BwAlarm alarm) throws CalFacadeException
alarm - CalFacadeExceptionCopyright © 2019 Bedework. All rights reserved.