com.sap.cds.feature.ucl.services.SpiiTenant Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cds-feature-ucl Show documentation
Show all versions of cds-feature-ucl Show documentation
Unified Customer Landscape feature for CDS Services Java
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