Uses of Class
org.jivesoftware.openfire.pubsub.models.PublisherModel
-
Packages that use PublisherModel Package Description org.jivesoftware.openfire.pubsub Implementation of Publish-Subscribe (XEP-0060).org.jivesoftware.openfire.pubsub.models Defines policies that define who is allowed to subscribe and retrieve items or policies that define who is allowed to publish items to nodes (XEP-0060). -
-
Uses of PublisherModel in org.jivesoftware.openfire.pubsub
Fields in org.jivesoftware.openfire.pubsub declared as PublisherModel Modifier and Type Field Description protected PublisherModel
Node. publisherModel
Publisher model that specifies who is allowed to publish items to the node.Methods in org.jivesoftware.openfire.pubsub that return PublisherModel Modifier and Type Method Description PublisherModel
DefaultNodeConfiguration. getPublisherModel()
Returnes the publisher model that specifies who is allowed to publish items to the node.PublisherModel
Node. getPublisherModel()
Returns the publisher model that specifies who is allowed to publish items to the node.Methods in org.jivesoftware.openfire.pubsub with parameters of type PublisherModel Modifier and Type Method Description void
DefaultNodeConfiguration. setPublisherModel(PublisherModel publisherModel)
Sets the publisher model that specifies who is allowed to publish items to the node.Constructors in org.jivesoftware.openfire.pubsub with parameters of type PublisherModel Constructor Description CollectionNode(PubSubService.UniqueIdentifier serviceId, CollectionNode parentNode, String nodeID, org.xmpp.packet.JID creator, boolean subscriptionEnabled, boolean deliverPayloads, boolean notifyConfigChanges, boolean notifyDelete, boolean notifyRetract, boolean presenceBasedDelivery, AccessModel accessModel, PublisherModel publisherModel, String language, Node.ItemReplyPolicy replyPolicy, CollectionNode.LeafNodeAssociationPolicy associationPolicy, int maxLeafNodes)
LeafNode(PubSubService.UniqueIdentifier serviceId, CollectionNode parentNode, String nodeID, org.xmpp.packet.JID creator, boolean subscriptionEnabled, boolean deliverPayloads, boolean notifyConfigChanges, boolean notifyDelete, boolean notifyRetract, boolean presenceBasedDelivery, AccessModel accessModel, PublisherModel publisherModel, String language, Node.ItemReplyPolicy replyPolicy, boolean persistPublishedItems, int maxPublishedItems, int maxPayloadSize, boolean sendItemSubscribe)
-
Uses of PublisherModel in org.jivesoftware.openfire.pubsub.models
Subclasses of PublisherModel in org.jivesoftware.openfire.pubsub.models Modifier and Type Class Description class
OnlyPublishers
Publishers and owners may publish items to the node.class
OnlySubscribers
Subscribers, publishers and owners may publish items to the node.class
OpenPublisher
Anyone may publish items to the node.Fields in org.jivesoftware.openfire.pubsub.models declared as PublisherModel Modifier and Type Field Description static PublisherModel
PublisherModel. open
static PublisherModel
PublisherModel. publishers
static PublisherModel
PublisherModel. subscribers
Methods in org.jivesoftware.openfire.pubsub.models that return PublisherModel Modifier and Type Method Description static PublisherModel
PublisherModel. valueOf(String name)
Returns the specific subclass of PublisherModel as specified by the publisher model name.
-