Examples of HAStoreBase


Examples of com.sun.enterprise.ee.web.sessmgmt.HAStoreBase

    private long getNumberStoredSessions() {
        ReplicationManagerBase sessMgr = this.getSessionManager();
        if (sessMgr == null) {
            return -1;
        } else {
            HAStoreBase store = (HAStoreBase) sessMgr.getStore();
            int numStoredSessions = -1;
            try {
                numStoredSessions = store.getSize();
            } catch (Exception ex) {
                //deliberate no-op
                numStoredSessions = -1;
            };           
            return numStoredSessions;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.