NotificationItem.java 1.02 KB
Newer Older
Alexander Ivanov's avatar
Alexander Ivanov committed
1 2
/**
 * Copyright (c) 2013, Redsolution LTD. All rights reserved.
3
 *
Alexander Ivanov's avatar
Alexander Ivanov committed
4 5
 * This file is part of Xabber project; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License, Version 3.
6
 *
Alexander Ivanov's avatar
Alexander Ivanov committed
7 8 9 10
 * Xabber 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 General Public License for more details.
11
 *
Alexander Ivanov's avatar
Alexander Ivanov committed
12 13 14 15 16 17 18 19 20
 * You should have received a copy of the GNU General Public License,
 * along with this program. If not, see http://www.gnu.org/licenses/.
 */
package com.xabber.android.data.notification;

import android.content.Intent;

/**
 * Notification to be displayed.
21
 *
Alexander Ivanov's avatar
Alexander Ivanov committed
22 23 24 25
 * @author alexander.ivanov
 */
public interface NotificationItem {

26 27 28 29
    /**
     * @return Intent to launch activity.
     */
    Intent getIntent();
Alexander Ivanov's avatar
Alexander Ivanov committed
30

31 32 33 34
    /**
     * @return Title for notification bar.
     */
    String getTitle();
Alexander Ivanov's avatar
Alexander Ivanov committed
35

36 37 38 39
    /**
     * @return Text for notification bar.
     */
    String getText();
Alexander Ivanov's avatar
Alexander Ivanov committed
40 41

}