2013-08-20 19:02:15 -04:00
|
|
|
<?php
|
2013-08-30 19:41:24 -04:00
|
|
|
/**
|
2016-07-21 11:07:57 -04:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
|
*
|
2015-03-26 06:44:34 -04:00
|
|
|
* @author Bernhard Posselt <dev@bernhard-posselt.com>
|
|
|
|
|
* @author Jörn Friedrich Dreyer <jfd@butonic.de>
|
|
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2016-07-21 11:07:57 -04:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2015-03-26 06:44:34 -04:00
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
2013-08-30 19:41:24 -04:00
|
|
|
*
|
2015-03-26 06:44:34 -04:00
|
|
|
* @license AGPL-3.0
|
2013-08-30 19:41:24 -04:00
|
|
|
*
|
2015-03-26 06:44:34 -04:00
|
|
|
* 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.
|
2013-08-30 19:41:24 -04:00
|
|
|
*
|
2015-03-26 06:44:34 -04:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
2013-08-30 19:41:24 -04:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-03-26 06:44:34 -04:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU Affero General Public License for more details.
|
2013-08-30 19:41:24 -04:00
|
|
|
*
|
2015-03-26 06:44:34 -04:00
|
|
|
* You should have received a copy of the GNU Affero General Public License, version 3,
|
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2013-08-30 19:41:24 -04:00
|
|
|
*
|
|
|
|
|
*/
|
2015-02-26 05:37:37 -05:00
|
|
|
|
2013-08-20 19:02:15 -04:00
|
|
|
namespace OCP\AppFramework;
|
|
|
|
|
|
2013-08-31 15:34:29 -04:00
|
|
|
use OCP\IContainer;
|
2013-08-20 19:02:15 -04:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Class IAppContainer
|
|
|
|
|
* @package OCP\AppFramework
|
|
|
|
|
*
|
|
|
|
|
* This container interface provides short cuts for app developers to access predefined app service.
|
2015-04-16 11:00:08 -04:00
|
|
|
* @since 6.0.0
|
2013-08-20 19:02:15 -04:00
|
|
|
*/
|
2014-12-16 13:07:14 -05:00
|
|
|
interface IAppContainer extends IContainer {
|
2013-08-20 19:02:15 -04:00
|
|
|
|
2013-09-25 04:30:48 -04:00
|
|
|
/**
|
|
|
|
|
* used to return the appname of the set application
|
|
|
|
|
* @return string the name of your application
|
2015-04-16 11:00:08 -04:00
|
|
|
* @since 6.0.0
|
2013-09-25 04:30:48 -04:00
|
|
|
*/
|
2017-07-22 15:10:16 -04:00
|
|
|
public function getAppName();
|
2013-09-25 04:30:48 -04:00
|
|
|
|
2013-08-20 19:02:15 -04:00
|
|
|
/**
|
2013-08-31 15:34:29 -04:00
|
|
|
* @return \OCP\IServerContainer
|
2015-04-16 11:00:08 -04:00
|
|
|
* @since 6.0.0
|
2013-08-20 19:02:15 -04:00
|
|
|
*/
|
2017-07-22 15:10:16 -04:00
|
|
|
public function getServer();
|
2013-09-25 04:30:48 -04:00
|
|
|
|
|
|
|
|
/**
|
2014-04-09 17:59:57 -04:00
|
|
|
* @param string $middleWare
|
2013-09-25 04:30:48 -04:00
|
|
|
* @return boolean
|
2015-04-16 11:00:08 -04:00
|
|
|
* @since 6.0.0
|
2013-09-25 04:30:48 -04:00
|
|
|
*/
|
2017-07-22 15:10:16 -04:00
|
|
|
public function registerMiddleWare($middleWare);
|
2013-10-06 18:33:54 -04:00
|
|
|
|
2015-07-22 07:04:56 -04:00
|
|
|
/**
|
|
|
|
|
* Register a capability
|
|
|
|
|
*
|
|
|
|
|
* @param string $serviceName e.g. 'OCA\Files\Capabilities'
|
|
|
|
|
* @since 8.2.0
|
|
|
|
|
*/
|
|
|
|
|
public function registerCapability($serviceName);
|
2013-08-20 19:02:15 -04:00
|
|
|
}
|