aboutsummaryrefslogtreecommitdiffstats
path: root/configserver-flags/src/main/java/com/yahoo/vespa/configserver/flags/http/OKResponse.java
blob: 4b64858d6e769ed8a4802245575259dd6b84843f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.configserver.flags.http;

import com.yahoo.container.jdisc.EmptyResponse;
import com.yahoo.jdisc.Response;

/**
 * @author hakonhall
 */
public class OKResponse extends EmptyResponse {
    public OKResponse() {
        super(Response.Status.OK);
    }

    @Override
    public String getContentType() {
        return "application/json";
    }
}