Package org.jivesoftware.openfire.pubsub
Class CollectionNode
- java.lang.Object
-
- org.jivesoftware.openfire.pubsub.Node
-
- org.jivesoftware.openfire.pubsub.CollectionNode
-
public class CollectionNode extends Node
A type of node that contains nodes and/or other collections but no published items. Collections provide the foundation entity to provide a means of representing hierarchical node structures.- Author:
- Matt Tucker
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classCollectionNode.LeafNodeAssociationPolicyPolicy that defines who may associate leaf nodes with a collection.-
Nested classes/interfaces inherited from class org.jivesoftware.openfire.pubsub.Node
Node.ItemReplyPolicy
-
-
Field Summary
-
Fields inherited from class org.jivesoftware.openfire.pubsub.Node
accessModel, affiliates, bodyXSLT, contacts, creationDate, creator, dataformXSLT, deliverPayloads, description, language, name, nodeID, notifyConfigChanges, notifyDelete, notifyRetract, parent, payloadType, presenceBasedDelivery, publisherModel, replyPolicy, replyRooms, replyTo, rosterGroupsAllowed, service, subscriptionConfigurationRequired, subscriptionEnabled, subscriptionsByID, subscriptionsByJID
-
-
Constructor Summary
Constructors Constructor Description CollectionNode(PubSubService service, CollectionNode parentNode, String nodeID, org.xmpp.packet.JID creator)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected voidaddFormFields(org.xmpp.forms.DataForm form, boolean isEditing)Adds the required form fields to the specified form.protected voidconfigure(org.xmpp.forms.FormField field)Configures the node with the completed form field.protected voiddeletingNode()Notification message indicating that the node is being deleted.CollectionNode.LeafNodeAssociationPolicygetAssociationPolicy()Returns the policy that defines who may associate leaf nodes with a collection.Collection<org.xmpp.packet.JID>getAssociationTrusted()Returns the users that are allowed to associate leaf nodes with this collection node.intgetMaxLeafNodes()Returns the max number of leaf nodes that this collection node might have.Collection<Node>getNodes()Returns the list of nodes contained by this node.booleanisAssociationAllowed(org.xmpp.packet.JID user)Returns true if the specified user is allowed to associate a leaf node with this node.booleanisChildNode(Node child)Returns true if the specified node is a first-level children of this collection node.booleanisCollectionNode()Returns true if this node is a node container.booleanisDescendantNode(Node child)Returns true if the specified node is a direct child node of this collection node or a descendant of the children nodes.booleanisMaxLeafNodeReached()Returns true if the max number of leaf nodes associated with this node has reached to the maximum allowed.-
Methods inherited from class org.jivesoftware.openfire.pubsub.Node
addAffiliate, addNoneAffiliation, addOutcast, addOwner, addPublisher, addSubscription, approveSubscription, broadcastNodeEvent, cancelSubscription, cancelSubscription, changeParent, configure, createSubscription, delete, equals, getAccessModel, getAffiliate, getAllAffiliates, getAllSubscriptions, getBodyXSLT, getConfigurationForm, getContacts, getCreationDate, getCreator, getDataformXSLT, getDescription, getLanguage, getLastPublishedItem, getMetadataForm, getModificationDate, getName, getNodeID, getOwners, getParent, getParents, getPayloadType, getPendingSubscriptions, getPublishedItem, getPublishedItems, getPublishedItems, getPublisherModel, getPublishers, getReplyPolicy, getReplyRooms, getReplyTo, getRosterGroupsAllowed, getService, getSubscription, getSubscription, getSubscriptions, hashCode, isAdmin, isMultipleSubscriptionsEnabled, isNotifiedOfConfigChanges, isNotifiedOfDelete, isNotifiedOfRetract, isPayloadDelivered, isPresenceBasedDelivery, isPresenceBasedDelivery, isRootCollectionNode, isSendItemSubscribe, isSubscriptionConfigurationRequired, isSubscriptionEnabled, removeOutcast, removeOwner, removePublisher, saveToDB, sendEventNotification, toString
-
-
-
-
Constructor Detail
-
CollectionNode
public CollectionNode(PubSubService service, CollectionNode parentNode, String nodeID, org.xmpp.packet.JID creator)
-
-
Method Detail
-
configure
protected void configure(org.xmpp.forms.FormField field) throws NotAcceptableExceptionDescription copied from class:NodeConfigures the node with the completed form field. Fields that are common to leaf and collection nodes are handled inNode.configure(org.xmpp.forms.DataForm). Subclasses should implement this method in order to configure the node with form fields specific to the node type.- Specified by:
configurein classNode- Parameters:
field- the form field specific to the node type.- Throws:
NotAcceptableException- if field cannot be configured because of invalid data.
-
addFormFields
protected void addFormFields(org.xmpp.forms.DataForm form, boolean isEditing)Description copied from class:NodeAdds the required form fields to the specified form. When editing is true the field type and a label is included in each fields. The form being completed will contain the current node configuration. This information can be used for editing the node or for notifing that the node configuration has changed.- Overrides:
addFormFieldsin classNode- Parameters:
form- the form containing the node configuration.isEditing- true when the form will be used to edit the node configuration.
-
deletingNode
protected void deletingNode()
Description copied from class:NodeNotification message indicating that the node is being deleted. Subclasses should implement this method to delete any subclass specific information.- Specified by:
deletingNodein classNode
-
isCollectionNode
public boolean isCollectionNode()
Description copied from class:NodeReturns true if this node is a node container. Node containers may only contain nodes but are not allowed to get items published.- Overrides:
isCollectionNodein classNode- Returns:
- true if this node is a node container.
-
isChildNode
public boolean isChildNode(Node child)
Returns true if the specified node is a first-level children of this collection node.- Overrides:
isChildNodein classNode- Parameters:
child- the node to check if it is a direct child of this node.- Returns:
- true if the specified node is a first-level children of this collection node.
-
isDescendantNode
public boolean isDescendantNode(Node child)
Returns true if the specified node is a direct child node of this collection node or a descendant of the children nodes.- Overrides:
isDescendantNodein classNode- Parameters:
child- the node to check if it is a descendant of this node.- Returns:
- true if the specified node is a direct child node of this collection node or a descendant of the children nodes.
-
getNodes
public Collection<Node> getNodes()
Description copied from class:NodeReturns the list of nodes contained by this node. OnlyCollectionNodemay contain other nodes.
-
getAssociationPolicy
public CollectionNode.LeafNodeAssociationPolicy getAssociationPolicy()
Returns the policy that defines who may associate leaf nodes with a collection.- Returns:
- the policy that defines who may associate leaf nodes with a collection.
-
getAssociationTrusted
public Collection<org.xmpp.packet.JID> getAssociationTrusted()
Returns the users that are allowed to associate leaf nodes with this collection node. This collection is going to be used only when the associationPolicy iswhitelist.- Returns:
- the users that are allowed to associate leaf nodes with this collection node.
-
getMaxLeafNodes
public int getMaxLeafNodes()
Returns the max number of leaf nodes that this collection node might have. A value of -1 means that there is no limit.- Returns:
- the max number of leaf nodes that this collection node might have.
-
isAssociationAllowed
public boolean isAssociationAllowed(org.xmpp.packet.JID user)
Returns true if the specified user is allowed to associate a leaf node with this node. The decision is taken based on the association policy that the node is using.- Parameters:
user- the user trying to associate a leaf node with this node.- Returns:
- true if the specified user is allowed to associate a leaf node with this node.
-
isMaxLeafNodeReached
public boolean isMaxLeafNodeReached()
Returns true if the max number of leaf nodes associated with this node has reached to the maximum allowed.- Returns:
- true if the max number of leaf nodes associated with this node has reached to the maximum allowed.
-
-