public class NotificationService extends DefaultComponent implements NotificationManager
| Modifier and Type | Field and Description |
|---|---|
protected DocumentViewCodecManager |
docLocator |
protected EmailHelper |
emailHelper |
protected static String |
GENERAL_SETTINGS_EP |
protected GeneralSettingsDescriptor |
generalSettings |
protected Map<String,NotificationListenerHook> |
hookListeners |
static ComponentName |
NAME |
protected static String |
NOTIFICATION_HOOK_EP |
protected static String |
NOTIFICATION_VETO_EP |
protected NotificationRegistry |
notificationRegistry |
protected static String |
NOTIFICATIONS_EP |
protected NotificationListenerVetoRegistry |
notificationVetoRegistry |
protected EventProducer |
producer |
static String |
SUBSCRIPTION_NAME |
protected static String |
TEMPLATES_EP |
protected static Map<String,URL> |
TEMPLATES_MAP |
lastModified| 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.
|
protected void |
doFireEvent(Event event) |
<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<DocumentModel> |
getSubscribedDocuments(String prefixedPrincipalName)
Returns the list of live docs the user is subscribed to.
|
List<String> |
getSubscribers(String notification,
DocumentModel doc)
Gets the users that subscribed to a notification on a certain document.
|
List<String> |
getSubscribers(String notification,
String docId)
Deprecated.
since 7.3
|
List<String> |
getSubscriptionsForUserOnDocument(String username,
DocumentModel doc)
Gets the notifications for which a user subscribed for a certain document.
|
List<String> |
getSubscriptionsForUserOnDocument(String username,
String docId)
Deprecated.
since 7.3
|
static URL |
getTemplateURL(String name) |
List<String> |
getUsersSubscribedToNotificationOnDocument(String notification,
DocumentModel doc)
Gets all users and groups that subscribed to a notification on a document This is used in management of
subscritptions.
|
List<String> |
getUsersSubscribedToNotificationOnDocument(String notification,
String docId)
Deprecated.
|
void |
registerExtension(Extension extension)
Registers the given extension.
|
protected void |
registerGeneralSettings(GeneralSettingsDescriptor desc) |
void |
removeSubscription(String username,
String notification,
DocumentModel doc)
Called when a user cancels his notification.
|
void |
removeSubscription(String username,
String notification,
String docId)
Called when a user cancels his notification.
|
void |
removeSubscriptions(String username,
List<String> notifications,
DocumentModel doc) |
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, setModifiedNow, unregisterContributionpublic static final ComponentName NAME
public static final String SUBSCRIPTION_NAME
protected static final String NOTIFICATIONS_EP
protected static final String TEMPLATES_EP
protected static final String GENERAL_SETTINGS_EP
protected static final String NOTIFICATION_HOOK_EP
protected static final String NOTIFICATION_VETO_EP
protected static final Map<String,URL> TEMPLATES_MAP
protected EmailHelper emailHelper
protected GeneralSettingsDescriptor generalSettings
protected NotificationRegistry notificationRegistry
protected DocumentViewCodecManager docLocator
protected final Map<String,NotificationListenerHook> hookListeners
protected NotificationListenerVetoRegistry notificationVetoRegistry
protected EventProducer producer
public NotificationService()
public <T> T getAdapter(Class<T> adapter)
Adaptablenull
if no such object can be found.getAdapter in interface AdaptablegetAdapter in class DefaultComponentadapter - the adapter class to look upnull if this object does not have an adapter for
the given classpublic void activate(ComponentContext context)
ComponentThis method is called by the runtime when a component is activated.
activate in interface Componentactivate in class DefaultComponentcontext - the runtime contextpublic void deactivate(ComponentContext context)
ComponentThis method is called by the runtime when a component is deactivated.
deactivate in interface Componentdeactivate in class DefaultComponentcontext - the runtime contextpublic void registerExtension(Extension extension)
ExtensibleregisterExtension in interface ExtensibleregisterExtension in class DefaultComponentextension - the extension to registerprotected void registerGeneralSettings(GeneralSettingsDescriptor desc)
public void unregisterExtension(Extension extension)
ExtensibleunregisterExtension in interface ExtensibleunregisterExtension in class DefaultComponentextension - the extension to unregisterpublic NotificationRegistry getNotificationRegistry()
NotificationManagergetNotificationRegistry in interface NotificationManagerpublic NotificationListenerVetoRegistry getNotificationListenerVetoRegistry()
@Deprecated public List<String> getSubscribers(String notification, String docId)
NotificationManagergetSubscribers in interface NotificationManagergetSubscribers(String, DocumentModel)public List<String> getSubscribers(String notification, DocumentModel doc)
NotificationManagergetSubscribers in interface NotificationManager@Deprecated public List<String> getSubscriptionsForUserOnDocument(String username, String docId)
NotificationManagergetSubscriptionsForUserOnDocument in interface NotificationManagergetSubscriptionsForUserOnDocument(String, DocumentModel)public List<String> getSubscriptionsForUserOnDocument(String username, DocumentModel doc)
NotificationManagergetSubscriptionsForUserOnDocument in interface NotificationManagerpublic void addSubscription(String username, String notification, DocumentModel doc, Boolean sendConfirmationEmail, NuxeoPrincipal principal, String notificationName)
NotificationManageraddSubscription in interface NotificationManagerpublic void addSubscriptions(String username, DocumentModel doc, Boolean sendConfirmationEmail, NuxeoPrincipal principal)
addSubscriptions in interface NotificationManagerpublic void removeSubscriptions(String username, List<String> notifications, String docId)
removeSubscriptions in interface NotificationManagerpublic void removeSubscriptions(String username, List<String> notifications, DocumentModel doc)
removeSubscriptions in interface NotificationManagerprotected void doFireEvent(Event event)
public void removeSubscription(String username, String notification, String docId)
NotificationManagerremoveSubscription in interface NotificationManagerpublic void removeSubscription(String username, String notification, DocumentModel doc)
NotificationManagerremoveSubscription in interface NotificationManager@Deprecated public List<String> getUsersSubscribedToNotificationOnDocument(String notification, String docId)
getUsersSubscribedToNotificationOnDocument in interface NotificationManagernotification - docId - getSubscribers(String, DocumentModel)public static URL getTemplateURL(String name)
public String getServerUrlPrefix()
public String getEMailSubjectPrefix()
public String getMailSessionJndiName()
public Notification getNotificationByName(String selectedNotification)
NotificationManagergetNotificationByName in interface NotificationManagerpublic void sendNotification(String notificationName, Map<String,Object> infoMap, String userPrincipal)
NotificationManagerThe 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 NotificationManagernotificationName - name of notificationinfoMap - data used to compose the notification bodyuserPrincipal - recipient used to get the adress(es) to send emailspublic void sendDocumentByMail(DocumentModel doc, String freemarkerTemplateName, String subject, String comment, NuxeoPrincipal sender, List<String> sendTo)
NotificationManagersendDocumentByMail in interface NotificationManagerpublic List<Notification> getNotificationsForSubscriptions(String parentType)
getNotificationsForSubscriptions in interface NotificationManagerpublic List<Notification> getNotificationsForEvents(String eventId)
getNotificationsForEvents in interface NotificationManagerpublic EmailHelper getEmailHelper()
public void setEmailHelper(EmailHelper emailHelper)
public Set<String> getNotificationEventNames()
NotificationManagergetNotificationEventNames in interface NotificationManagerpublic Collection<NotificationListenerHook> getListenerHooks()
public Collection<NotificationListenerVeto> getNotificationVetos()
public List<String> getUsersSubscribedToNotificationOnDocument(String notification, DocumentModel doc)
NotificationManagergetUsersSubscribedToNotificationOnDocument in interface NotificationManagerpublic List<DocumentModel> getSubscribedDocuments(String prefixedPrincipalName)
NotificationManagergetSubscribedDocuments in interface NotificationManagerCopyright © 2016 Nuxeo SA. All rights reserved.