com.liferay.wiki.web.internal.notifications.WikiAddEntryUserNotificationDefinition Maven / Gradle / Ivy
/**
* SPDX-FileCopyrightText: (c) 2000 Liferay, Inc. https://liferay.com
* SPDX-License-Identifier: LGPL-2.1-or-later OR LicenseRef-Liferay-DXP-EULA-2.0.0-2023-06
*/
package com.liferay.wiki.web.internal.notifications;
import com.liferay.portal.kernel.model.UserNotificationDeliveryConstants;
import com.liferay.portal.kernel.notifications.UserNotificationDefinition;
import com.liferay.portal.kernel.notifications.UserNotificationDeliveryType;
import com.liferay.wiki.constants.WikiPortletKeys;
import org.osgi.service.component.annotations.Component;
/**
* @author Iván Zaera
*/
@Component(
property = "javax.portlet.name=" + WikiPortletKeys.WIKI,
service = UserNotificationDefinition.class
)
public class WikiAddEntryUserNotificationDefinition
extends UserNotificationDefinition {
public WikiAddEntryUserNotificationDefinition() {
super(
WikiPortletKeys.WIKI, 0,
UserNotificationDefinition.NOTIFICATION_TYPE_ADD_ENTRY,
"receive-a-notification-when-someone-adds-a-new-wiki-page-in-a-" +
"wiki-you-are-subscribed-to");
addUserNotificationDeliveryType(
new UserNotificationDeliveryType(
"email", UserNotificationDeliveryConstants.TYPE_EMAIL, true,
true));
addUserNotificationDeliveryType(
new UserNotificationDeliveryType(
"website", UserNotificationDeliveryConstants.TYPE_WEBSITE, true,
true));
}
}