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.



281
282
283
284
285
# File 'lib/nexpose/scan.rb', line 281

def initialize(scan_stop, scan_failed, scan_start)
  @scan_stop = scan_stop
  @scan_failed = scan_failed
  @scan_start = scan_start
end

Instance Attribute Details

#scan_failedObject (readonly)

Returns the value of attribute scan_failed.



278
279
280
# File 'lib/nexpose/scan.rb', line 278

def scan_failed
  @scan_failed
end

#scan_startObject (readonly)

Returns the value of attribute scan_start.



279
280
281
# File 'lib/nexpose/scan.rb', line 279

def scan_start
  @scan_start
end

#scan_stopObject (readonly)

Returns the value of attribute scan_stop.



277
278
279
# File 'lib/nexpose/scan.rb', line 277

def scan_stop
  @scan_stop
end