com.sap.cds.services.mt.SaasRegistryTriggeredByInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cds-feature-mt Show documentation
Show all versions of cds-feature-mt Show documentation
Multi tenancy feature for CDS Services Java
package com.sap.cds.services.mt;
import com.sap.cds.CdsData;
/**
* This interface provides more details about the user who triggered the subscription or unsubsription.
*/
public interface SaasRegistryTriggeredByInfo extends CdsData {
String getUserId();
/**
* The user as defined in the configured IdP, usually would be the email address of the user.
*
* @return The user as defined in the configured IdP, usually would be the email address of the user.
*/
String getUserName();
/**
* The email address of the user.
*
* @return the email address of the user.
*/
String getEmail();
/**
* In case of default SAP IdP, would contain the ID of the user ID.
*
* @return In case of default SAP IdP, would contain the ID of the user ID.
*/
String getSubIdp();
String getSub();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy