class Dockscan::Scan::Issue

Attributes

description[RW]
references[RW]
risk[RW]
severity[RW]
solution[RW]
tags[RW]
title[RW]

Public Class Methods

new() click to toggle source
# File lib/dockscan/scan/issue.rb, line 6
def initialize
        severity=0
        description="Forgot to add description"
        solution="Information only."
        title="Forgot to add title"
        tags=Hash.new
        references=Hash.new
        risk=Hash.new
        reflinks=Hash.new
end