summaryrefslogtreecommitdiffstats
path: root/src/main.lib/Plugins/ValidationPlugins/Http/HttpValidationParameters.cs
blob: b1958b4682d42b85e0d4d7bf830fdd4739896d75 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
using PKISharp.WACS.DomainObjects;
using PKISharp.WACS.Services;

namespace PKISharp.WACS.Plugins.ValidationPlugins
{
    internal class HttpValidationParameters
    {
        public ISettingsService Settings { get; private set; }
        public Renewal Renewal { get; private set; }
        public TargetPart TargetPart { get; private set; }
        public RunLevel RunLevel { get; private set; }
        public string Identifier { get; private set; }
        public ILogService LogService { get; private set; }
        public IInputService InputService { get; private set; }
        public ProxyService ProxyService { get; private set; }

        public HttpValidationParameters(
            ILogService log,
            IInputService input,
            ISettingsService settings,
            ProxyService proxy,
            Renewal renewal,
            TargetPart target,
            RunLevel runLevel,
            string identifier)
        {
            Renewal = renewal;
            TargetPart = target;
            RunLevel = runLevel;
            Identifier = identifier;
            Settings = settings;
            ProxyService = proxy;
            LogService = log;
            InputService = input;
        }
    }
}