* * @copyright Copyright (c) 2015, ownCloud, Inc. * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License, version 3, * as published by the Free Software Foundation. * * This program 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 Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License, version 3, * along with this program. If not, see * */ namespace OC\Notification; /** * Interface IAction * * @package OC\Notification * @since 8.2.0 * * DEVELOPER NOTE: * The notification api is experimental only in 8.2.0! Do not start using it, * if you can not prepare an update for the next version afterwards. */ interface IAction { /** * @param string $label * @return $this * @throws \InvalidArgumentException if the label is invalid * @since 8.2.0 */ public function setLabel($label); /** * @return string * @since 8.2.0 */ public function getLabel(); /** * @param string $label * @return $this * @throws \InvalidArgumentException if the label is invalid * @since 8.2.0 */ public function setParsedLabel($label); /** * @return string * @since 8.2.0 */ public function getParsedLabel(); /** * @param string $link * @param string $requestType * @return $this * @throws \InvalidArgumentException if the link is invalid * @since 8.2.0 */ public function setLink($link, $requestType); /** * @return string * @since 8.2.0 */ public function getLink(); /** * @return string * @since 8.2.0 */ public function getRequestType(); /** * @param string $icon * @return $this * @throws \InvalidArgumentException if the icon is invalid * @since 8.2.0 */ public function setIcon($icon); /** * @return string * @since 8.2.0 */ public function getIcon(); /** * @return bool * @since 8.2.0 */ public function isValid(); /** * @return bool * @since 8.2.0 */ public function isValidParsed(); }