1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2025-09-09 09:09:38 +02:00

Introduce SmackConfiguration.SMACK_URL(_STRING)

This commit is contained in:
Florian Schmaus 2019-07-04 15:51:28 +02:00
parent f3b856c80b
commit df5899e72b
4 changed files with 21 additions and 3 deletions

View file

@ -17,6 +17,8 @@
package org.jivesoftware.smack;
import java.net.MalformedURLException;
import java.net.URL;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
@ -50,6 +52,18 @@ import org.jivesoftware.smack.util.Objects;
*/
public final class SmackConfiguration {
public static final String SMACK_URL_STRING = "https://igniterealtime.org/projects/smack";
public static final URL SMACK_URL;
static {
try {
SMACK_URL = new URL(SMACK_URL_STRING);
} catch (MalformedURLException e) {
throw new IllegalStateException(e);
}
}
private static int defaultPacketReplyTimeout = 5000;
private static int packetCollectorSize = 5000;

View file

@ -16,10 +16,12 @@
*/
package org.jivesoftware.smack.packet;
import org.jivesoftware.smack.SmackConfiguration;
public class TestIQ extends SimpleIQ {
public TestIQ() {
this("https://igniterealtime.org/projects/smack", "test-iq");
this(SmackConfiguration.SMACK_URL_STRING, "test-iq");
}
public TestIQ(String element, String namespace) {