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

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";
    }
}