Learn more  » Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Bower components Debian packages RPM packages NuGet packages

vistahigherlearning / logstash   deb

Repository URL to install this package:

/ opt / logstash / vendor / bundle / jruby / 1.9 / gems / xmpp4r-0.5 / lib / xmpp4r / pubsub / children / unsubscribe.rb

# =XMPP4R - XMPP Library for Ruby
# License:: Ruby's license (see the LICENSE file) or GNU GPL, at your option.
# Website::http://home.gna.org/xmpp4r/

require 'xmpp4r/iq'

module Jabber
  module PubSub
    ##
    # Unsubscribe
    class Unsubscribe < XMPPElement
      name_xmlns 'unsubscribe'
      def initialize(myjid=nil,mynode=nil)
        super()
        jid = myjid
        node =  mynode
      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
    end
  end
end