Class: Nexpose::ScanFilter

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

Overview

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

Description

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(scanstop, scanFailed, scanStart) ⇒ ScanFilter

Returns a new instance of ScanFilter.



1329
1330
1331
1332
1333
1334
1335
# File 'lib/nexpose.rb', line 1329

def initialize(scanstop, scanFailed, scanStart)

	@scanStop = scanStop
	@scanFailed = scanFailed
	@scanStart = scanStart

end

Instance Attribute Details

#scanFailedObject (readonly)

Returns the value of attribute scanFailed.



1326
1327
1328
# File 'lib/nexpose.rb', line 1326

def scanFailed
  @scanFailed
end

#scanStartObject (readonly)

Returns the value of attribute scanStart.



1327
1328
1329
# File 'lib/nexpose.rb', line 1327

def scanStart
  @scanStart
end

#scanStopObject (readonly)

Returns the value of attribute scanStop.



1325
1326
1327
# File 'lib/nexpose.rb', line 1325

def scanStop
  @scanStop
end