Package com.microstrategy.web.objects
Class WebNotificationAbstract
- java.lang.Object
-
- com.microstrategy.web.objects.WebNotificationAbstract
-
- All Implemented Interfaces:
WebNotification
- Direct Known Subclasses:
WebPushNotificationImpl
public abstract class WebNotificationAbstract extends java.lang.Object implements WebNotification
-
-
Field Summary
Fields Modifier and Type Field Description protected java.util.Map<java.lang.String,java.lang.String>
extraProperties
protected WebObjectsFactory
factory
protected java.util.List<java.lang.String>
userIds
-
Method Summary
All Methods Instance Methods Concrete 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 notificationvoid
setUserIds(java.util.List<java.lang.String> userIds)
Set the list of user ids, which identifies the recipients of the notificationjava.lang.String
toString()
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface com.microstrategy.web.objects.WebNotification
send
-
-
-
-
Field Detail
-
userIds
protected java.util.List<java.lang.String> userIds
-
factory
protected WebObjectsFactory factory
-
extraProperties
protected java.util.Map<java.lang.String,java.lang.String> extraProperties
-
-
Method Detail
-
getUserIds
public java.util.List<java.lang.String> getUserIds()
Description copied from interface:WebNotification
Get the list of user ids, which identifies the recipients of the notification- Specified by:
getUserIds
in interfaceWebNotification
- Returns:
- list of user ids
-
setUserIds
public void setUserIds(java.util.List<java.lang.String> userIds)
Description copied from interface:WebNotification
Set the list of user ids, which identifies the recipients of the notification- Specified by:
setUserIds
in interfaceWebNotification
- Parameters:
userIds
- , list of user ids which identifies the recipients of the notification
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-