mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-22 20:12:07 +01:00
Improve RosterPacket.ItemType javadoc
This commit is contained in:
parent
1f59a755d8
commit
8c9b3d5c62
1 changed files with 9 additions and 4 deletions
|
@ -313,22 +313,27 @@ public class RosterPacket extends IQ {
|
||||||
public static enum ItemType {
|
public static enum ItemType {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The user and subscriber have no interest in each other's presence.
|
* The user does not have a subscription to the contact's presence, and the contact does not
|
||||||
|
* have a subscription to the user's presence; this is the default value, so if the
|
||||||
|
* subscription attribute is not included then the state is to be understood as "none".
|
||||||
*/
|
*/
|
||||||
none,
|
none,
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The user is interested in receiving presence updates from the subscriber.
|
* The user has a subscription to the contact's presence, but the contact does not have a
|
||||||
|
* subscription to the user's presence.
|
||||||
*/
|
*/
|
||||||
to,
|
to,
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The subscriber is interested in receiving presence updates from the user.
|
* The contact has a subscription to the user's presence, but the user does not have a
|
||||||
|
* subscription to the contact's presence.
|
||||||
*/
|
*/
|
||||||
from,
|
from,
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The user and subscriber have a mutual interest in each other's presence.
|
* The user and the contact have subscriptions to each other's presence (also called a
|
||||||
|
* "mutual subscription").
|
||||||
*/
|
*/
|
||||||
both,
|
both,
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue