aboutsummaryrefslogtreecommitdiffstats
path: root/container-core/src/main/java/com/yahoo/jdisc/http/server/jetty/JDiscContext.java
blob: 12669c2e95292692162e35d5db5abf1ff0af909f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.jdisc.http.server.jetty;

import com.yahoo.jdisc.Metric;
import com.yahoo.jdisc.http.ServerConfig;
import com.yahoo.jdisc.service.CurrentContainer;

record JDiscContext(FilterResolver filterResolver,
                    CurrentContainer container,
                    Janitor janitor,
                    Metric metric,
                    boolean developerMode,
                    boolean removeRawPostBodyForWwwUrlEncodedPost) {

    public static JDiscContext of(FilterBindings filterBindings, CurrentContainer container,
                                  Janitor janitor, Metric metric, ServerConfig config) {
        return new JDiscContext(new FilterResolver(filterBindings, metric), container, janitor,
                                metric, config.developerMode(), config.removeRawPostBodyForWwwUrlEncodedPost());
    }

}