Class: Nexpose::HostName

Inherits:
Object
  • Object
show all
Includes:
Comparable
Defined in:
lib/nexpose/site.rb

Overview

Object that represents a hostname to be added to a site.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(hostname) ⇒ HostName

Returns a new instance of HostName.



573
574
575
# File 'lib/nexpose/site.rb', line 573

def initialize(hostname)
  @host = hostname
end

Instance Attribute Details

#hostObject

Named host (usually DNS or Netbios name).



571
572
573
# File 'lib/nexpose/site.rb', line 571

def host
  @host
end

Instance Method Details

#<=>(other) ⇒ Object



579
580
581
# File 'lib/nexpose/site.rb', line 579

def <=>(other)
  to_xml <=> other.to_xml
end

#as_xmlObject Also known as: to_xml_elem



591
592
593
594
595
# File 'lib/nexpose/site.rb', line 591

def as_xml
  xml = REXML::Element.new('host')
  xml.text = @host
  xml
end

#eql?(other) ⇒ Boolean

Returns:

  • (Boolean)


583
584
585
# File 'lib/nexpose/site.rb', line 583

def eql?(other)
  to_xml == other.to_xml
end

#hashObject



587
588
589
# File 'lib/nexpose/site.rb', line 587

def hash
  to_xml.hash
end

#to_xmlObject



598
599
600
# File 'lib/nexpose/site.rb', line 598

def to_xml
  to_xml_elem.to_s
end