com.liferay.portal.kernel.notifications.UserNotificationDefinition.java Source code

Java tutorial

Introduction

Here is the source code for com.liferay.portal.kernel.notifications.UserNotificationDefinition.java

Source

/**
 * 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.PortalClassLoaderUtil;
import com.liferay.portal.kernel.util.ResourceBundleUtil;

import java.util.HashMap;
import java.util.Locale;
import java.util.Map;
import java.util.MissingResourceException;
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) {
        String description = ResourceBundleUtil.getString(getResourceBundle(locale), _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<Integer, UserNotificationDeliveryType> getUserNotificationDeliveryTypes() {

        return _userNotificationDeliveryTypes;
    }

    protected ResourceBundle getResourceBundle(Locale locale) {
        try {
            return ResourceBundleUtil.getBundle("content.Language", locale, getClass());
        } catch (MissingResourceException mre) {
            return ResourceBundleUtil.getBundle("content.Language", locale, PortalClassLoaderUtil.getClassLoader());
        }
    }

    private final long _classNameId;
    private final String _description;
    private final int _notificationType;
    private final String _portletId;
    private final Map<Integer, UserNotificationDeliveryType> _userNotificationDeliveryTypes = new HashMap<>();

}