aboutsummaryrefslogtreecommitdiffstats
path: root/configserver/src/main/java/com/yahoo/vespa/config/server/http/v2/response/ApplicationSuspendedResponse.java
blob: fd8f967bdbb8fa80051123562fe784a8b5320105 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.config.server.http.v2.response;

import com.yahoo.jdisc.Response;
import com.yahoo.vespa.config.server.http.JSONResponse;

public class ApplicationSuspendedResponse extends JSONResponse {
    public ApplicationSuspendedResponse(boolean suspended) {
        super(Response.Status.OK);
        object.setBool("suspended", suspended);
    }
}