Package com.ericsson.ssa.sip

Examples of com.ericsson.ssa.sip.DialogFragmentManager


           SessionManager sipSmBean, SipContainerAvailability sca) {
        SipSessionManagerBase mgr = new SipSessionManagerBase();
        initializePersistenceStrategy(mgr, ctx, sipSmBean, sca);
        ctx.setSipSessionManager(mgr);
        // ensure the Replication DialogFragmentManager service is initialized and started.
        DialogFragmentManager dfm = DialogFragmentManager.getInstance();       
    }
View Full Code Here


        if (EEPersistenceTypeResolver.REPLICATED_TYPE.equalsIgnoreCase(passedInPersistenceType)) {
            JxtaReplicationReceiver receiver = JxtaReplicationReceiver.createInstance();
            receiver.doPipeInitialization();
 
            // ensure the Replication DialogFragmentManager service is initialized and started.
            DialogFragmentManager dfm = DialogFragmentManager.getInstance();
            try {
                if (dfm instanceof ReplicationDialogFragmentManager) {
                    ReplicationDialogFragmentManager rdfm = (ReplicationDialogFragmentManager) dfm;
                    ReplicaCache replicaCache = new ReplicaCache(mgr);
                    rdfm.setReplicaCache(replicaCache);                   
View Full Code Here

TOP

Related Classes of com.ericsson.ssa.sip.DialogFragmentManager

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.