Reputation: 236
I want to add custom user notifications in liferay 7. For this If I were using liferay 6.2 I would have to make entries like user-notification-definitions and user-notification-handler-class in liferay-portlet.xml . But in liferay I want to ask where to put these entries. Please help....thanx in advance..
Upvotes: 2
Views: 1517
Reputation: 116
You can also find similar properties here :
According to above link, user-notification-definitions is not supported though OSGI props.
Thanks,
Ankit
Upvotes: 2
Reputation: 48057
You can still use this file in legacy portlets (packaged in WAR files).
For OSGi Components, the settings from that file end up in the properties for your component. Those properties starting with javax.portlet
mirror the settings from portlet.xml
, those starting with com.liferay
mirror those that are documented for liferay-portlet.xml
Upvotes: 2