aboutsummaryrefslogtreecommitdiffstats
path: root/container-core/src/main/java/com/yahoo/restapi/ByteArrayResponse.java
blob: 15bd84af04f7da7684f0e9856bc27ae6a0510455 (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
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.restapi;

import com.yahoo.container.jdisc.HttpResponse;

import java.io.IOException;
import java.io.OutputStream;

/**
 * @author freva
 */
public class ByteArrayResponse extends HttpResponse {

    private final byte[] data;

    public ByteArrayResponse(byte[] data) {
        super(200);
        this.data = data;
    }

    @Override
    public void render(OutputStream stream) throws IOException {
        stream.write(data);
    }

}