Package com.ericsson.ssa.sip

Examples of com.ericsson.ssa.sip.PathNode


        Iterator<PathNode> iter = getCaller2CalleePath();

        if (iter != null) {
            while (iter.hasNext()) {
                PathNode node = iter.next();
                SipSessionManager mgr = node.getSipSessionManager();
                // The following may throw RemoteLockException
                if (mgr != null) {
                    mgr.findSipSession(node.getSipSessionId());
                }
            }
        }
    }
View Full Code Here


                    for (DialogFragment df : dialogs) {
                        sb.append("dlc={").append(df.getDialogLifeCycle().toString());
                        sb.append("; df.isValid=").append(df.isValid());
                        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 {
View Full Code Here

TOP

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

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.