//code assumes that isExpired works for this type of ReplicationState
if(_logger.isLoggable(Level.FINE)) {
_logger.fine("in " + this.getClass().getName() + ">>processExpiredSipSessionReplicas");
}
int expiredReplicas = 0;
BaseCache replicatedSipSessionsCache = getReplicatedSipSessions();
for(Iterator it = replicatedSipSessionsCache.keys(); it.hasNext();) {
ReplicationState nextState = (ReplicationState)
replicatedSipSessionsCache.get((String) it.next());
if (nextState != null) {
if(_logger.isLoggable(Level.FINE)) {
_logger.fine("in " + this.getClass().getName() +
">>processExpiredSipSessionReplicas: nextState=" +
nextState);