Package com.ericsson.ssa.sip

Examples of com.ericsson.ssa.sip.ConvergedHttpSessionFacade


     * Returns a facade for the given session.
     *
     * @return A facade for the given session
     */
    public StandardSessionFacade createSessionFacade(StandardSession session) {
        return new ConvergedHttpSessionFacade(session, this);
    }
View Full Code Here


        if (sess == null) {
            return;
        }

        // Lock SAS if one is being referenced
        ConvergedHttpSessionFacade chs = (ConvergedHttpSessionFacade)
            createSessionFacade((StandardSession) sess);
        if (chs != null) {
            SipApplicationSessionImpl sas = (SipApplicationSessionImpl)
                chs.getApplicationSession(false);
            if (sas != null) {
                ReplicationUnitOfWork uow =
                    ReplicationUnitOfWork.getThreadLocalUnitOfWork();
                if (uow != null) {
                    uow.lockApplicationSession(sas);
View Full Code Here

TOP

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

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.