Class: Nexpose::ScanFilter
- Inherits:
-
Object
- Object
- Nexpose::ScanFilter
- Defined in:
- lib/nexpose.rb
Overview
TODO: review <scanFilter scanStop=‘0’ scanFailed=‘0’ scanStart=‘1’/>
Description
Instance Attribute Summary collapse
-
#scanFailed ⇒ Object
readonly
Returns the value of attribute scanFailed.
-
#scanStart ⇒ Object
readonly
Returns the value of attribute scanStart.
-
#scanStop ⇒ Object
readonly
Returns the value of attribute scanStop.
Instance Method Summary collapse
-
#initialize(scanstop, scanFailed, scanStart) ⇒ ScanFilter
constructor
A new instance of ScanFilter.
Constructor Details
#initialize(scanstop, scanFailed, scanStart) ⇒ ScanFilter
Returns a new instance of ScanFilter.
1806 1807 1808 1809 1810 1811 1812 |
# File 'lib/nexpose.rb', line 1806 def initialize(scanstop, scanFailed, scanStart) @scanStop = scanStop @scanFailed = scanFailed @scanStart = scanStart end |
Instance Attribute Details
#scanFailed ⇒ Object (readonly)
Returns the value of attribute scanFailed.
1803 1804 1805 |
# File 'lib/nexpose.rb', line 1803 def scanFailed @scanFailed end |
#scanStart ⇒ Object (readonly)
Returns the value of attribute scanStart.
1804 1805 1806 |
# File 'lib/nexpose.rb', line 1804 def scanStart @scanStart end |
#scanStop ⇒ Object (readonly)
Returns the value of attribute scanStop.
1802 1803 1804 |
# File 'lib/nexpose.rb', line 1802 def scanStop @scanStop end |