Package com.ericsson.ssa.sip

Examples of com.ericsson.ssa.sip.SipSessionBase


        // then if we clone the request after the AD was invoked we no longer
        // want this flag to be set, so implicit setting of the directive becomes
        // possible again.
        request.resetExplicit();

        SipSessionBase session = request.getSessionImpl();
       
        if (session != null){
                session.access(); // modify the access times
        }

        SipApplicationRoutingRegion region = null;
        Serializable newStateInfo = null;
        SipApplicationRouterInfo info = null;
View Full Code Here


                " request via internal stateless proxy. The Max-forwards " +
                "header value is decreased by one.");
        }

        request.setMaxForwards(maxForwards);
        SipSessionBase session = request.getSessionImpl();
        if (session != null){
            session.access(); // modify the access times
        }

        Dispatcher dispatcher = request.popDispatcher();
        dispatcher.dispatch(request);
    }
View Full Code Here

                        sb.append("; locks: df=").append(df.isForegroundLocked());
                        for (Iterator<PathNode> pnIt = df.getCaller2CalleePath(); pnIt.hasNext();) {
                            PathNode pn = pnIt.next();
                            sb.append("; ss (").append(pn.getSipSessionId()).append(")=");
                            try {
                                SipSessionBase ss;
                                if ((ss = pn.getSipSession()) != null) {
                                    sb.append(((SipSessionDialogImpl) ss).isForegroundLocked());
                                    SipApplicationSession sas;
                                    if ((sas = ss.getApplicationSession()) != null) {
                                        sb.append("; sas (").append(sas.getId()).append(")=").append(((SipApplicationSessionImpl) sas).isForegroundLocked());
                                    } else {
                                        sb.append("sas=null");
                                    }
                                } else {
View Full Code Here

TOP

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

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.