com.dell.doradus.service.tenant.DefineTenantCmd Maven / Gradle / Ivy
/*
* Copyright (C) 2014 Dell, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.dell.doradus.service.tenant;
import com.dell.doradus.common.HttpMethod;
import com.dell.doradus.common.TenantDefinition;
import com.dell.doradus.common.UNode;
import com.dell.doradus.common.Utils;
import com.dell.doradus.core.ServerConfig;
import com.dell.doradus.service.rest.UNodeInOutCallback;
import com.dell.doradus.service.rest.annotation.Description;
@Description(
name = "DefineTenant",
summary = "Creates a new tenant with a specific configuration.",
methods = HttpMethod.POST,
uri = "/_tenants",
privileged = true,
inputEntity = "TenantDefinition",
outputEntity = "TenantDefinition"
)
public class DefineTenantCmd extends UNodeInOutCallback {
@Override
public UNode invokeUNodeInOut(UNode inNode) {
Utils.require(ServerConfig.getInstance().multitenant_mode,
"This command is only allowed in multi-tenant mode; see 'multitenant_mode' parameter");
TenantDefinition tenantDef = new TenantDefinition();
tenantDef.parse(inNode);
tenantDef = TenantService.instance().defineTenant(tenantDef);
return tenantDef.toDoc();
}
} // class DefineTenantCmd
© 2015 - 2025 Weber Informatics LLC | Privacy Policy