com.liferay.portal.kernel.notifications.UserNotificationDefinition Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of com.liferay.portal.kernel Show documentation
Show all versions of com.liferay.portal.kernel Show documentation
Contains interfaces for the portal services. Interfaces are only loaded by the global class loader and are shared by all plugins.
/**
* Copyright (c) 2000-present Liferay, Inc. All rights reserved.
*
* This library is free software; you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License as published by the Free
* Software Foundation; either version 2.1 of the License, or (at your option)
* any later version.
*
* This library is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
* details.
*/
package com.liferay.portal.kernel.notifications;
import com.liferay.portal.kernel.util.ResourceBundleUtil;
import java.util.HashMap;
import java.util.Locale;
import java.util.Map;
import java.util.ResourceBundle;
/**
* @author Jonathan Lee
*/
public class UserNotificationDefinition {
public static final int NOTIFICATION_TYPE_ADD_ENTRY = 0;
public static final int NOTIFICATION_TYPE_UPDATE_ENTRY = 1;
public UserNotificationDefinition(
String portletId, long classNameId, int notificationType,
String description) {
_portletId = portletId;
_classNameId = classNameId;
_notificationType = notificationType;
_description = description;
}
public void addUserNotificationDeliveryType(
UserNotificationDeliveryType userNotificationDeliveryType) {
_userNotificationDeliveryTypes.put(
userNotificationDeliveryType.getType(),
userNotificationDeliveryType);
}
public long getClassNameId() {
return _classNameId;
}
public String getDescription(Locale locale) {
ResourceBundle resourceBundle = ResourceBundleUtil.getBundle(
"content.Language", locale, getClass());
String description = ResourceBundleUtil.getString(
resourceBundle, _description);
if (description != null) {
return description;
}
return _description;
}
public int getNotificationType() {
return _notificationType;
}
public String getPortletId() {
return _portletId;
}
public UserNotificationDeliveryType getUserNotificationDeliveryType(
int deliveryType) {
return _userNotificationDeliveryTypes.get(deliveryType);
}
public Map
getUserNotificationDeliveryTypes() {
return _userNotificationDeliveryTypes;
}
private final long _classNameId;
private final String _description;
private final int _notificationType;
private final String _portletId;
private final Map
_userNotificationDeliveryTypes = new HashMap<>();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy