Class NotificationAddress
- java.lang.Object
-
- org.silverpeas.core.notification.user.client.NotificationAddress
-
public class NotificationAddress extends Object
A notification address is an address to which a user can receive the notification messages that are addressed to him. Such address is always related to a given notification channel (seeNotifChannel
) and it is defined by some properties: name, channel identifier, user identifier, user address itself, and usage. The notification address is mainly used to represent a custom address of a given user; therefore it doesn't concern the built-in addresses (seeBuiltInNotifAddress
- Author:
- mmoquillon
-
-
Constructor Summary
Constructors Constructor Description NotificationAddress()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getAddress()
String
getChannelId()
String
getId()
String
getName()
String
getUsage()
String
getUserId()
NotificationAddress
setAddress(String address)
NotificationAddress
setChannelId(String channelId)
NotificationAddress
setId(String id)
NotificationAddress
setName(String name)
NotificationAddress
setUsage(String usage)
NotificationAddress
setUserId(String userId)
-
-
-
Method Detail
-
getId
public String getId()
-
setId
public NotificationAddress setId(String id)
-
getName
public String getName()
-
setName
public NotificationAddress setName(String name)
-
getChannelId
public String getChannelId()
-
setChannelId
public NotificationAddress setChannelId(String channelId)
-
getUserId
public String getUserId()
-
setUserId
public NotificationAddress setUserId(String userId)
-
getUsage
public String getUsage()
-
setUsage
public NotificationAddress setUsage(String usage)
-
getAddress
public String getAddress()
-
setAddress
public NotificationAddress setAddress(String address)
-
-