public enum AccessModel extends Enum<AccessModel>
| Enum Constant and Description |
|---|
authorize
The node owner must approve all subscription requests, and only
subscribers may retrieve items from the node.
|
open
Any entity may subscribe to the node (i.e., without the necessity for
subscription approval) and any entity may retrieve items from the node
(i.e., without being subscribed); this SHOULD be the default access model
for generic pubsub services.
|
presence
Any entity with a subscription of type "from" or "both" may subscribe to
the node and retrieve items from the node; this access model applies
mainly to instant messaging systems (see RFC 3921).
|
roster
Any entity in the specified roster group(s) may subscribe to the node and
retrieve items from the node; this access model applies mainly to instant
messaging systems (see RFC 3921).
|
whitelist
An entity may subscribe or retrieve items only if on a whitelist managed
by the node owner.
|
| Modifier and Type | Method and Description |
|---|---|
static AccessModel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AccessModel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AccessModel authorize
public static final AccessModel open
public static final AccessModel presence
public static final AccessModel roster
public static final AccessModel whitelist
public static AccessModel[] values()
for (AccessModel c : AccessModel.values()) System.out.println(c);
public static AccessModel valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2008–2017 Tigase. All rights reserved.