All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.yahoo.vespa.config.server.http.StaticResponse Maven / Gradle / Ivy

There is a newer version: 8.441.21
Show newest version
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.config.server.http;

import com.yahoo.container.jdisc.HttpResponse;

import java.io.IOException;
import java.io.OutputStream;
import java.nio.charset.StandardCharsets;

public class StaticResponse extends HttpResponse {

    private final String contentType;
    private final byte[] body;

    public StaticResponse(int status, String contentType, byte[] body) {
        super(status);
        this.contentType = contentType;
        this.body = body;
    }

    public StaticResponse(int status, String contentType, String body) {
        this(status, contentType, body.getBytes(StandardCharsets.UTF_8));
    }

    @Override
    public void render(OutputStream outputStream) throws IOException {
        outputStream.write(body);
    }

    @Override
    public String getContentType() {
        return contentType;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy