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.



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

#scanFailedObject (readonly)

Returns the value of attribute scanFailed.



1803
1804
1805
# File 'lib/nexpose.rb', line 1803

def scanFailed
  @scanFailed
end

#scanStartObject (readonly)

Returns the value of attribute scanStart.



1804
1805
1806
# File 'lib/nexpose.rb', line 1804

def scanStart
  @scanStart
end

#scanStopObject (readonly)

Returns the value of attribute scanStop.



1802
1803
1804
# File 'lib/nexpose.rb', line 1802

def scanStop
  @scanStop
end