Package com.sun.enterprise.ee.web.sessmgmt

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


            //FIXME - register with health checker
            //register with jxta receiver
            String contIdString = this.getContainerIDAsString(containerId);
            //System.out.println("ReplicatedEjbStrategyBuilder:registering container = " + contIdString);
            //System.out.println("ReplicatedEjbStrategyBuilder:registering containerId length = " + contIdString.length());
            ReplicationMessageRouter router = null;
            if (Globals.IS_SECURITY_ENABLED) {
                router = (ReplicationMessageRouter)
                    AccessController.doPrivileged(
                        new PrivilegedGetReplicationMessageRouter());
            } else {
                router = ReplicationMessageRouter.createInstance();
            }       
            if(router != null) {
                router.addReplicationManager(contIdString, storeManager);
                //ReplicationMessageRouter.getReplicationAppIds(true);
            }
            //this is for testing
            //will eventually be triggered by separate admin command
            /*
 
View Full Code Here

TOP

Related Classes of com.sun.enterprise.ee.web.sessmgmt.ReplicationMessageRouter

Copyright © 2018 www.massapicom. 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.