public Iterator getSubscriptions() {
List list = null;
try {
list = this.store.read(new IndexQuery() {
public String getIndexName() { return MasterIndex.NAME; }
public boolean match(Object value) { return true; }
});
} catch(Exception ex) {
log.error("failed reading subscriptions from store", ex);