Class: Nexpose::HostName
- Inherits:
-
Object
- Object
- Nexpose::HostName
- Includes:
- Comparable
- Defined in:
- lib/nexpose/site.rb
Overview
Object that represents a hostname to be added to a site.
Instance Attribute Summary collapse
-
#host ⇒ Object
Named host (usually DNS or Netbios name).
Instance Method Summary collapse
- #<=>(other) ⇒ Object
- #as_xml ⇒ Object (also: #to_xml_elem)
- #eql?(other) ⇒ Boolean
- #hash ⇒ Object
-
#initialize(hostname) ⇒ HostName
constructor
A new instance of HostName.
- #to_s ⇒ Object
- #to_xml ⇒ Object
Constructor Details
#initialize(hostname) ⇒ HostName
Returns a new instance of HostName.
589 590 591 |
# File 'lib/nexpose/site.rb', line 589 def initialize(hostname) @host = hostname end |
Instance Attribute Details
#host ⇒ Object
Named host (usually DNS or Netbios name).
587 588 589 |
# File 'lib/nexpose/site.rb', line 587 def host @host end |
Instance Method Details
#<=>(other) ⇒ Object
595 596 597 |
# File 'lib/nexpose/site.rb', line 595 def <=>(other) to_xml <=> other.to_xml end |
#as_xml ⇒ Object Also known as: to_xml_elem
607 608 609 610 611 |
# File 'lib/nexpose/site.rb', line 607 def as_xml xml = REXML::Element.new('host') xml.text = @host xml end |
#eql?(other) ⇒ Boolean
599 600 601 |
# File 'lib/nexpose/site.rb', line 599 def eql?(other) to_xml == other.to_xml end |
#hash ⇒ Object
603 604 605 |
# File 'lib/nexpose/site.rb', line 603 def hash to_xml.hash end |
#to_s ⇒ Object
618 619 620 |
# File 'lib/nexpose/site.rb', line 618 def to_s @host.to_s end |
#to_xml ⇒ Object
614 615 616 |
# File 'lib/nexpose/site.rb', line 614 def to_xml to_xml_elem.to_s end |