aboutsummaryrefslogtreecommitdiffstats
path: root/container-core/src/main/java/com/yahoo/container/jdisc/RequestView.java
blob: 4559191176ceba5237a2364a2b203dc5b01e5c1f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

package com.yahoo.container.jdisc;

import com.yahoo.jdisc.http.HttpRequest;

import java.net.URI;

/**
 * Read-only view of the request
 *
 * @author mortent
 */
public interface RequestView {
    HttpRequest.Method method();

    URI uri();
}