aboutsummaryrefslogtreecommitdiffstats
path: root/configserver/src/main/java/com/yahoo/vespa/config/server/http/v2/response/TenantGetResponse.java
blob: a5990de278e98224b1bde25cc9fb708cb37da398 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// 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.TenantName;
import com.yahoo.restapi.MessageResponse;

/**
 * Response for tenant create
 *
 * @author hmusum
 */
public class TenantGetResponse extends MessageResponse {

    public TenantGetResponse(TenantName tenant) {
        super("Tenant '" + tenant + "' exists.");
    }

}