Package nu.fw.jeti.plugins.jingle.jingle

Examples of nu.fw.jeti.plugins.jingle.jingle.JingleSession.respond()


    backend.addListener(IQResultListener.class,new IQResultListener(){
      public void iqResult(InfoQuery iq) {
        for (JingleSession session : manager.getAllSessions()){
          try {
            session.respond(new Jingle(iq));
          } catch (XMPPException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
          }
        }
View Full Code Here


      }else {
        JingleSession session = manager.getSession(sid);
        //TODO probably wrong check how to fix not sending session initiated second time
             
        try {
          if(session != null)session.respond(this);
        } catch (XMPPException e) {
          // TODO Auto-generated catch block
          e.printStackTrace();
        }
      }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.