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.



1677
1678
1679
1680
1681
1682
1683
# File 'lib/nexpose.rb', line 1677

def initialize(scanstop, scanFailed, scanStart)

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

end

Instance Attribute Details

#scanFailedObject (readonly)

Returns the value of attribute scanFailed.



1674
1675
1676
# File 'lib/nexpose.rb', line 1674

def scanFailed
  @scanFailed
end

#scanStartObject (readonly)

Returns the value of attribute scanStart.



1675
1676
1677
# File 'lib/nexpose.rb', line 1675

def scanStart
  @scanStart
end

#scanStopObject (readonly)

Returns the value of attribute scanStop.



1673
1674
1675
# File 'lib/nexpose.rb', line 1673

def scanStop
  @scanStop
end