Class Jabber::PubSub::NodeConfig
In: lib/xmpp4r/pubsub/children/node_config.rb
Parent: Configuration

NodeConfig

A <configure> XMPP element for pubsub nodes, see example 123 in www.xmpp.org/extensions/xep-0060.html#owner-create-and-configure

Methods

new  

Public Class methods

Construct a <configure> element.

node:[String] the node to configure
options:[Hash] the configuration to apply

[Source]

    # File lib/xmpp4r/pubsub/children/node_config.rb, line 22
22:       def initialize(node = nil, options = nil)
23:         super()
24: 
25:         self.node = node
26:         self.options = options
27:       end

[Validate]