summaryrefslogtreecommitdiffstats
path: root/jdisc_http_service/src/main/java/com/yahoo/jdisc/http/core/HttpServletRequestUtils.java
blob: 6d6759cee75d36448f3386adffae6fca58b44898 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright 2017 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.jdisc.http.core;

import org.eclipse.jetty.server.HttpConnection;

import javax.servlet.http.HttpServletRequest;

/**
 * @author bjorncs
 */
public class HttpServletRequestUtils {
    private HttpServletRequestUtils() {}

    public static HttpConnection getConnection(HttpServletRequest request) {
        return (HttpConnection)request.getAttribute("org.eclipse.jetty.server.HttpConnection");
    }

}