aboutsummaryrefslogtreecommitdiffstats
path: root/configserver/src/main/java/com/yahoo/vespa/config/server/http/v2/response/DeleteApplicationResponse.java
blob: a362ddb0faff50f81793ee87360eb275e4169f8e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
// 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.config.provision.ApplicationId;
import com.yahoo.restapi.MessageResponse;

public class DeleteApplicationResponse extends MessageResponse {
    public DeleteApplicationResponse(ApplicationId applicationId) {
        super("Application '" + applicationId + "' deleted");
    }
}