Sha256: 12081133fe2fc1c6c05fd873ba9656bfb278cfac8c00b1bd9e602eb396880f8e
Contents?: true
Size: 650 Bytes
Versions: 15
Compression:
Stored size: 650 Bytes
Contents
# Copyright (c) 2020 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details. # frozen_string_literal: true module Contrast module Config # Common Configuration settings. Those in this section pertain to the # communication between the Agent & the Service. class ServiceConfiguration < BaseConfiguration KEYS = { enable: EMPTY_VALUE, host: EMPTY_VALUE, port: EMPTY_VALUE, socket: EMPTY_VALUE, logger: Contrast::Config::LoggerConfiguration }.cs__freeze def initialize hsh super(hsh, KEYS) end end end end
Version data entries
15 entries across 15 versions & 1 rubygems