conversations-classic/src/eu/siacs/conversations/xmpp/stanzas/IqPacket.java

36 lines
601 B
Java
Raw Normal View History

2014-03-10 18:22:13 +00:00
package eu.siacs.conversations.xmpp.stanzas;
2014-03-10 18:22:13 +00:00
public class IqPacket extends AbstractStanza {
public static final int TYPE_SET = 0;
public static final int TYPE_RESULT = 1;
public static final int TYPE_GET = 2;
private IqPacket(String name) {
super(name);
}
public IqPacket(int type) {
super("iq");
switch (type) {
case TYPE_SET:
this.setAttribute("type", "set");
break;
case TYPE_GET:
this.setAttribute("type", "get");
break;
case TYPE_RESULT:
this.setAttribute("type", "result");
break;
default:
break;
}
}
public IqPacket() {
super("iq");
}
}