Package com.ericsson.ssa.sip.dialog

Examples of com.ericsson.ssa.sip.dialog.DialogLifeCycle


        }

        DialogFragment dialog = req.getDialog();

        if ((dialog != null) && dialog.isValid()) {
            DialogLifeCycle dialogLifeCycle = dialog.getDialogLifeCycle();
            dialogLifeCycle.associateTransaction(req.getTransactionId());
            dialogLifeCycle.initUnitOfWork();
            dialogLifeCycle.setThreadLocalUnitOfWork();
        }

        return s;
    }
View Full Code Here


        }
        s.setSubscriberURI(subscriberURI);

        req.setSession(s);

        final DialogLifeCycle dialogLifeCycle = d.getDialogLifeCycle();
        dialogLifeCycle.associateTransaction(req.getTransactionId());
        dialogLifeCycle.initUnitOfWork(appSess);
        dialogLifeCycle.setThreadLocalUnitOfWork();
        if (appSess != null) {
            appSess.setShouldBePersisted();
        }
    }
View Full Code Here

   
    /* If DialogLifeCycle is initialized in the constructor, other threads
     * are seeing partially constructed dialog fragment
     */
    protected void initDialogLifeCycle() {
        dialogLifeCycle = new DialogLifeCycle(this);
    }
View Full Code Here

    private void readExternalFormVersion1(ObjectInput in)
        throws IOException, ClassNotFoundException {
        // NEVER change the body of this method. This method takes
        // care of reading the serialization stream of a released product.
        dialogLifeCycle = new DialogLifeCycle(this);
        m_Nodes = new LinkedList<PathNode>();

        int i = in.readInt();

        for (int c = 0; c < i; c++) {
View Full Code Here

TOP

Related Classes of com.ericsson.ssa.sip.dialog.DialogLifeCycle

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.