Examples of SipSessionManagerBase


Examples of com.ericsson.ssa.sip.SipSessionManagerBase

    }

    public void setSipApplication(SipApplication sipApplication) {
        this.sipApplication = sipApplication;
        if (sipApplication != null) {
            SipSessionManagerBase mgr = (SipSessionManagerBase)
                getSipSessionManager();
            if (mgr != null) {
                mgr.setSessionTimeout(sipApplication.getSessionConfigTimeout());
            }
        }
    }
View Full Code Here

Examples of com.ericsson.ssa.sip.SipSessionManagerBase


public class MemoryStrategyBuilder extends BaseSipPersistenceStrategyBuilder {
    public void initializePersistenceStrategy(ConvergedContext ctx,
           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
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.