Package com.microstrategy.web.objects
Interface WebPushNotification
-
- All Superinterfaces:
WebNotification
- All Known Implementing Classes:
WebPushNotificationImpl
public interface WebPushNotification extends WebNotification
Created by ctouret on 5/1/17. This interface describes the behavior of a push notification (initially intended for mobile).
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetDeliveryType()java.lang.StringgetObjectId()PushNotificationPayloadgetPushNotificationPayload()booleanisBackground()voidsetBackground(boolean background)voidsetDeliveryType(int deliveryType)voidsetObjectId(java.lang.String objectId)voidsetPushNotificationPayload(PushNotificationPayload pushNotificationPayload)-
Methods inherited from interface com.microstrategy.web.objects.WebNotification
getUserIds, send, setUserIds
-
-
-
-
Method Detail
-
getDeliveryType
int getDeliveryType()
-
setDeliveryType
void setDeliveryType(int deliveryType)
-
getPushNotificationPayload
PushNotificationPayload getPushNotificationPayload()
-
setPushNotificationPayload
void setPushNotificationPayload(PushNotificationPayload pushNotificationPayload)
-
getObjectId
java.lang.String getObjectId()
-
setObjectId
void setObjectId(java.lang.String objectId)
-
isBackground
boolean isBackground()
-
setBackground
void setBackground(boolean background)
-
-