Class: Jabber::PubSub::SubscriptionConfig
- Inherits:
-
Configuration
- Object
- REXML::Element
- XMPPElement
- Configuration
- Jabber::PubSub::SubscriptionConfig
- Defined in:
- lib/xmpp4r/pubsub/children/subscription_config.rb
Overview
SubscriptionConfig
An <options> XMPP element, see example 57 in www.xmpp.org/extensions/xep-0060.html#subscriber-configure-success
Instance Method Summary (collapse)
-
- (SubscriptionConfig) initialize(node = nil, jid = nil, options = nil, subid = nil)
constructor
Construct a new Options stanza
node
- String
-
the node to which this subscription applies
jid
- String
-
or [Jabber::JID] the jid that holds the subscription
options
- Hash
-
the configuration for this subscription
subid
- String
-
(optional) subscription id.
-
- (Object) jid
get the 'jid' attribute for this stanza.
-
- (Object) jid=(jid)
set the 'jid' attribute of this stanza
jid
- Jabber::JID
-
or [String] the jid owning the subscription.
-
- (Object) subid
get the 'subid' attribute.
-
- (Object) subid=(subid)
set the 'subid' attribute
subid
- String
-
the subscription id.
Methods inherited from Configuration
#form, #form=, #node, #node=, #options, #options=
Methods inherited from XMPPElement
class_for_name_xmlns, #clone, force_xmlns, force_xmlns?, import, name_xmlns, name_xmlns_for_class, #parent=, #set_xml_lang, #typed_add, #xml_lang, #xml_lang=
Methods inherited from REXML::Element
#==, #delete_elements, #each_elements, #first_element, #first_element_content, #first_element_text, #import, import, #replace_element_content, #replace_element_text, #typed_add
Constructor Details
- (SubscriptionConfig) initialize(node = nil, jid = nil, options = nil, subid = nil)
Construct a new Options stanza
node |
|
jid |
|
options |
|
subid |
|
25 26 27 28 29 30 31 32 |
# File 'lib/xmpp4r/pubsub/children/subscription_config.rb', line 25 def initialize(node = nil, jid = nil, = nil, subid = nil) super() self.node = node self.jid = jid self. = self.subid = subid end |
Instance Method Details
- (Object) jid
get the 'jid' attribute for this stanza
43 44 45 |
# File 'lib/xmpp4r/pubsub/children/subscription_config.rb', line 43 def jid attributes['jid'] ? Jabber::JID.new(attributes['jid']) : nil end |
- (Object) jid=(jid)
set the 'jid' attribute of this stanza
jid |
|
37 38 39 |
# File 'lib/xmpp4r/pubsub/children/subscription_config.rb', line 37 def jid=(jid) attributes['jid'] = jid.to_s end |
- (Object) subid
get the 'subid' attribute
56 57 58 |
# File 'lib/xmpp4r/pubsub/children/subscription_config.rb', line 56 def subid attributes['subid'] end |
- (Object) subid=(subid)
set the 'subid' attribute
subid |
|
50 51 52 |
# File 'lib/xmpp4r/pubsub/children/subscription_config.rb', line 50 def subid=(subid) attributes['subid'] = subid end |