if (getManager() instanceof StandardManager) {
((StandardManager) getManager()).processExpires();
} else if (getManager() instanceof PersistentManagerBase) {
PersistentManagerBase pManager =
(PersistentManagerBase) getManager();
pManager.processExpires();
pManager.processPersistenceChecks();
if ((pManager.getStore() != null)
&& (pManager.getStore() instanceof StoreBase)) {
((StoreBase) pManager.getStore()).processExpires();
}