Package com.ericsson.ssa.sip

Examples of com.ericsson.ssa.sip.SessionTarget


        try {           
            SipApplicationSessionImpl sas = null;
            String appName = null;
            SipTargetedRequestInfo stri = null;
           
            SessionTarget st = request.getSessionTarget();
           
            if (st != null) {
                return st.getTargetedRequestInfo();
            }
           
           
            // XXX it is a pity that we do the SAS loading twice.
            // once here to check for a targeted request and once in the Factory
View Full Code Here


     * @return
     */
    static SipApplicationSessionImpl
    getApplicationSession(SipServletRequestImpl request,
    SipApplicationRouterInfo info) {
        SessionTarget st = request.getSessionTarget();
        if (st != null && (request.getSessionImpl() == null)) {
            SipApplicationSessionImpl sas = st.getApplicationSessionImpl();
            if (sas != null && sas.isValid()) {
                String app = info.getNextApplicationName();
                if (app != null && app.equals(sas.getApplicationName())) {
                    return sas;
                }
View Full Code Here

     * @param request
     * @param s
     */
    static void linkCorrespondingSession
    (SipServletRequestImpl request, SipSessionBase s) {
        SessionTarget st = request.getSessionTarget();
        if (st != null) {
            ((SipSessionImplBase)s).setLinkedCorrespondingSipSessionId
            (st.getSessionImpl().getId(), st.getHeader());
        }
    }
View Full Code Here

TOP

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

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.