import java.io.ByteArrayInputStream;
import java.io.IOException;
+import java.util.Iterator;
import org.apache.catalina.LifecycleException;
import org.apache.catalina.Session;
return result;
}
+ public int getActiveSessionsFull() {
+ LazyReplicatedMap map = (LazyReplicatedMap)sessions;
+ return map.sizeFull();
+ }
+
+ public String listSessionIdsFull() {
+ StringBuffer sb=new StringBuffer();
+ LazyReplicatedMap map = (LazyReplicatedMap)sessions;
+ Iterator keys = map.keySetFull().iterator();
+ while (keys.hasNext()) {
+ sb.append(keys.next()).append(" ");
+ }
+ return sb.toString();
+ }
}