mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-11-22 14:22:05 +01:00
Introduce SmackConfiguration.SMACK_URL(_STRING)
This commit is contained in:
parent
f3b856c80b
commit
df5899e72b
4 changed files with 21 additions and 3 deletions
|
@ -17,6 +17,8 @@
|
||||||
|
|
||||||
package org.jivesoftware.smack;
|
package org.jivesoftware.smack;
|
||||||
|
|
||||||
|
import java.net.MalformedURLException;
|
||||||
|
import java.net.URL;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.Collection;
|
import java.util.Collection;
|
||||||
import java.util.Collections;
|
import java.util.Collections;
|
||||||
|
@ -50,6 +52,18 @@ import org.jivesoftware.smack.util.Objects;
|
||||||
*/
|
*/
|
||||||
public final class SmackConfiguration {
|
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 defaultPacketReplyTimeout = 5000;
|
||||||
private static int packetCollectorSize = 5000;
|
private static int packetCollectorSize = 5000;
|
||||||
|
|
||||||
|
|
|
@ -16,10 +16,12 @@
|
||||||
*/
|
*/
|
||||||
package org.jivesoftware.smack.packet;
|
package org.jivesoftware.smack.packet;
|
||||||
|
|
||||||
|
import org.jivesoftware.smack.SmackConfiguration;
|
||||||
|
|
||||||
public class TestIQ extends SimpleIQ {
|
public class TestIQ extends SimpleIQ {
|
||||||
|
|
||||||
public TestIQ() {
|
public TestIQ() {
|
||||||
this("https://igniterealtime.org/projects/smack", "test-iq");
|
this(SmackConfiguration.SMACK_URL_STRING, "test-iq");
|
||||||
}
|
}
|
||||||
|
|
||||||
public TestIQ(String element, String namespace) {
|
public TestIQ(String element, String namespace) {
|
||||||
|
|
|
@ -36,6 +36,7 @@ import java.util.logging.Logger;
|
||||||
import org.jivesoftware.smack.AbstractConnectionListener;
|
import org.jivesoftware.smack.AbstractConnectionListener;
|
||||||
import org.jivesoftware.smack.ConnectionCreationListener;
|
import org.jivesoftware.smack.ConnectionCreationListener;
|
||||||
import org.jivesoftware.smack.Manager;
|
import org.jivesoftware.smack.Manager;
|
||||||
|
import org.jivesoftware.smack.SmackConfiguration;
|
||||||
import org.jivesoftware.smack.SmackException.NoResponseException;
|
import org.jivesoftware.smack.SmackException.NoResponseException;
|
||||||
import org.jivesoftware.smack.SmackException.NotConnectedException;
|
import org.jivesoftware.smack.SmackException.NotConnectedException;
|
||||||
import org.jivesoftware.smack.StanzaListener;
|
import org.jivesoftware.smack.StanzaListener;
|
||||||
|
@ -92,7 +93,7 @@ public final class EntityCapsManager extends Manager {
|
||||||
*/
|
*/
|
||||||
private static final String DEFAULT_HASH = StringUtils.SHA1;
|
private static final String DEFAULT_HASH = StringUtils.SHA1;
|
||||||
|
|
||||||
private static String DEFAULT_ENTITY_NODE = "http://www.igniterealtime.org/projects/smack";
|
private static String DEFAULT_ENTITY_NODE = SmackConfiguration.SMACK_URL_STRING;
|
||||||
|
|
||||||
protected static EntityCapsPersistentCache persistentCache;
|
protected static EntityCapsPersistentCache persistentCache;
|
||||||
|
|
||||||
|
|
|
@ -25,6 +25,7 @@ import java.util.WeakHashMap;
|
||||||
import javax.xml.namespace.QName;
|
import javax.xml.namespace.QName;
|
||||||
|
|
||||||
import org.jivesoftware.smack.Manager;
|
import org.jivesoftware.smack.Manager;
|
||||||
|
import org.jivesoftware.smack.SmackConfiguration;
|
||||||
import org.jivesoftware.smack.SmackException.NoResponseException;
|
import org.jivesoftware.smack.SmackException.NoResponseException;
|
||||||
import org.jivesoftware.smack.SmackException.NotConnectedException;
|
import org.jivesoftware.smack.SmackException.NotConnectedException;
|
||||||
import org.jivesoftware.smack.XMPPConnection;
|
import org.jivesoftware.smack.XMPPConnection;
|
||||||
|
@ -193,7 +194,7 @@ public final class PrivateDataManager extends Manager {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getNamespace() {
|
public String getNamespace() {
|
||||||
return "https://igniterealtime.org/projects/smack/";
|
return SmackConfiguration.SMACK_URL_STRING;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Reference in a new issue