Class: Nexpose::ScanFilter

Inherits:
Object
  • Object
show all
Defined in:
lib/nexpose/scan.rb

Overview

TODO: review <scanFilter scanStop=‘0’ scanFailed=‘0’ scanStart=‘1’/>

Description

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(scan_stop, scan_failed, scan_start) ⇒ ScanFilter

Returns a new instance of ScanFilter.



258
259
260
261
262
# File 'lib/nexpose/scan.rb', line 258

def initialize(scan_stop, scan_failed, scan_start)
  @scanStop = scan_stop
  @scanFailed = scan_failed
  @scanStart = scan_start
end

Instance Attribute Details

#scanFailedObject (readonly)

Returns the value of attribute scanFailed.



255
256
257
# File 'lib/nexpose/scan.rb', line 255

def scanFailed
  @scanFailed
end

#scanStartObject (readonly)

Returns the value of attribute scanStart.



256
257
258
# File 'lib/nexpose/scan.rb', line 256

def scanStart
  @scanStart
end

#scanStopObject (readonly)

Returns the value of attribute scanStop.



254
255
256
# File 'lib/nexpose/scan.rb', line 254

def scanStop
  @scanStop
end