private CoordinatorActionBean checkCoordAction(String actionId) throws StoreException {
CoordinatorStore store = new CoordinatorStore(false);
try {
CoordinatorActionBean action = store.getCoordinatorAction(actionId, false);
SLAStore slaStore = new SLAStore(store);
long lastSeqId[] = new long[1];
List<SLAEventBean> slaEvents = slaStore.getSLAEventListNewerSeqLimited(0, 10, lastSeqId);
// System.out.println("AAA " + slaEvents.size() + " : " +
// lastSeqId[0]);
if (slaEvents.size() == 0) {
fail("Unable to GET any record of sequence id greater than 0");
}