summaryrefslogtreecommitdiffstats
path: root/jdisc_http_service/src/main/java/com/yahoo/jdisc/http/ssl/ReaderForPath.java
blob: b04d91d7403c6f7b959e7ab024144c5ed4498ff6 (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 2017 Yahoo Holdings. 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;
    }

}