Package com.ericsson.ssa.sip

Examples of com.ericsson.ssa.sip.SipSessionsUtilImpl


        SipFactoryMap.getInstance().addSipFactoryFacade(getSipResourceJNDIName(SIP_FACTORY_NAME), sipFactory);

        /*
         * SipSessionsUtil
         */
        SipSessionsUtilImpl sipSessionsUtil = new SipSessionsUtilImpl(convergedContext);
        convergedContext.setSipSessionsUtil(sipSessionsUtil);
        servletContext.setAttribute("javax.servlet.sip.SipSessionsUtil", sipSessionsUtil);

        (SipSessionsUtilMap.getInstance()).addSipSessionsUtil(getSipResourceJNDIName(SIP_SESSIONS_UTIL_NAME), (SipSessionsUtil) sipSessionsUtil);

View Full Code Here


            if (logger.isLoggable(Level.FINEST)) {
                logger.log(Level.FINEST, "Ignore removal of sas with id {0} and referece {1}", new Object[] { sas.getId(), sas.getObjectRefString() });
            }
        }

        SipSessionsUtilImpl ssu = convergedContext.getSipSessionsUtil();

        if (ssu != null) {
            ssu.removeSessionsMapping(sas);
        }
    }
View Full Code Here

TOP

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

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.