Package org.cipango.util

Examples of org.cipango.util.ReadOnlySipURI


      {
        for (SipConnector connector : connectors)
        {
          SipURI uri = new SipURIImpl(null, connector.getAddr().getHostAddress(), connector.getLocalPort());
          if (!outbounds.contains(uri))
            outbounds.add(new ReadOnlySipURI(uri));
          if (!externals.contains(connector.getSipUri()))
            externals.add(new ReadOnlySipURI(connector.getSipUri()));
        }
      }
      setAttribute(SipServlet.OUTBOUND_INTERFACES, Collections.unmodifiableList(outbounds));
      setAttribute(EXTERNAL_INTERFACES, Collections.unmodifiableList(externals));
     
View Full Code Here

TOP

Related Classes of org.cipango.util.ReadOnlySipURI

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.