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



151
152
153
154
# File 'lib/nexpose/creds.rb', line 151

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

Instance Attribute Details

#nameObject (readonly)

Name, one per Header



146
147
148
# File 'lib/nexpose/creds.rb', line 146

def name
  @name
end

#valueObject (readonly)

Value, one per Header



148
149
150
# File 'lib/nexpose/creds.rb', line 148

def value
  @value
end

Instance Method Details

#to_xml_elemObject



156
157
158
159
160
161
162
# File 'lib/nexpose/creds.rb', line 156

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

  make_xml('Header', attributes)
end