1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
|
# =XMPP4R - XMPP Library for Ruby
# License:: Ruby's license (see the LICENSE file) or GNU GPL, at your option.
# Website::http://xmpp4r.github.io
require 'xmpp4r/iq'
module Jabber
module PubSub
##
# Unsubscribe
class Unsubscribe < XMPPElement
name_xmlns 'unsubscribe'
def initialize(myjid=nil,mynode=nil,mysubid=nil)
super()
jid = myjid
node = mynode
subid = mysubid
end
##
# shows the jid
# return:: [String]
def jid
(a = attribute('jid')).nil? ? a : JID.new(a.value)
end
##
# sets the jid
# =:: [Jabber::JID] or [String]
def jid=(myjid)
add_attribute('jid', myjid ? myjid.to_s : nil)
end
##
# shows the node
# return:: [String]
def node
attributes['node']
end
##
# sets the node
# =:: [String]
def node=(mynode)
attributes['node'] = mynode
end
##
# shows the subid
# return:: [String]
def subid
attributes['subid']
end
##
# sets the subid
# =:: [String]
def subid=(mysubid)
attributes['subid'] = mysubid
end
end
end
end
|