mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-11-26 00:02:06 +01:00
Javadoc improvements.
git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@2027 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
parent
e583057e43
commit
66a47b8367
1 changed files with 11 additions and 3 deletions
|
@ -53,11 +53,19 @@
|
|||
package org.jivesoftware.smack.packet;
|
||||
|
||||
/**
|
||||
* A generic IQ (Info/Query) packet. IQ packets are used to get and set information
|
||||
* The base IQ (Info/Query) packet. IQ packets are used to get and set information
|
||||
* on the server, including authentication, roster operations, and creating
|
||||
* accounts. Each IQ packet has a specific type that indicates what type of action
|
||||
* is being taken: "get", "set", "result", or "error". The actual data of an IQ
|
||||
* packet is normally enclosed in the query section with a specific namespace.
|
||||
* is being taken: "get", "set", "result", or "error".<p>
|
||||
*
|
||||
* IQ packets can contain a single child element that exists in a specific XML
|
||||
* namespace. The combination of the element name and namespace determines what
|
||||
* type of IQ packet it is. Some example IQ subpacket snippets:<ul>
|
||||
*
|
||||
* <li><query xmlns="jabber:iq:auth"> -- an authentication IQ.
|
||||
* <li><query xmlns="jabber:iq:private"> -- a private storage IQ.
|
||||
* <li><pubsub xmlns="http://jabber.org/protocol/pubsub"> -- a pubsub IQ.
|
||||
* </ul>
|
||||
*
|
||||
* @author Matt Tucker
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue