Package org.eclipse.ecf.provider.xmpp

Examples of org.eclipse.ecf.provider.xmpp.XMPPContainer


          }
        }
      }
      if (name == null) {
        if (ka == null) {
          return new XMPPContainer();
        } else {
          return new XMPPContainer(ka.intValue());
        }
      } else {
        if (ka == null) {
          ka = new Integer(XMPPContainer.DEFAULT_KEEPALIVE);
        }
        return new XMPPContainer(name, ka.intValue());
      }
    } catch (Exception e) {
      throw new ContainerCreateException(
          "Exception creating generic container", e);
    }
View Full Code Here

TOP

Related Classes of org.eclipse.ecf.provider.xmpp.XMPPContainer

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.