Package org.cipango.client.osgi.impl

Examples of org.cipango.client.osgi.impl.SipServiceImpl


 
  public void start(BundleContext context) throws Exception
  {
    _sipClient = new SipClient(5061);
    _sipClient.start();
    SipServiceImpl serviceImpl = new SipServiceImpl();
    serviceImpl.setUserAgent(_sipClient.createUserAgent("alice", InetAddress.getLocalHost().getHostName()));
    context.registerService(SipService.class.getName(), serviceImpl, null);
  }
View Full Code Here

TOP

Related Classes of org.cipango.client.osgi.impl.SipServiceImpl

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.