555020fb372308723476133abc9bcfc93ac9a87c
[GitHub/WoltLab/WCF.git] /
1 <?php
2 namespace wcf\system\user\notification\object;
3
4 /**
5 * This interface should be implemented by every object which is part of a notification.
6 *
7 * @author Marcel Werk, Oliver Kliebisch
8 * @copyright 2001-2011 WoltLab GmbH, Oliver Kliebisch
9 * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
10 * @package com.woltlab.wcf.notification
11 * @subpackage system.user.notification.object
12 * @category Community Framework
13 */
14 interface UserNotificationObject {
15 /**
16 * Returns the ID of this object.
17 *
18 * @return integer
19 */
20 public function getObjectID();
21
22 /**
23 * Returns the title of this object.
24 *
25 * @return string
26 */
27 public function getTitle();
28
29 /**
30 * Returns the url of this object.
31 *
32 * @return string
33 */
34 public function getURL();
35 }