Sha256: 20c80796a14277e15ab046bf1da41e10c74d464491cc2d406a27c8aad784f56f
Contents?: true
Size: 1.52 KB
Versions: 18
Compression:
Stored size: 1.52 KB
Contents
# Copyright (c) 2023 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details. # frozen_string_literal: true require 'base64' require 'contrast/agent/reporting/reporting_events/reportable_hash' require 'contrast/utils/duck_utils' module Contrast module Agent module Reporting # This is the new FindingEventParentObject class which will include all the needed information for the new # reporting system to relay this information in the Finding/Trace messages. These FindingEventParentObject are # used by TeamServer to relate this event to those that came previously. They represent the events that directly # preceding the FindingEvent generated. class FindingEventParentObject < Contrast::Agent::Reporting::ReportableHash # @return [Integer] the Id of the parent event attr_reader :id def initialize id @id = id super() end # Convert the instance variables on the class, and other information, into the identifiers required for # TeamServer to process the JSON form of this message. # # @return [Hash] # @raise [ArgumentError] def to_controlled_hash validate { id: id } end # @raise [ArgumentError] def validate return unless Contrast::Utils::DuckUtils.empty_duck?(id) raise(ArgumentError, "#{ self } did not have a proper id. Unable to continue.") end end end end end
Version data entries
18 entries across 18 versions & 1 rubygems