mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-22 20:12:07 +01:00
Assert that a Stanza is a Stanza in sendStanza
This commit is contained in:
parent
58402c5615
commit
4a857fe67a
1 changed files with 10 additions and 8 deletions
|
@ -62,6 +62,7 @@ import org.jivesoftware.smack.packet.Bind;
|
|||
import org.jivesoftware.smack.packet.ErrorIQ;
|
||||
import org.jivesoftware.smack.packet.IQ;
|
||||
import org.jivesoftware.smack.packet.Mechanisms;
|
||||
import org.jivesoftware.smack.packet.Message;
|
||||
import org.jivesoftware.smack.packet.Stanza;
|
||||
import org.jivesoftware.smack.packet.ExtensionElement;
|
||||
import org.jivesoftware.smack.packet.Presence;
|
||||
|
@ -622,25 +623,26 @@ public abstract class AbstractXMPPConnection implements XMPPConnection {
|
|||
}
|
||||
|
||||
@Override
|
||||
public void sendStanza(Stanza packet) throws NotConnectedException, InterruptedException {
|
||||
Objects.requireNonNull(packet, "Packet must not be null");
|
||||
public void sendStanza(Stanza stanza) throws NotConnectedException, InterruptedException {
|
||||
Objects.requireNonNull(stanza, "Stanza must not be null");
|
||||
assert(stanza instanceof Message || stanza instanceof Presence || stanza instanceof IQ);
|
||||
|
||||
throwNotConnectedExceptionIfAppropriate();
|
||||
switch (fromMode) {
|
||||
case OMITTED:
|
||||
packet.setFrom((Jid) null);
|
||||
stanza.setFrom((Jid) null);
|
||||
break;
|
||||
case USER:
|
||||
packet.setFrom(getUser());
|
||||
stanza.setFrom(getUser());
|
||||
break;
|
||||
case UNCHANGED:
|
||||
default:
|
||||
break;
|
||||
}
|
||||
// Invoke interceptors for the new packet that is about to be sent. Interceptors may modify
|
||||
// the content of the packet.
|
||||
firePacketInterceptors(packet);
|
||||
sendStanzaInternal(packet);
|
||||
// Invoke interceptors for the new stanza that is about to be sent. Interceptors may modify
|
||||
// the content of the stanza.
|
||||
firePacketInterceptors(stanza);
|
||||
sendStanzaInternal(stanza);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue