2 namespace wcf\system\user\notification\object\type;
3 use wcf\data\IDatabaseObjectProcessor;
4 use wcf\system\user\notification\object\IUserNotificationObject;
7 * This interface defines the basic methods every notification object type should implement.
9 * @author Marcel Werk, Oliver Kliebisch
10 * @copyright 2001-2015 WoltLab GmbH, Oliver Kliebisch
11 * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
12 * @package com.woltlab.wcf
13 * @subpackage system.user.notification.object.type
14 * @category Community Framework
16 interface IUserNotificationObjectType extends IDatabaseObjectProcessor {
18 * Gets notification objects by their IDs.
20 * @param integer[] $objectIDs
21 * @return IUserNotificationObject[]
23 public function getObjectsByIDs(array $objectIDs);