com.sap.cds.services.mt.SmsServiceInstance 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
/**************************************************************************
* (C) 2019-2024 SAP SE or an SAP affiliate company. All rights reserved. *
**************************************************************************/
package com.sap.cds.services.mt;
import java.util.Map;
import com.sap.cds.CdsData;
import com.sap.cds.Struct;
/**
* An SMS (Subscription Manager Service) service instance.
*/
public interface SmsServiceInstance extends CdsData {
static SmsServiceInstance create() {
return Struct.create(SmsServiceInstance.class);
}
static SmsServiceInstance create(Map attributes) {
return Struct.access(attributes).as(SmsServiceInstance.class);
}
/**
* Gets the IAS service instance id.
*
* @return the IAS service instance id
*/
String getIasServiceInstanceId();
/**
* Sets the IAS service instance id.
*
* @param id the IAS service instance id
*/
void setIasServiceInstanceId(String id);
/**
* Gets the application display name.
*
* @return the app name
*/
String getAppDisplayName();
/**
* Sets the application display name
*
* @param name the app name
*/
void setAppDisplayName(String name);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy