Package com.microstrategy.web.objects
Interface WebNotification
- 
- All Known Subinterfaces:
 WebEmailNotification,WebPushNotification
- All Known Implementing Classes:
 AbstractWebNotification,WebNotificationAbstract,WebPushNotificationImpl
public interface WebNotification 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<java.lang.String>getUserIds()Get the list of user ids, which identifies the recipients of the notificationvoidsend()Send the push notificationvoidsetUserIds(java.util.List<java.lang.String> userIds)Set the list of user ids, which identifies the recipients of the notification 
 - 
 
- 
- 
Method Detail
- 
send
void send() throws WebObjectsException
Send the push notification- Throws:
 WebObjectsException
 
- 
getUserIds
java.util.List<java.lang.String> getUserIds()
Get the list of user ids, which identifies the recipients of the notification- Returns:
 - list of user ids
 
 
- 
setUserIds
void setUserIds(java.util.List<java.lang.String> userIds)
Set the list of user ids, which identifies the recipients of the notification- Parameters:
 userIds- , list of user ids which identifies the recipients of the notification
 
 - 
 
 -