Package org.zoolu.sip.address

Examples of org.zoolu.sip.address.NameAddress


   }
  
  
   /** Requests a call transfer */
   public void transfer(String transfer_to)
   {  ((ExtendedInviteDialog)dialog).refer(new NameAddress(transfer_to));
   }
View Full Code Here


         //t.listen();

         if (msg.isRefer())
         {  //Message resp=MessageFactory.createResponse(msg,202,"Accepted",null,null);
            //respond(resp);
            NameAddress refer_to=msg.getReferToHeader().getNameAddress();
            NameAddress referred_by=null;
            if (msg.hasReferredByHeader()) referred_by=msg.getReferredByHeader().getNameAddress();
            dialog_listener.onDlgRefer(this,refer_to,referred_by,msg);
         }
         else
         if (msg.isNotify())
View Full Code Here

TOP

Related Classes of org.zoolu.sip.address.NameAddress

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.