Exemplo n.º 1
0
  public static XMPPConnection xmppConnection() throws CredentialException, IOException {
    final GoogleOAuth2Credentials creds = TestUtils.getGoogleOauthCreds();
    final int attempts = 2;

    final XMPPConnection conn =
        XmppUtils.persistentXmppConnection(
            creds, attempts, "talk.google.com", 5222, "gmail.com", null);
    return conn;
  }