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

import java.io.Reader;
import java.nio.file.Path;

/**
 * A reader along with the path used to construct it.
 *
 * @author tonytv
 */
public final class ReaderForPath {

    public final Reader reader;
    public final Path path;

    public ReaderForPath(Reader reader, Path path) {
        this.reader = reader;
        this.path = path;
    }

}