conversations-classic/src/main/java/eu/siacs/conversations/xmpp/stanzas/AbstractStanza.java

55 lines
1.2 KiB
Java
Raw Normal View History

2014-10-22 16:38:44 +00:00
package eu.siacs.conversations.xmpp.stanzas;
import eu.siacs.conversations.entities.Account;
2014-10-22 16:38:44 +00:00
import eu.siacs.conversations.xml.Element;
import eu.siacs.conversations.xmpp.jid.Jid;
2014-10-22 16:38:44 +00:00
public class AbstractStanza extends Element {
protected AbstractStanza(final String name) {
2014-10-22 16:38:44 +00:00
super(name);
}
2014-11-06 19:10:03 +00:00
public Jid getTo() {
return getAttributeAsJid("to");
}
2014-11-06 19:10:03 +00:00
public Jid getFrom() {
return getAttributeAsJid("from");
}
2014-10-22 16:38:44 +00:00
public String getId() {
return this.getAttribute("id");
}
public void setTo(final Jid to) {
2014-11-17 19:45:00 +00:00
if (to != null) {
setAttribute("to", to.toString());
}
2014-10-22 16:38:44 +00:00
}
public void setFrom(final Jid from) {
2014-11-17 19:45:00 +00:00
if (from != null) {
setAttribute("from", from.toString());
}
2014-10-22 16:38:44 +00:00
}
public void setId(final String id) {
2014-10-22 16:38:44 +00:00
setAttribute("id", id);
}
public boolean fromServer(final Account account) {
return getFrom() == null
|| getFrom().equals(account.getServer())
|| getFrom().equals(account.getJid().toBareJid())
|| getFrom().equals(account.getJid());
}
public boolean toServer(final Account account) {
return getTo() == null
|| getTo().equals(account.getServer())
|| getTo().equals(account.getJid().toBareJid())
|| getTo().equals(account.getJid());
}
2014-10-22 16:38:44 +00:00
}