com.sap.cds.feature.ucl.services.UclService 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.services.Service;
public interface UclService extends Service {
String DEFAULT_NAME = "UclService$Default";
String EVENT_ASSIGN = "ASSIGN";
String EVENT_UNASSIGN = "UNASSIGN";
SpiiResult assign(String receiverApplicationTenantId, SpiiContext context, SpiiTenant receiverTenant, SpiiTenant assignedTenant);
void unassign(String receiverApplicationTenantId, SpiiContext context, SpiiTenant receiverTenant, SpiiTenant assignedTenant);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy