All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sap.cds.feature.ucl.services.SpiiTenant Maven / Gradle / Ivy

The newest version!
package com.sap.cds.feature.ucl.services;

import com.sap.cds.CdsData;
import com.sap.cds.Struct;

import java.util.Map;

/**
 * A tenant in the payload provided by UCL. It can be either the receiver or the assigned tenant of a formation assignment notification.
 */
public interface SpiiTenant extends CdsData {

	static SpiiTenant create() {
		return Struct.create(SpiiTenant.class);
	}

	String getState();

	String getUclAssignmentId();

	String getDeploymentRegion();

	String getApplicationNamespace();

	String getApplicationUrl();

	String getApplicationTenantId();

	String getSubaccountId();

	String getSubdomain();

	String getUclSystemName();

	String getUclSystemTenantId();

	Map getParameters();

	Map getConfiguration();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy