aboutsummaryrefslogtreecommitdiffstats
path: root/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/horizon/HorizonResponse.java
blob: aaadb5109c755ac0a127f0487c61ca47d5efec5f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.hosted.controller.api.integration.horizon;

import java.io.IOException;
import java.io.InputStream;

/**
 * @author valerijf
 */
public class HorizonResponse implements AutoCloseable {

    private final int code;
    private final InputStream inputStream;

    public HorizonResponse(int code, InputStream inputStream) {
        this.code = code;
        this.inputStream = inputStream;
    }

    public int code() {
        return code;
    }

    public InputStream inputStream() {
        return inputStream;
    }

    public static HorizonResponse empty() {
        return new HorizonResponse(200, InputStream.nullInputStream());
    }

    @Override
    public void close() throws IOException {
        inputStream.close();
    }
}