mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-22 20:12:07 +01:00
commit
2d102e2dd5
7 changed files with 142 additions and 1 deletions
|
@ -280,6 +280,16 @@ public final class SmackConfiguration {
|
||||||
compressionHandlers.add(xmppInputOutputStream);
|
compressionHandlers.add(xmppInputOutputStream);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get compression handlers.
|
||||||
|
*
|
||||||
|
* @deprecated use {@link #getCompressionHandlers()} instead.
|
||||||
|
*/
|
||||||
|
@Deprecated
|
||||||
|
public static List<XMPPInputOutputStream> getCompresionHandlers() {
|
||||||
|
return getCompressionHandlers();
|
||||||
|
}
|
||||||
|
|
||||||
public static List<XMPPInputOutputStream> getCompressionHandlers() {
|
public static List<XMPPInputOutputStream> getCompressionHandlers() {
|
||||||
List<XMPPInputOutputStream> res = new ArrayList<>(compressionHandlers.size());
|
List<XMPPInputOutputStream> res = new ArrayList<>(compressionHandlers.size());
|
||||||
for (XMPPInputOutputStream ios : compressionHandlers) {
|
for (XMPPInputOutputStream ios : compressionHandlers) {
|
||||||
|
|
|
@ -215,6 +215,14 @@ public abstract class IQ extends Stanza {
|
||||||
*/
|
*/
|
||||||
protected abstract IQChildElementXmlStringBuilder getIQChildElementBuilder(IQChildElementXmlStringBuilder xml);
|
protected abstract IQChildElementXmlStringBuilder getIQChildElementBuilder(IQChildElementXmlStringBuilder xml);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @deprecated use {@link #initializeAsResultFor(IQ)} instead.
|
||||||
|
*/
|
||||||
|
@Deprecated
|
||||||
|
protected final void initialzeAsResultFor(IQ request) {
|
||||||
|
initializeAsResultFor(request);
|
||||||
|
}
|
||||||
|
|
||||||
protected final void initializeAsResultFor(IQ request) {
|
protected final void initializeAsResultFor(IQ request) {
|
||||||
if (!(request.getType() == Type.get || request.getType() == Type.set)) {
|
if (!(request.getType() == Type.get || request.getType() == Type.set)) {
|
||||||
throw new IllegalArgumentException(
|
throw new IllegalArgumentException(
|
||||||
|
|
|
@ -17,6 +17,17 @@
|
||||||
package org.jivesoftware.smack.util;
|
package org.jivesoftware.smack.util;
|
||||||
|
|
||||||
public class ByteUtils {
|
public class ByteUtils {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Concatenate two byte arrays.
|
||||||
|
*
|
||||||
|
* @deprecated use {@link #concat(byte[], byte[])} instead.
|
||||||
|
*/
|
||||||
|
@Deprecated
|
||||||
|
public static byte[] concact(byte[] arrayOne, byte[] arrayTwo) {
|
||||||
|
return concat(arrayOne, arrayTwo);
|
||||||
|
}
|
||||||
|
|
||||||
public static byte[] concat(byte[] arrayOne, byte[] arrayTwo) {
|
public static byte[] concat(byte[] arrayOne, byte[] arrayTwo) {
|
||||||
int combinedLength = arrayOne.length + arrayTwo.length;
|
int combinedLength = arrayOne.length + arrayTwo.length;
|
||||||
byte[] res = new byte[combinedLength];
|
byte[] res = new byte[combinedLength];
|
||||||
|
|
|
@ -22,6 +22,22 @@ import org.jivesoftware.smack.packet.ExtensionElement;
|
||||||
|
|
||||||
public class PacketUtil {
|
public class PacketUtil {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get a extension element from a collection.
|
||||||
|
* @param collection
|
||||||
|
* @param element
|
||||||
|
* @param namespace
|
||||||
|
* @param <PE>
|
||||||
|
* @return the extension element
|
||||||
|
* @deprecated use {@link #extensionElementFrom(Collection, String, String)} instead.
|
||||||
|
*/
|
||||||
|
@Deprecated
|
||||||
|
public static <PE extends ExtensionElement> PE packetExtensionfromCollection(
|
||||||
|
Collection<ExtensionElement> collection, String element,
|
||||||
|
String namespace) {
|
||||||
|
return extensionElementFrom(collection, element, namespace);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get a extension element from a collection.
|
* Get a extension element from a collection.
|
||||||
*
|
*
|
||||||
|
|
|
@ -88,6 +88,16 @@ public class AudioMediaSession extends JingleMediaSession {
|
||||||
audioChannel = new AudioChannel(new MediaLocator(this.getMediaLocator()), localIp, ip, localPort, remotePort, AudioFormatUtils.getAudioFormat(this.getPayloadType()),this);
|
audioChannel = new AudioChannel(new MediaLocator(this.getMediaLocator()), localIp, ip, localPort, remotePort, AudioFormatUtils.getAudioFormat(this.getPayloadType()),this);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Starts transmission and for NAT Traversal reasons start receiving also.
|
||||||
|
*
|
||||||
|
* @deprecated use {@link #startTransmit()} instead.
|
||||||
|
*/
|
||||||
|
@Deprecated
|
||||||
|
public void startTrasmit() {
|
||||||
|
startTransmit();
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Starts transmission and for NAT Traversal reasons start receiving also.
|
* Starts transmission and for NAT Traversal reasons start receiving also.
|
||||||
*/
|
*/
|
||||||
|
@ -97,7 +107,19 @@ public class AudioMediaSession extends JingleMediaSession {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set transmit activity. If the active is true, the instance should trasmit.
|
* Set transmit activity. If the active is true, the instance should transmit.
|
||||||
|
* If it is set to false, the instance should pause transmit.
|
||||||
|
*
|
||||||
|
* @param active active state
|
||||||
|
* @deprecated use {@link #setTransmit(boolean)} instead.
|
||||||
|
*/
|
||||||
|
@Deprecated
|
||||||
|
public void setTrasmit(boolean active) {
|
||||||
|
setTransmit(active);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Set transmit activity. If the active is true, the instance should transmit.
|
||||||
* If it is set to false, the instance should pause transmit.
|
* If it is set to false, the instance should pause transmit.
|
||||||
*
|
*
|
||||||
* @param active active state
|
* @param active active state
|
||||||
|
@ -115,6 +137,16 @@ public class AudioMediaSession extends JingleMediaSession {
|
||||||
// Do nothing
|
// Do nothing
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Stops transmission and for NAT Traversal reasons stop receiving also.
|
||||||
|
*
|
||||||
|
* @deprecated use {@link #stopTransmit()} instead.
|
||||||
|
*/
|
||||||
|
@Deprecated
|
||||||
|
public void stopTrasmit() {
|
||||||
|
stopTransmit();
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Stops transmission and for NAT Traversal reasons stop receiving also.
|
* Stops transmission and for NAT Traversal reasons stop receiving also.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -153,6 +153,16 @@ public class AudioMediaSession extends JingleMediaSession implements MediaSessio
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Starts transmission and for NAT Traversal reasons start receiving also.
|
||||||
|
*
|
||||||
|
* @deprecated use {@link #startTransmit()} instead.
|
||||||
|
*/
|
||||||
|
@Deprecated
|
||||||
|
public void startTrasmit() {
|
||||||
|
startTransmit();
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Starts transmission and for NAT Traversal reasons start receiving also.
|
* Starts transmission and for NAT Traversal reasons start receiving also.
|
||||||
*/
|
*/
|
||||||
|
@ -168,6 +178,18 @@ public class AudioMediaSession extends JingleMediaSession implements MediaSessio
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Set transmit activity. If the active is true, the instance should transmit.
|
||||||
|
* If it is set to false, the instance should pause transmit.
|
||||||
|
*
|
||||||
|
* @param active active state
|
||||||
|
* @deprecated use {@link #setTransmit(boolean)} instead.
|
||||||
|
*/
|
||||||
|
@Deprecated
|
||||||
|
public void setTrasmit(boolean active) {
|
||||||
|
setTransmit(active);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set transmit activity. If the active is true, the instance should transmit.
|
* Set transmit activity. If the active is true, the instance should transmit.
|
||||||
* If it is set to false, the instance should pause transmit.
|
* If it is set to false, the instance should pause transmit.
|
||||||
|
@ -187,6 +209,16 @@ public class AudioMediaSession extends JingleMediaSession implements MediaSessio
|
||||||
// Do nothing
|
// Do nothing
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Stops transmission and for NAT Traversal reasons stop receiving also.
|
||||||
|
*
|
||||||
|
* @deprecated use {@link #stopTransmit()} instead.
|
||||||
|
*/
|
||||||
|
@Deprecated
|
||||||
|
public void stopTrasmit() {
|
||||||
|
stopTransmit();
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Stops transmission and for NAT Traversal reasons stop receiving also.
|
* Stops transmission and for NAT Traversal reasons stop receiving also.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -119,6 +119,16 @@ public class ScreenShareSession extends JingleMediaSession {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Starts transmission and for NAT Traversal reasons start receiving also.
|
||||||
|
*
|
||||||
|
* @deprecated use {@link #startTransmit()} instead.
|
||||||
|
*/
|
||||||
|
@Deprecated
|
||||||
|
public void startTrasmit() {
|
||||||
|
startTransmit();
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Starts transmission and for NAT Traversal reasons start receiving also.
|
* Starts transmission and for NAT Traversal reasons start receiving also.
|
||||||
*/
|
*/
|
||||||
|
@ -127,6 +137,18 @@ public class ScreenShareSession extends JingleMediaSession {
|
||||||
new Thread(transmitter).start();
|
new Thread(transmitter).start();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Set transmit activity. If the active is true, the instance should transmit.
|
||||||
|
* If it is set to false, the instance should pause transmit.
|
||||||
|
*
|
||||||
|
* @param active active state
|
||||||
|
* @deprecated use {@link #setTransmit(boolean)} instead.
|
||||||
|
*/
|
||||||
|
@Deprecated
|
||||||
|
public void setTrasmit(boolean active) {
|
||||||
|
setTransmit(active);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set transmit activity. If the active is true, the instance should transmit.
|
* Set transmit activity. If the active is true, the instance should transmit.
|
||||||
* If it is set to false, the instance should pause transmit.
|
* If it is set to false, the instance should pause transmit.
|
||||||
|
@ -146,6 +168,16 @@ public class ScreenShareSession extends JingleMediaSession {
|
||||||
// Do nothing
|
// Do nothing
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Stops transmission and for NAT Traversal reasons stop receiving also.
|
||||||
|
*
|
||||||
|
* @deprecated use {@link #stopTransmit()} instead.
|
||||||
|
*/
|
||||||
|
@Deprecated
|
||||||
|
public void stopTrasmit() {
|
||||||
|
stopTransmit();
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Stops transmission and for NAT Traversal reasons stop receiving also.
|
* Stops transmission and for NAT Traversal reasons stop receiving also.
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in a new issue