From 08023210ba875f3cd088eca2b4b3df7410966344 Mon Sep 17 00:00:00 2001 From: Daniel Gultsch Date: Mon, 10 Mar 2014 19:22:13 +0100 Subject: basic stream managment functionality --- src/eu/siacs/conversations/xmpp/IqPacket.java | 40 --------------------------- 1 file changed, 40 deletions(-) delete mode 100644 src/eu/siacs/conversations/xmpp/IqPacket.java (limited to 'src/eu/siacs/conversations/xmpp/IqPacket.java') diff --git a/src/eu/siacs/conversations/xmpp/IqPacket.java b/src/eu/siacs/conversations/xmpp/IqPacket.java deleted file mode 100644 index 2319fd28b..000000000 --- a/src/eu/siacs/conversations/xmpp/IqPacket.java +++ /dev/null @@ -1,40 +0,0 @@ -package eu.siacs.conversations.xmpp; - -import eu.siacs.conversations.xml.Element; - -public class IqPacket extends Element { - - 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"); - } - - public String getId() { - return this.getAttribute("id"); - } - -} -- cgit v1.2.3