aboutsummaryrefslogtreecommitdiffstats
path: root/controller-server/src/main/java/com/yahoo/vespa/hosted/controller/restapi/application/HtmlResponse.java
blob: 3bf2f070f979ce3f35f4c1902e51b06a71f202eb (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
// 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.restapi.application;

import com.yahoo.container.jdisc.HttpResponse;

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

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

    private final String content;

    public HtmlResponse(String content) {
        super(200);
        this.content = content;
    }

    @Override
    public void render(OutputStream stream) throws IOException {
        stream.write(content.getBytes(StandardCharsets.UTF_8));
    }

    @Override
    public String getContentType() { return "text/html"; }

}