aboutsummaryrefslogtreecommitdiffstats
path: root/configserver/src/main/java/com/yahoo/vespa/config/server/http/v2/response/TenantCreateResponse.java
blob: 5435b08fb5374e88506c32cb2f9245d4146b57b2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright Vespa.ai. 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 vegardh
 *
 */
public class TenantCreateResponse extends MessageResponse {

    public TenantCreateResponse(TenantName tenant) {
        super("Tenant " + tenant + " created.");
    }
    
}