com.sap.cds.services.mt.SmsSubscriptionRequest 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;
/**
* The payload for a subscription request from the SMS (Subscription Manager
* Service).
*/
public interface SmsSubscriptionRequest extends CdsData {
static SmsSubscriptionRequest create() {
return Struct.create(SmsSubscriptionRequest.class);
}
static SmsSubscriptionRequest create(Map attributes) {
return Struct.access(attributes).as(SmsSubscriptionRequest.class);
}
SmsSubscriber getSubscriber();
void setSubscriber(SmsSubscriber subscriber);
SmsRootApplication getRootApplication();
void setRootApplication(SmsRootApplication rootApplication);
SmsServiceInstance getOwnServiceInstance();
void setOwnServiceInstance(SmsServiceInstance serviceInstance);
String getEventType();
void setEventType(String eventType);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy