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 int
getDeliveryType()
java.lang.String
getObjectId()
PushNotificationPayload
getPushNotificationPayload()
boolean
isBackground()
void
setBackground(boolean background)
void
setDeliveryType(int deliveryType)
void
setObjectId(java.lang.String objectId)
void
setPushNotificationPayload(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)
-
-