InvokerBeanMgr invokerBeanMgr = storageManager.getInvokerBeanMgr();
// removing InvokerBean entries
InvokerBean invokerFindBean = new InvokerBean();
invokerFindBean.setSequenceID(sequenceId);
Collection collection = invokerBeanMgr.find(invokerFindBean);
Iterator iterator = collection.iterator();
while (iterator.hasNext()) {
InvokerBean invokerBean = (InvokerBean) iterator.next();
String messageStoreKey = invokerBean.getMessageContextRefKey();
invokerBeanMgr.delete(messageStoreKey);