Package org.cipango.server.session

Examples of org.cipango.server.session.CallSession


  public SessionScope openScope(SipApplicationSession session)
  {
    AppSessionIf appSession = (AppSessionIf) session;
    if (appSession != null && appSession.getAppSession().getCallSession() != null)
    {
      CallSession callSession = appSession.getAppSession().getCallSession();
      return _node.getServer().getSessionManager().openScope(callSession);
    }
    return null;
  }
View Full Code Here


   
    if (!_parallel && _actives > 0)
      return;
   
    // Patch TMP fix for CIPANGO 8
    CallSession callSession = _tx.getRequest().getCallSession();
    SessionManager cm = callSession.getServer().getSessionManager();
     
      SessionScope work = cm.openScope(callSession);
      try
      {
      // End patch
View Full Code Here

      if (i < 0)
        return null;
     
      String id = applicationSessionId.substring(0, i);
     
      CallSession callSession = getServer().getSessionManager().get(id);
      if (callSession == null)
        return null;
     
      AppSession appSession = callSession.getAppSession(applicationSessionId.substring(i+1));
      if (appSession == null)
        return null;
      else
        return new ScopedAppSession(appSession);
    }
View Full Code Here

TOP

Related Classes of org.cipango.server.session.CallSession

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.