mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-01 01:35:59 +01:00
18 lines
444 B
Markdown
18 lines
444 B
Markdown
|
Private Data
|
||
|
============
|
||
|
|
||
|
Manages private data, which is a mechanism to allow users to store arbitrary
|
||
|
XML data on an XMPP server. Each private data chunk is defined by a element
|
||
|
name and XML namespace. Example private data:
|
||
|
|
||
|
```
|
||
|
<color xmlns="http://example.com/xmpp/color">
|
||
|
<favorite>blue</blue>
|
||
|
<leastFavorite>puce</leastFavorite>
|
||
|
</color>
|
||
|
```
|
||
|
|
||
|
**XEP related:** [XEP-49](http://www.xmpp.org/extensions/xep-0049.html)
|
||
|
|
||
|
_More coming soon._
|