public class NotificationService extends DefaultComponent implements NotificationManager
Modifier and Type | Field and Description |
---|---|
static ComponentName |
NAME |
static String |
SUBSCRIPTION_NAME |
Constructor and Description |
---|
NotificationService() |
Modifier and Type | Method and Description |
---|---|
void |
activate(ComponentContext context)
Activates the component.
|
void |
addSubscription(String username,
String notification,
DocumentModel doc,
Boolean sendConfirmationEmail,
NuxeoPrincipal principal,
String notificationName)
Called when a user subscribes to a notification.
|
void |
addSubscriptions(String username,
DocumentModel doc,
Boolean sendConfirmationEmail,
NuxeoPrincipal principal) |
void |
deactivate(ComponentContext context)
Deactivates the component.
|
<T> T |
getAdapter(Class<T> adapter)
Returns an object which is an instance of the given class
associated with this object.
|
EmailHelper |
getEmailHelper() |
String |
getEMailSubjectPrefix() |
Collection<NotificationListenerHook> |
getListenerHooks() |
String |
getMailSessionJndiName() |
Notification |
getNotificationByName(String selectedNotification)
Returns a notification with all data loaded (label, etc).
|
Set<String> |
getNotificationEventNames()
Gets the list of event names used by notifications.
|
NotificationListenerVetoRegistry |
getNotificationListenerVetoRegistry() |
NotificationRegistry |
getNotificationRegistry()
Returns the notification manager.
|
List<Notification> |
getNotificationsForEvents(String eventId) |
List<Notification> |
getNotificationsForSubscriptions(String parentType) |
Collection<NotificationListenerVeto> |
getNotificationVetos() |
String |
getServerUrlPrefix() |
List<String> |
getSubscribers(String notification,
String docId)
Gets the users that subscribed to a notification on a certain document.
|
List<String> |
getSubscriptionsForUserOnDocument(String username,
String docId)
Gets the notifications for which a user subscribed for a certain
document.
|
static URL |
getTemplateURL(String name) |
List<String> |
getUsersSubscribedToNotificationOnDocument(String notification,
String docId)
Gets all users and groups that subscribed to a notification on a document
This is used in management of subscritptions.
|
void |
registerExtension(Extension extension)
Registers the given extension.
|
void |
removeSubscription(String username,
String notification,
String docId)
Called when a user cancels his notification.
|
void |
removeSubscriptions(String username,
List<String> notifications,
String docId) |
void |
sendDocumentByMail(DocumentModel doc,
String freemarkerTemplateName,
String subject,
String comment,
NuxeoPrincipal sender,
List<String> sendTo)
Sends an e-mail directly.
|
void |
sendNotification(String notificationName,
Map<String,Object> infoMap,
String userPrincipal)
Directly sends a notification to the principal, using the data provided
in the map
|
void |
setEmailHelper(EmailHelper emailHelper) |
void |
unregisterExtension(Extension extension)
Unregisters the given extension.
|
applicationStarted, getApplicationStartedOrder, getLastModified, registerContribution, setLastModified, unregisterContribution
public static final ComponentName NAME
public static final String SUBSCRIPTION_NAME
public <T> T getAdapter(Class<T> adapter)
Adaptable
null
if
no such object can be found.getAdapter
in interface Adaptable
getAdapter
in class DefaultComponent
adapter
- the adapter class to look upnull
if this object does not
have an adapter for the given classpublic void activate(ComponentContext context) throws Exception
Component
This method is called by the runtime when a component is activated.
activate
in interface Component
activate
in class DefaultComponent
context
- the runtime contextException
- if an error occurs during activationpublic void deactivate(ComponentContext context) throws Exception
Component
This method is called by the runtime when a component is deactivated.
deactivate
in interface Component
deactivate
in class DefaultComponent
context
- the runtime contextException
- if an error occurs during activationpublic void registerExtension(Extension extension) throws Exception
Extensible
registerExtension
in interface Extensible
registerExtension
in class DefaultComponent
extension
- the extension to registerException
- if any error occurspublic void unregisterExtension(Extension extension) throws Exception
Extensible
unregisterExtension
in interface Extensible
unregisterExtension
in class DefaultComponent
extension
- the extension to unregisterException
- if any error occurspublic NotificationRegistry getNotificationRegistry()
NotificationManager
getNotificationRegistry
in interface NotificationManager
public NotificationListenerVetoRegistry getNotificationListenerVetoRegistry()
public List<String> getSubscribers(String notification, String docId) throws ClientException
NotificationManager
getSubscribers
in interface NotificationManager
ClientException
public List<String> getSubscriptionsForUserOnDocument(String username, String docId) throws ClassNotFoundException, ClientException
NotificationManager
getSubscriptionsForUserOnDocument
in interface NotificationManager
ClassNotFoundException
ClientException
public void addSubscription(String username, String notification, DocumentModel doc, Boolean sendConfirmationEmail, NuxeoPrincipal principal, String notificationName) throws ClientException
NotificationManager
addSubscription
in interface NotificationManager
ClientException
public void addSubscriptions(String username, DocumentModel doc, Boolean sendConfirmationEmail, NuxeoPrincipal principal) throws ClientException
addSubscriptions
in interface NotificationManager
ClientException
public void removeSubscriptions(String username, List<String> notifications, String docId) throws ClientException
removeSubscriptions
in interface NotificationManager
ClientException
public void removeSubscription(String username, String notification, String docId) throws ClientException
NotificationManager
removeSubscription
in interface NotificationManager
ClientException
public List<String> getUsersSubscribedToNotificationOnDocument(String notification, String docId) throws ClientException
NotificationManager
getUsersSubscribedToNotificationOnDocument
in interface NotificationManager
ClientException
public String getServerUrlPrefix()
public String getEMailSubjectPrefix()
public String getMailSessionJndiName()
public Notification getNotificationByName(String selectedNotification)
NotificationManager
getNotificationByName
in interface NotificationManager
public void sendNotification(String notificationName, Map<String,Object> infoMap, String userPrincipal) throws ClientException
NotificationManager
The map should contain at least the userName of the user calling the method stored under the key "author".
infoMap should also contain all the variables that should be used to make-up the body of the notifications message.
sendNotification
in interface NotificationManager
notificationName
- name of notificationinfoMap
- data used to compose the notification bodyuserPrincipal
- recipient used to get the adress(es) to send emailsClientException
public void sendDocumentByMail(DocumentModel doc, String freemarkerTemplateName, String subject, String comment, NuxeoPrincipal sender, List<String> sendTo)
NotificationManager
sendDocumentByMail
in interface NotificationManager
public List<Notification> getNotificationsForSubscriptions(String parentType)
getNotificationsForSubscriptions
in interface NotificationManager
public List<Notification> getNotificationsForEvents(String eventId)
getNotificationsForEvents
in interface NotificationManager
public EmailHelper getEmailHelper()
public void setEmailHelper(EmailHelper emailHelper)
public Set<String> getNotificationEventNames()
NotificationManager
getNotificationEventNames
in interface NotificationManager
public Collection<NotificationListenerHook> getListenerHooks()
public Collection<NotificationListenerVeto> getNotificationVetos()
Copyright © 2013 Nuxeo SA. All Rights Reserved.