Package org.cipango.client

Examples of org.cipango.client.UA


  @Override
  protected void setUp() throws Exception
  {
    _uaManager = new UaManager(5061);
    _alice = new UA(_uaManager, "sip:alice@cipango.org");
    _alice.setProxy("sip:" + InetAddress.getLocalHost().getHostAddress() + ";lr");
    _uaManager.start();
    super.setUp();
  }
View Full Code Here


 
  public UA getBob() throws Exception
  {
    if (_bob == null)
    {
      _bob = new UA(_uaManager, "sip:bob@cipango.org");
      _bob.setProxy(_alice.getProxy());
    }
    return _bob;
  }
View Full Code Here

TOP

Related Classes of org.cipango.client.UA

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.