Sha256: eb3f0ebf5373046e86c220eb8f81726d86831de5ac5464f6aedfb43558685e97
Contents?: true
Size: 1018 Bytes
Versions: 11
Compression:
Stored size: 1018 Bytes
Contents
# Copyright (c) 2021 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details. # frozen_string_literal: true require 'contrast/config/default_value' require 'contrast/utils/object_share' module Contrast module Config # Common Configuration settings. Those in this section pertain to the # application identification functionality of the Agent. class ApplicationConfiguration < BaseConfiguration KEYS = { name: EMPTY_VALUE, version: EMPTY_VALUE, language: EMPTY_VALUE, path: EMPTY_VALUE, group: EMPTY_VALUE, tags: EMPTY_VALUE, code: EMPTY_VALUE, metadata: EMPTY_VALUE, session_id: Contrast::Config::DefaultValue.new(Contrast::Utils::ObjectShare::EMPTY_STRING), session_metadata: Contrast::Config::DefaultValue.new(Contrast::Utils::ObjectShare::EMPTY_STRING) }.cs__freeze def initialize hsh super(hsh, KEYS) end end end end
Version data entries
11 entries across 11 versions & 1 rubygems