All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sap.cds.services.mt.SmsServiceInstance Maven / Gradle / Ivy

There is a newer version: 3.6.0
Show newest version
/**************************************************************************
 * (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