summaryrefslogtreecommitdiffstats
path: root/controller-server/src/main/java/com/yahoo/vespa/hosted/controller/restapi/application/EmptyResponse.java
blob: e343615f0666f4f03788feb717f858bca507247a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright 2017 Yahoo Holdings. 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.OutputStream;

/**
 * @author bratseth
 */
public class EmptyResponse extends HttpResponse {

    public EmptyResponse() {
        super(200);
    }

    @Override
    public void render(OutputStream stream) {}

}