Class: Nexpose::Header

Inherits:
Object
  • Object
show all
Includes:
XMLUtils
Defined in:
lib/nexpose/creds.rb

Overview

Object that represents Header name-value pairs, associated with Web Session Authentication.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from XMLUtils

#make_xml, #parse_xml

Constructor Details

#initialize(name, value) ⇒ Header

Construct with name value pair



170
171
172
173
# File 'lib/nexpose/creds.rb', line 170

def initialize(name, value)
  @name = name
  @value = value
end

Instance Attribute Details

#nameObject (readonly)

Name, one per Header



165
166
167
# File 'lib/nexpose/creds.rb', line 165

def name
  @name
end

#valueObject (readonly)

Value, one per Header



167
168
169
# File 'lib/nexpose/creds.rb', line 167

def value
  @value
end

Instance Method Details

#to_xml_elemObject



175
176
177
178
179
180
181
# File 'lib/nexpose/creds.rb', line 175

def to_xml_elem
  attributes = {}
  attributes['name'] = @name
  attributes['value'] = @value

  make_xml('Header', attributes)
end