2013-08-20 18:58:15 -04:00
|
|
|
<?php
|
2020-07-17 04:17:18 -04:00
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
2013-08-30 19:41:24 -04:00
|
|
|
/**
|
2016-07-21 11:07:57 -04:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
|
*
|
2016-05-26 13:56:05 -04:00
|
|
|
* @author Arthur Schiwon <blizzz@arthur-schiwon.de>
|
2015-03-26 06:44:34 -04:00
|
|
|
* @author Bart Visscher <bartv@thisnet.nl>
|
|
|
|
|
* @author Bernhard Posselt <dev@bernhard-posselt.com>
|
2019-12-03 13:57:53 -05:00
|
|
|
* @author Bjoern Schiessle <bjoern@schiessle.org>
|
2016-05-26 13:56:05 -04:00
|
|
|
* @author Björn Schießle <bjoern@schiessle.org>
|
2015-03-26 06:44:34 -04:00
|
|
|
* @author Christopher Schäpers <kondou@ts.unde.re>
|
2019-12-03 13:57:53 -05:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
|
|
|
|
* @author Georg Ehrke <oc.list@georgehrke.com>
|
2016-07-21 11:07:57 -04:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2015-03-26 06:44:34 -04:00
|
|
|
* @author Jörn Friedrich Dreyer <jfd@butonic.de>
|
2016-05-26 13:56:05 -04:00
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
2015-03-26 06:44:34 -04:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2016-07-21 12:13:36 -04:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
2016-01-12 09:02:16 -05:00
|
|
|
* @author Robin McCorkell <robin@mccorkell.me.uk>
|
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>
|
|
|
|
|
* @author Thomas Tanghus <thomas@tanghus.net>
|
2016-01-12 09:02:16 -05:00
|
|
|
* @author Vincent Petry <pvince81@owncloud.com>
|
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,
|
2019-12-03 13:57:53 -05:00
|
|
|
* 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-31 15:34:29 -04:00
|
|
|
namespace OCP;
|
2020-04-09 05:48:10 -04:00
|
|
|
|
2018-04-18 10:05:11 -04:00
|
|
|
use OCP\Federation\ICloudFederationFactory;
|
|
|
|
|
use OCP\Federation\ICloudFederationProviderManager;
|
2019-11-22 14:52:10 -05:00
|
|
|
use OCP\Log\ILogFactory;
|
2016-01-28 08:33:02 -05:00
|
|
|
use OCP\Security\IContentSecurityPolicyManager;
|
2020-07-17 04:17:18 -04:00
|
|
|
use Psr\Container\ContainerInterface;
|
2015-08-14 09:40:15 -04:00
|
|
|
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
|
2013-08-20 18:58:15 -04:00
|
|
|
|
|
|
|
|
/**
|
2020-07-17 04:17:18 -04:00
|
|
|
* This is a tagging interface for the server container
|
|
|
|
|
*
|
|
|
|
|
* The interface currently extends IContainer, but this interface is deprecated as of Nextcloud 20,
|
|
|
|
|
* thus this interface won't extend it anymore once that was removed. So migrate to the ContainerInterface
|
|
|
|
|
* only.
|
2013-08-20 18:58:15 -04:00
|
|
|
*
|
2015-04-16 11:00:08 -04:00
|
|
|
* @since 6.0.0
|
2013-08-20 18:58:15 -04:00
|
|
|
*/
|
2020-07-17 04:17:18 -04:00
|
|
|
interface IServerContainer extends ContainerInterface, IContainer {
|
2013-08-20 18:58:15 -04:00
|
|
|
|
2017-10-31 12:06:01 -04:00
|
|
|
/**
|
|
|
|
|
* The calendar manager will act as a broker between consumers for calendar information and
|
|
|
|
|
* providers which actual deliver the calendar information.
|
|
|
|
|
*
|
|
|
|
|
* @return \OCP\Calendar\IManager
|
|
|
|
|
* @since 13.0.0
|
2020-07-16 12:59:56 -04:00
|
|
|
* @deprecated 20.0.0 have it injected or fetch it through \Psr\Container\ContainerInterface::get
|
2017-10-31 12:06:01 -04:00
|
|
|
*/
|
|
|
|
|
public function getCalendarManager();
|
|
|
|
|
|
2018-06-18 08:33:25 -04:00
|
|
|
/**
|
|
|
|
|
* The calendar resource backend manager will act as a broker between consumers
|
|
|
|
|
* for calendar resource information an providers which actual deliver the room information.
|
|
|
|
|
*
|
|
|
|
|
* @return \OCP\Calendar\Resource\IBackend
|
|
|
|
|
* @since 14.0.0
|
2020-07-16 12:59:56 -04:00
|
|
|
* @deprecated 20.0.0 have it injected or fetch it through \Psr\Container\ContainerInterface::get
|
2018-06-18 08:33:25 -04:00
|
|
|
*/
|
|
|
|
|
public function getCalendarResourceBackendManager();
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* The calendar room backend manager will act as a broker between consumers
|
|
|
|
|
* for calendar room information an providers which actual deliver the room information.
|
|
|
|
|
*
|
|
|
|
|
* @return \OCP\Calendar\Room\IBackend
|
|
|
|
|
* @since 14.0.0
|
2020-07-16 12:59:56 -04:00
|
|
|
* @deprecated 20.0.0 have it injected or fetch it through \Psr\Container\ContainerInterface::get
|
2018-06-18 08:33:25 -04:00
|
|
|
*/
|
|
|
|
|
public function getCalendarRoomBackendManager();
|
|
|
|
|
|
2013-08-26 17:48:18 -04:00
|
|
|
/**
|
2013-08-31 14:57:16 -04:00
|
|
|
* The contacts manager will act as a broker between consumers for contacts information and
|
|
|
|
|
* providers which actual deliver the contact information.
|
|
|
|
|
*
|
2013-08-31 15:34:29 -04:00
|
|
|
* @return \OCP\Contacts\IManager
|
2015-04-16 11:00:08 -04:00
|
|
|
* @since 6.0.0
|
2020-07-16 12:59:56 -04:00
|
|
|
* @deprecated 20.0.0 have it injected or fetch it through \Psr\Container\ContainerInterface::get
|
2013-08-26 17:48:18 -04:00
|
|
|
*/
|
2015-04-18 05:46:29 -04:00
|
|
|
public function getContactsManager();
|
2013-08-31 14:57:16 -04:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* The current request object holding all information about the request currently being processed
|
|
|
|
|
* is returned from this method.
|
|
|
|
|
* In case the current execution was not initiated by a web request null is returned
|
|
|
|
|
*
|
2015-04-01 06:13:49 -04:00
|
|
|
* @return \OCP\IRequest
|
2015-04-16 11:00:08 -04:00
|
|
|
* @since 6.0.0
|
2020-07-16 12:59:56 -04:00
|
|
|
* @deprecated 20.0.0 have it injected or fetch it through \Psr\Container\ContainerInterface::get
|
2013-08-31 14:57:16 -04:00
|
|
|
*/
|
2015-04-18 05:46:29 -04:00
|
|
|
public function getRequest();
|
2013-08-31 14:57:16 -04:00
|
|
|
|
2013-09-04 17:45:11 -04:00
|
|
|
/**
|
|
|
|
|
* Returns the preview manager which can create preview images for a given file
|
|
|
|
|
*
|
|
|
|
|
* @return \OCP\IPreview
|
2015-04-16 11:00:08 -04:00
|
|
|
* @since 6.0.0
|
2020-07-16 12:59:56 -04:00
|
|
|
* @deprecated 20.0.0 have it injected or fetch it through \Psr\Container\ContainerInterface::get
|
2013-09-04 17:45:11 -04:00
|
|
|
*/
|
2015-04-18 05:46:29 -04:00
|
|
|
public function getPreviewManager();
|
2013-09-15 16:24:57 -04:00
|
|
|
|
2013-09-17 18:37:00 -04:00
|
|
|
/**
|
|
|
|
|
* Returns the tag manager which can get and set tags for different object types
|
|
|
|
|
*
|
2013-09-24 11:10:01 -04:00
|
|
|
* @see \OCP\ITagManager::load()
|
|
|
|
|
* @return \OCP\ITagManager
|
2015-04-16 11:00:08 -04:00
|
|
|
* @since 6.0.0
|
2020-07-16 12:59:56 -04:00
|
|
|
* @deprecated 20.0.0 have it injected or fetch it through \Psr\Container\ContainerInterface::get
|
2013-09-17 18:37:00 -04:00
|
|
|
*/
|
2015-04-18 05:46:29 -04:00
|
|
|
public function getTagManager();
|
2013-09-17 18:37:00 -04:00
|
|
|
|
2013-09-15 16:24:57 -04:00
|
|
|
/**
|
|
|
|
|
* Returns the root folder of ownCloud's data directory
|
|
|
|
|
*
|
2015-04-28 03:36:29 -04:00
|
|
|
* @return \OCP\Files\IRootFolder
|
2015-06-05 11:30:45 -04:00
|
|
|
* @since 6.0.0 - between 6.0.0 and 8.0.0 this returned \OCP\Files\Folder
|
2020-07-16 12:59:56 -04:00
|
|
|
* @deprecated 20.0.0 have it injected or fetch it through \Psr\Container\ContainerInterface::get
|
2013-09-15 16:24:57 -04:00
|
|
|
*/
|
2015-04-18 05:46:29 -04:00
|
|
|
public function getRootFolder();
|
2013-09-15 16:24:57 -04:00
|
|
|
|
2013-09-18 06:34:10 -04:00
|
|
|
/**
|
|
|
|
|
* Returns a view to ownCloud's files folder
|
|
|
|
|
*
|
2014-08-31 05:16:40 -04:00
|
|
|
* @param string $userId user ID
|
2013-09-18 06:34:10 -04:00
|
|
|
* @return \OCP\Files\Folder
|
2015-04-16 11:00:08 -04:00
|
|
|
* @since 6.0.0 - parameter $userId was added in 8.0.0
|
2015-06-16 10:02:30 -04:00
|
|
|
* @see getUserFolder in \OCP\Files\IRootFolder
|
2020-07-16 12:59:56 -04:00
|
|
|
* @deprecated 20.0.0 have it injected or fetch it through \Psr\Container\ContainerInterface::get
|
2013-09-18 06:34:10 -04:00
|
|
|
*/
|
2015-04-18 05:46:29 -04:00
|
|
|
public function getUserFolder($userId = null);
|
2013-09-18 06:34:10 -04:00
|
|
|
|
2014-07-09 09:43:06 -04:00
|
|
|
/**
|
|
|
|
|
* Returns a user manager
|
|
|
|
|
*
|
|
|
|
|
* @return \OCP\IUserManager
|
2015-04-16 11:00:08 -04:00
|
|
|
* @since 8.0.0
|
2020-07-16 12:59:56 -04:00
|
|
|
* @deprecated 20.0.0 have it injected or fetch it through \Psr\Container\ContainerInterface::get
|
2014-07-09 09:43:06 -04:00
|
|
|
*/
|
2015-04-18 05:46:29 -04:00
|
|
|
public function getUserManager();
|
2014-07-09 09:43:06 -04:00
|
|
|
|
2014-07-16 08:25:31 -04:00
|
|
|
/**
|
|
|
|
|
* Returns a group manager
|
|
|
|
|
*
|
|
|
|
|
* @return \OCP\IGroupManager
|
2015-04-16 11:00:08 -04:00
|
|
|
* @since 8.0.0
|
2020-07-16 12:59:56 -04:00
|
|
|
* @deprecated 20.0.0 have it injected or fetch it through \Psr\Container\ContainerInterface::get
|
2014-07-16 08:25:31 -04:00
|
|
|
*/
|
2015-04-18 05:46:29 -04:00
|
|
|
public function getGroupManager();
|
2014-07-16 08:25:31 -04:00
|
|
|
|
2013-09-20 06:45:56 -04:00
|
|
|
/**
|
|
|
|
|
* Returns the user session
|
|
|
|
|
*
|
|
|
|
|
* @return \OCP\IUserSession
|
2015-04-16 11:00:08 -04:00
|
|
|
* @since 6.0.0
|
2020-07-16 12:59:56 -04:00
|
|
|
* @deprecated 20.0.0 have it injected or fetch it through \Psr\Container\ContainerInterface::get
|
2013-09-20 06:45:56 -04:00
|
|
|
*/
|
2015-04-18 05:46:29 -04:00
|
|
|
public function getUserSession();
|
2013-09-20 06:45:56 -04:00
|
|
|
|
2013-09-20 11:34:33 -04:00
|
|
|
/**
|
2013-11-26 18:35:36 -05:00
|
|
|
* Returns the navigation manager
|
|
|
|
|
*
|
2013-09-20 11:34:33 -04:00
|
|
|
* @return \OCP\INavigationManager
|
2015-04-16 11:00:08 -04:00
|
|
|
* @since 6.0.0
|
2020-07-16 12:59:56 -04:00
|
|
|
* @deprecated 20.0.0 have it injected or fetch it through \Psr\Container\ContainerInterface::get
|
2013-09-20 11:34:33 -04:00
|
|
|
*/
|
2015-04-18 05:46:29 -04:00
|
|
|
public function getNavigationManager();
|
2013-09-20 11:34:33 -04:00
|
|
|
|
2013-09-20 14:21:24 -04:00
|
|
|
/**
|
2013-11-26 18:35:36 -05:00
|
|
|
* Returns the config manager
|
|
|
|
|
*
|
2013-09-20 14:21:24 -04:00
|
|
|
* @return \OCP\IConfig
|
2015-04-16 11:00:08 -04:00
|
|
|
* @since 6.0.0
|
2020-07-16 12:59:56 -04:00
|
|
|
* @deprecated 20.0.0 have it injected or fetch it through \Psr\Container\ContainerInterface::get
|
2013-09-20 14:21:24 -04:00
|
|
|
*/
|
2015-04-18 05:46:29 -04:00
|
|
|
public function getConfig();
|
2013-09-20 14:21:24 -04:00
|
|
|
|
2014-11-04 10:05:31 -05:00
|
|
|
/**
|
|
|
|
|
* Returns a Crypto instance
|
|
|
|
|
*
|
|
|
|
|
* @return \OCP\Security\ICrypto
|
2015-04-16 11:00:08 -04:00
|
|
|
* @since 8.0.0
|
2020-07-16 12:59:56 -04:00
|
|
|
* @deprecated 20.0.0 have it injected or fetch it through \Psr\Container\ContainerInterface::get
|
2014-11-04 10:05:31 -05:00
|
|
|
*/
|
2015-04-18 05:46:29 -04:00
|
|
|
public function getCrypto();
|
2014-11-04 10:05:31 -05:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Returns a Hasher instance
|
|
|
|
|
*
|
|
|
|
|
* @return \OCP\Security\IHasher
|
2015-04-16 11:00:08 -04:00
|
|
|
* @since 8.0.0
|
2020-07-16 12:59:56 -04:00
|
|
|
* @deprecated 20.0.0 have it injected or fetch it through \Psr\Container\ContainerInterface::get
|
2014-11-04 10:05:31 -05:00
|
|
|
*/
|
2015-04-18 05:46:29 -04:00
|
|
|
public function getHasher();
|
2014-04-19 13:30:12 -04:00
|
|
|
|
2015-03-31 05:13:46 -04:00
|
|
|
/**
|
|
|
|
|
* Returns a SecureRandom instance
|
|
|
|
|
*
|
|
|
|
|
* @return \OCP\Security\ISecureRandom
|
2015-04-16 11:00:08 -04:00
|
|
|
* @since 8.1.0
|
2020-07-16 12:59:56 -04:00
|
|
|
* @deprecated 20.0.0 have it injected or fetch it through \Psr\Container\ContainerInterface::get
|
2015-03-31 05:13:46 -04:00
|
|
|
*/
|
2015-04-18 05:46:29 -04:00
|
|
|
public function getSecureRandom();
|
2015-03-31 05:13:46 -04:00
|
|
|
|
2015-08-24 11:13:16 -04:00
|
|
|
/**
|
|
|
|
|
* Returns a CredentialsManager instance
|
|
|
|
|
*
|
|
|
|
|
* @return \OCP\Security\ICredentialsManager
|
|
|
|
|
* @since 9.0.0
|
2020-07-16 12:59:56 -04:00
|
|
|
* @deprecated 20.0.0 have it injected or fetch it through \Psr\Container\ContainerInterface::get
|
2015-08-24 11:13:16 -04:00
|
|
|
*/
|
|
|
|
|
public function getCredentialsManager();
|
|
|
|
|
|
2014-02-07 07:42:18 -05:00
|
|
|
/**
|
|
|
|
|
* Returns the app config manager
|
|
|
|
|
*
|
|
|
|
|
* @return \OCP\IAppConfig
|
2015-04-16 11:00:08 -04:00
|
|
|
* @since 7.0.0
|
2020-07-16 12:59:56 -04:00
|
|
|
* @deprecated 20.0.0 have it injected or fetch it through \Psr\Container\ContainerInterface::get
|
2014-02-07 07:42:18 -05:00
|
|
|
*/
|
2015-04-18 05:46:29 -04:00
|
|
|
public function getAppConfig();
|
2014-02-07 07:42:18 -05:00
|
|
|
|
2015-09-25 03:05:12 -04:00
|
|
|
/**
|
|
|
|
|
* @return \OCP\L10N\IFactory
|
|
|
|
|
* @since 8.2.0
|
2020-07-16 12:59:56 -04:00
|
|
|
* @deprecated 20.0.0 have it injected or fetch it through \Psr\Container\ContainerInterface::get
|
2015-09-25 03:05:12 -04:00
|
|
|
*/
|
|
|
|
|
public function getL10NFactory();
|
|
|
|
|
|
2013-09-25 12:34:01 -04:00
|
|
|
/**
|
|
|
|
|
* get an L10N instance
|
2014-02-28 15:03:43 -05:00
|
|
|
* @param string $app appid
|
2014-08-31 04:20:00 -04:00
|
|
|
* @param string $lang
|
2013-09-25 12:34:01 -04:00
|
|
|
* @return \OCP\IL10N
|
2015-04-16 11:00:08 -04:00
|
|
|
* @since 6.0.0 - parameter $lang was added in 8.0.0
|
2020-07-16 12:59:56 -04:00
|
|
|
* @deprecated 20.0.0 have it injected or fetch it through \Psr\Container\ContainerInterface::get
|
2013-09-25 12:34:01 -04:00
|
|
|
*/
|
2015-04-18 05:46:29 -04:00
|
|
|
public function getL10N($app, $lang = null);
|
2013-09-25 12:34:01 -04:00
|
|
|
|
2015-03-30 05:49:03 -04:00
|
|
|
/**
|
|
|
|
|
* @return \OC\Encryption\Manager
|
2015-04-16 11:00:08 -04:00
|
|
|
* @since 8.1.0
|
2020-07-16 12:59:56 -04:00
|
|
|
* @deprecated 20.0.0 have it injected or fetch it through \Psr\Container\ContainerInterface::get
|
2015-03-30 05:49:03 -04:00
|
|
|
*/
|
2015-04-18 05:46:29 -04:00
|
|
|
public function getEncryptionManager();
|
2015-03-30 05:49:03 -04:00
|
|
|
|
2015-03-31 10:23:31 -04:00
|
|
|
/**
|
|
|
|
|
* @return \OC\Encryption\File
|
2015-04-16 11:00:08 -04:00
|
|
|
* @since 8.1.0
|
2020-07-16 12:59:56 -04:00
|
|
|
* @deprecated 20.0.0 have it injected or fetch it through \Psr\Container\ContainerInterface::get
|
2015-03-31 10:23:31 -04:00
|
|
|
*/
|
2015-04-18 05:46:29 -04:00
|
|
|
public function getEncryptionFilesHelper();
|
2015-03-31 10:23:31 -04:00
|
|
|
|
2015-03-30 05:49:03 -04:00
|
|
|
/**
|
|
|
|
|
* @return \OCP\Encryption\Keys\IStorage
|
2015-04-16 11:00:08 -04:00
|
|
|
* @since 8.1.0
|
2020-07-16 12:59:56 -04:00
|
|
|
* @deprecated 20.0.0 have it injected or fetch it through \Psr\Container\ContainerInterface::get
|
2015-03-30 05:49:03 -04:00
|
|
|
*/
|
2015-04-22 05:18:18 -04:00
|
|
|
public function getEncryptionKeyStorage();
|
2015-03-30 05:49:03 -04:00
|
|
|
|
2013-09-26 12:41:19 -04:00
|
|
|
/**
|
2013-11-26 18:35:36 -05:00
|
|
|
* Returns the URL generator
|
|
|
|
|
*
|
2013-09-26 12:41:19 -04:00
|
|
|
* @return \OCP\IURLGenerator
|
2015-04-16 11:00:08 -04:00
|
|
|
* @since 6.0.0
|
2020-07-16 12:59:56 -04:00
|
|
|
* @deprecated 20.0.0 have it injected or fetch it through \Psr\Container\ContainerInterface::get
|
2013-09-26 12:41:19 -04:00
|
|
|
*/
|
2015-04-18 05:46:29 -04:00
|
|
|
public function getURLGenerator();
|
2013-09-26 12:41:19 -04:00
|
|
|
|
2013-09-17 11:46:33 -04:00
|
|
|
/**
|
|
|
|
|
* Returns an ICache instance
|
|
|
|
|
*
|
|
|
|
|
* @return \OCP\ICache
|
2015-04-16 11:00:08 -04:00
|
|
|
* @since 6.0.0
|
2020-07-16 12:59:56 -04:00
|
|
|
* @deprecated 20.0.0 have it injected or fetch it through \Psr\Container\ContainerInterface::get
|
2013-09-17 11:46:33 -04:00
|
|
|
*/
|
2015-04-18 05:46:29 -04:00
|
|
|
public function getCache();
|
2013-09-17 11:46:33 -04:00
|
|
|
|
2014-01-06 07:11:38 -05:00
|
|
|
/**
|
2014-01-08 09:51:40 -05:00
|
|
|
* Returns an \OCP\CacheFactory instance
|
2014-01-06 07:11:38 -05:00
|
|
|
*
|
2014-01-24 10:01:19 -05:00
|
|
|
* @return \OCP\ICacheFactory
|
2015-04-16 11:00:08 -04:00
|
|
|
* @since 7.0.0
|
2020-07-16 12:59:56 -04:00
|
|
|
* @deprecated 20.0.0 have it injected or fetch it through \Psr\Container\ContainerInterface::get
|
2014-01-06 07:11:38 -05:00
|
|
|
*/
|
2015-04-18 05:46:29 -04:00
|
|
|
public function getMemCacheFactory();
|
2014-01-06 07:11:38 -05:00
|
|
|
|
2013-09-17 12:31:14 -04:00
|
|
|
/**
|
|
|
|
|
* Returns the current session
|
|
|
|
|
*
|
|
|
|
|
* @return \OCP\ISession
|
2015-04-16 11:00:08 -04:00
|
|
|
* @since 6.0.0
|
2020-07-16 12:59:56 -04:00
|
|
|
* @deprecated 20.0.0 have it injected or fetch it through \Psr\Container\ContainerInterface::get
|
2013-09-17 12:31:14 -04:00
|
|
|
*/
|
2015-04-18 05:46:29 -04:00
|
|
|
public function getSession();
|
2013-09-17 12:31:14 -04:00
|
|
|
|
2013-09-20 10:37:52 -04:00
|
|
|
/**
|
|
|
|
|
* Returns the activity manager
|
|
|
|
|
*
|
|
|
|
|
* @return \OCP\Activity\IManager
|
2015-04-16 11:00:08 -04:00
|
|
|
* @since 6.0.0
|
2020-07-16 12:59:56 -04:00
|
|
|
* @deprecated 20.0.0 have it injected or fetch it through \Psr\Container\ContainerInterface::get
|
2013-09-20 10:37:52 -04:00
|
|
|
*/
|
2015-04-18 05:46:29 -04:00
|
|
|
public function getActivityManager();
|
2013-09-20 10:37:52 -04:00
|
|
|
|
2013-09-20 08:33:45 -04:00
|
|
|
/**
|
|
|
|
|
* Returns the current session
|
|
|
|
|
*
|
|
|
|
|
* @return \OCP\IDBConnection
|
2015-04-16 11:00:08 -04:00
|
|
|
* @since 6.0.0
|
2020-07-16 12:59:56 -04:00
|
|
|
* @deprecated 20.0.0 have it injected or fetch it through \Psr\Container\ContainerInterface::get
|
2013-09-20 08:33:45 -04:00
|
|
|
*/
|
2015-04-18 05:46:29 -04:00
|
|
|
public function getDatabaseConnection();
|
2013-09-20 08:33:45 -04:00
|
|
|
|
2013-09-20 05:46:11 -04:00
|
|
|
/**
|
2013-11-26 18:35:36 -05:00
|
|
|
* Returns an avatar manager, used for avatar functionality
|
|
|
|
|
*
|
2013-11-22 06:34:37 -05:00
|
|
|
* @return \OCP\IAvatarManager
|
2015-04-16 11:00:08 -04:00
|
|
|
* @since 6.0.0
|
2020-07-16 12:59:56 -04:00
|
|
|
* @deprecated 20.0.0 have it injected or fetch it through \Psr\Container\ContainerInterface::get
|
2013-09-20 05:46:11 -04:00
|
|
|
*/
|
2015-04-18 05:46:29 -04:00
|
|
|
public function getAvatarManager();
|
2013-09-20 05:46:11 -04:00
|
|
|
|
2014-02-11 08:00:24 -05:00
|
|
|
/**
|
|
|
|
|
* Returns an job list for controlling background jobs
|
|
|
|
|
*
|
|
|
|
|
* @return \OCP\BackgroundJob\IJobList
|
2015-04-16 11:00:08 -04:00
|
|
|
* @since 7.0.0
|
2020-07-16 12:59:56 -04:00
|
|
|
* @deprecated 20.0.0 have it injected or fetch it through \Psr\Container\ContainerInterface::get
|
2014-02-11 08:00:24 -05:00
|
|
|
*/
|
2015-04-18 05:46:29 -04:00
|
|
|
public function getJobList();
|
2014-02-11 08:00:24 -05:00
|
|
|
|
2014-11-06 07:36:36 -05:00
|
|
|
/**
|
|
|
|
|
* Returns a logger instance
|
|
|
|
|
*
|
|
|
|
|
* @return \OCP\ILogger
|
2015-04-16 11:00:08 -04:00
|
|
|
* @since 8.0.0
|
2020-07-16 12:59:56 -04:00
|
|
|
* @deprecated 20.0.0 have it injected or fetch it through \Psr\Container\ContainerInterface::get
|
2014-11-06 07:36:36 -05:00
|
|
|
*/
|
2015-04-18 05:46:29 -04:00
|
|
|
public function getLogger();
|
2014-11-06 07:36:36 -05:00
|
|
|
|
2018-04-24 20:27:43 -04:00
|
|
|
/**
|
|
|
|
|
* returns a log factory instance
|
|
|
|
|
*
|
|
|
|
|
* @return ILogFactory
|
|
|
|
|
* @since 14.0.0
|
2020-07-16 12:59:56 -04:00
|
|
|
* @deprecated 20.0.0 have it injected or fetch it through \Psr\Container\ContainerInterface::get
|
2018-04-24 20:27:43 -04:00
|
|
|
*/
|
|
|
|
|
public function getLogFactory();
|
|
|
|
|
|
2014-03-10 09:04:58 -04:00
|
|
|
/**
|
|
|
|
|
* Returns a router for generating and matching urls
|
|
|
|
|
*
|
|
|
|
|
* @return \OCP\Route\IRouter
|
2015-04-16 11:00:08 -04:00
|
|
|
* @since 7.0.0
|
2020-07-16 12:59:56 -04:00
|
|
|
* @deprecated 20.0.0 have it injected or fetch it through \Psr\Container\ContainerInterface::get
|
2014-03-10 09:04:58 -04:00
|
|
|
*/
|
2015-04-18 05:46:29 -04:00
|
|
|
public function getRouter();
|
2014-06-05 19:17:02 -04:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Returns a search instance
|
|
|
|
|
*
|
|
|
|
|
* @return \OCP\ISearch
|
2015-04-16 11:00:08 -04:00
|
|
|
* @since 7.0.0
|
2020-06-22 04:57:40 -04:00
|
|
|
* @deprecated 20.0.0
|
2014-06-05 19:17:02 -04:00
|
|
|
*/
|
2015-04-18 05:46:29 -04:00
|
|
|
public function getSearch();
|
2014-06-05 19:17:02 -04:00
|
|
|
|
2014-08-14 08:24:10 -04:00
|
|
|
/**
|
|
|
|
|
* Get the certificate manager for the user
|
|
|
|
|
*
|
2015-12-22 11:42:28 -05:00
|
|
|
* @param string $userId (optional) if not specified the current loggedin user is used, use null to get the system certificate manager
|
2015-06-17 09:47:45 -04:00
|
|
|
* @return \OCP\ICertificateManager | null if $userId is null and no user is logged in
|
2015-04-16 11:00:08 -04:00
|
|
|
* @since 8.0.0
|
2020-07-16 12:59:56 -04:00
|
|
|
* @deprecated 20.0.0 have it injected or fetch it through \Psr\Container\ContainerInterface::get
|
2014-08-14 08:24:10 -04:00
|
|
|
*/
|
2015-06-17 05:10:55 -04:00
|
|
|
public function getCertificateManager($userId = null);
|
2015-02-24 11:15:21 -05:00
|
|
|
|
2014-08-29 11:19:38 -04:00
|
|
|
/**
|
2014-09-03 19:10:02 -04:00
|
|
|
* Create a new event source
|
2014-08-29 11:19:38 -04:00
|
|
|
*
|
|
|
|
|
* @return \OCP\IEventSource
|
2015-04-16 11:00:08 -04:00
|
|
|
* @since 8.0.0
|
2020-07-16 12:59:56 -04:00
|
|
|
* @deprecated 20.0.0 have it injected or fetch it through \Psr\Container\ContainerInterface::get
|
2014-08-29 11:19:38 -04:00
|
|
|
*/
|
2015-04-18 05:46:29 -04:00
|
|
|
public function createEventSource();
|
2014-09-11 13:21:56 -04:00
|
|
|
|
2015-03-16 06:28:23 -04:00
|
|
|
/**
|
|
|
|
|
* Returns an instance of the HTTP client service
|
|
|
|
|
*
|
|
|
|
|
* @return \OCP\Http\Client\IClientService
|
2015-04-16 11:00:08 -04:00
|
|
|
* @since 8.1.0
|
2020-07-16 12:59:56 -04:00
|
|
|
* @deprecated 20.0.0 have it injected or fetch it through \Psr\Container\ContainerInterface::get
|
2015-03-16 06:28:23 -04:00
|
|
|
*/
|
2015-04-18 05:46:29 -04:00
|
|
|
public function getHTTPClientService();
|
2015-03-16 06:28:23 -04:00
|
|
|
|
2014-10-02 19:16:57 -04:00
|
|
|
/**
|
|
|
|
|
* Get the active event logger
|
|
|
|
|
*
|
2014-10-03 14:39:09 -04:00
|
|
|
* @return \OCP\Diagnostics\IEventLogger
|
2015-04-16 11:00:08 -04:00
|
|
|
* @since 8.0.0
|
2020-07-16 12:59:56 -04:00
|
|
|
* @deprecated 20.0.0 have it injected or fetch it through \Psr\Container\ContainerInterface::get
|
2014-10-02 19:16:57 -04:00
|
|
|
*/
|
2015-04-18 05:46:29 -04:00
|
|
|
public function getEventLogger();
|
2014-10-02 19:35:07 -04:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get the active query logger
|
|
|
|
|
*
|
|
|
|
|
* The returned logger only logs data when debug mode is enabled
|
|
|
|
|
*
|
2014-10-03 14:39:09 -04:00
|
|
|
* @return \OCP\Diagnostics\IQueryLogger
|
2015-04-16 11:00:08 -04:00
|
|
|
* @since 8.0.0
|
2020-07-16 12:59:56 -04:00
|
|
|
* @deprecated 20.0.0 have it injected or fetch it through \Psr\Container\ContainerInterface::get
|
2014-10-02 19:35:07 -04:00
|
|
|
*/
|
2015-04-18 05:46:29 -04:00
|
|
|
public function getQueryLogger();
|
2014-10-22 11:33:36 -04:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get the manager for temporary files and folders
|
|
|
|
|
*
|
|
|
|
|
* @return \OCP\ITempManager
|
2015-04-16 11:00:08 -04:00
|
|
|
* @since 8.0.0
|
2020-07-16 12:59:56 -04:00
|
|
|
* @deprecated 20.0.0 have it injected or fetch it through \Psr\Container\ContainerInterface::get
|
2014-10-22 11:33:36 -04:00
|
|
|
*/
|
2015-04-18 05:46:29 -04:00
|
|
|
public function getTempManager();
|
2014-11-07 08:26:12 -05:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get the app manager
|
|
|
|
|
*
|
|
|
|
|
* @return \OCP\App\IAppManager
|
2015-04-16 11:00:08 -04:00
|
|
|
* @since 8.0.0
|
2020-07-16 12:59:56 -04:00
|
|
|
* @deprecated 20.0.0 have it injected or fetch it through \Psr\Container\ContainerInterface::get
|
2014-11-07 08:26:12 -05:00
|
|
|
*/
|
2015-04-18 05:46:29 -04:00
|
|
|
public function getAppManager();
|
2014-11-27 08:36:11 -05:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get the webroot
|
|
|
|
|
*
|
|
|
|
|
* @return string
|
2015-04-16 11:00:08 -04:00
|
|
|
* @since 8.0.0
|
2020-07-16 12:59:56 -04:00
|
|
|
* @deprecated 20.0.0 have it injected or fetch it through \Psr\Container\ContainerInterface::get
|
2014-11-27 08:36:11 -05:00
|
|
|
*/
|
2015-04-18 05:46:29 -04:00
|
|
|
public function getWebRoot();
|
2014-11-24 09:54:42 -05:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @return \OCP\Files\Config\IMountProviderCollection
|
2015-04-16 11:00:08 -04:00
|
|
|
* @since 8.0.0
|
2020-07-16 12:59:56 -04:00
|
|
|
* @deprecated 20.0.0 have it injected or fetch it through \Psr\Container\ContainerInterface::get
|
2014-11-24 09:54:42 -05:00
|
|
|
*/
|
2015-04-18 05:46:29 -04:00
|
|
|
public function getMountProviderCollection();
|
2014-12-05 13:56:29 -05:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get the IniWrapper
|
|
|
|
|
*
|
|
|
|
|
* @return \bantu\IniGetWrapper\IniGetWrapper
|
2015-04-16 11:00:08 -04:00
|
|
|
* @since 8.0.0
|
2020-07-16 12:59:56 -04:00
|
|
|
* @deprecated 20.0.0 have it injected or fetch it through \Psr\Container\ContainerInterface::get
|
2014-12-05 13:56:29 -05:00
|
|
|
*/
|
2015-04-18 05:46:29 -04:00
|
|
|
public function getIniWrapper();
|
2015-02-17 10:49:14 -05:00
|
|
|
/**
|
|
|
|
|
* @return \OCP\Command\IBus
|
2015-04-16 11:00:08 -04:00
|
|
|
* @since 8.1.0
|
2020-07-16 12:59:56 -04:00
|
|
|
* @deprecated 20.0.0 have it injected or fetch it through \Psr\Container\ContainerInterface::get
|
2015-02-17 10:49:14 -05:00
|
|
|
*/
|
2015-04-18 05:46:29 -04:00
|
|
|
public function getCommandBus();
|
2015-02-12 07:53:27 -05:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Creates a new mailer
|
|
|
|
|
*
|
|
|
|
|
* @return \OCP\Mail\IMailer
|
2015-04-16 11:00:08 -04:00
|
|
|
* @since 8.1.0
|
2020-07-16 12:59:56 -04:00
|
|
|
* @deprecated 20.0.0 have it injected or fetch it through \Psr\Container\ContainerInterface::get
|
2015-02-12 07:53:27 -05:00
|
|
|
*/
|
2015-04-18 05:46:29 -04:00
|
|
|
public function getMailer();
|
2015-05-04 08:02:27 -04:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get the locking provider
|
|
|
|
|
*
|
|
|
|
|
* @return \OCP\Lock\ILockingProvider
|
|
|
|
|
* @since 8.1.0
|
2020-07-16 12:59:56 -04:00
|
|
|
* @deprecated 20.0.0 have it injected or fetch it through \Psr\Container\ContainerInterface::get
|
2015-05-04 08:02:27 -04:00
|
|
|
*/
|
|
|
|
|
public function getLockingProvider();
|
2015-07-01 09:57:04 -04:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @return \OCP\Files\Mount\IMountManager
|
|
|
|
|
* @since 8.2.0
|
2020-07-16 12:59:56 -04:00
|
|
|
* @deprecated 20.0.0 have it injected or fetch it through \Psr\Container\ContainerInterface::get
|
2015-07-01 09:57:04 -04:00
|
|
|
*/
|
|
|
|
|
public function getMountManager();
|
2015-04-09 09:19:57 -04:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get the MimeTypeDetector
|
|
|
|
|
*
|
|
|
|
|
* @return \OCP\Files\IMimeTypeDetector
|
|
|
|
|
* @since 8.2.0
|
2020-07-16 12:59:56 -04:00
|
|
|
* @deprecated 20.0.0 have it injected or fetch it through \Psr\Container\ContainerInterface::get
|
2015-04-09 09:19:57 -04:00
|
|
|
*/
|
|
|
|
|
public function getMimeTypeDetector();
|
2015-03-21 15:03:56 -04:00
|
|
|
|
2015-09-03 14:48:42 -04:00
|
|
|
/**
|
|
|
|
|
* Get the MimeTypeLoader
|
|
|
|
|
*
|
|
|
|
|
* @return \OCP\Files\IMimeTypeLoader
|
|
|
|
|
* @since 8.2.0
|
2020-07-16 12:59:56 -04:00
|
|
|
* @deprecated 20.0.0 have it injected or fetch it through \Psr\Container\ContainerInterface::get
|
2015-09-03 14:48:42 -04:00
|
|
|
*/
|
|
|
|
|
public function getMimeTypeLoader();
|
|
|
|
|
|
2015-08-14 09:40:15 -04:00
|
|
|
/**
|
|
|
|
|
* Get the EventDispatcher
|
|
|
|
|
*
|
|
|
|
|
* @return EventDispatcherInterface
|
2020-06-08 13:10:26 -04:00
|
|
|
* @deprecated 20.0.0 use \OCP\EventDispatcher\IEventDispatcher
|
2015-08-14 09:40:15 -04:00
|
|
|
* @since 8.2.0
|
|
|
|
|
*/
|
|
|
|
|
public function getEventDispatcher();
|
2015-08-31 06:24:37 -04:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get the Notification Manager
|
|
|
|
|
*
|
2016-01-14 08:35:24 -05:00
|
|
|
* @return \OCP\Notification\IManager
|
2016-01-22 05:02:40 -05:00
|
|
|
* @since 9.0.0
|
2020-07-16 12:59:56 -04:00
|
|
|
* @deprecated 20.0.0 have it injected or fetch it through \Psr\Container\ContainerInterface::get
|
2015-08-31 06:24:37 -04:00
|
|
|
*/
|
|
|
|
|
public function getNotificationManager();
|
2015-11-26 09:49:14 -05:00
|
|
|
|
2015-12-08 08:57:55 -05:00
|
|
|
/**
|
|
|
|
|
* @return \OCP\Comments\ICommentsManager
|
|
|
|
|
* @since 9.0.0
|
2020-07-16 12:59:56 -04:00
|
|
|
* @deprecated 20.0.0 have it injected or fetch it through \Psr\Container\ContainerInterface::get
|
2015-12-08 08:57:55 -05:00
|
|
|
*/
|
|
|
|
|
public function getCommentsManager();
|
|
|
|
|
|
2015-11-26 09:49:14 -05:00
|
|
|
/**
|
|
|
|
|
* Returns the system-tag manager
|
|
|
|
|
*
|
|
|
|
|
* @return \OCP\SystemTag\ISystemTagManager
|
|
|
|
|
*
|
|
|
|
|
* @since 9.0.0
|
2020-07-16 12:59:56 -04:00
|
|
|
* @deprecated 20.0.0 have it injected or fetch it through \Psr\Container\ContainerInterface::get
|
2015-11-26 09:49:14 -05:00
|
|
|
*/
|
|
|
|
|
public function getSystemTagManager();
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Returns the system-tag object mapper
|
|
|
|
|
*
|
|
|
|
|
* @return \OCP\SystemTag\ISystemTagObjectMapper
|
|
|
|
|
*
|
|
|
|
|
* @since 9.0.0
|
2020-07-16 12:59:56 -04:00
|
|
|
* @deprecated 20.0.0 have it injected or fetch it through \Psr\Container\ContainerInterface::get
|
2015-11-26 09:49:14 -05:00
|
|
|
*/
|
|
|
|
|
public function getSystemTagObjectMapper();
|
2016-01-27 08:48:52 -05:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Returns the share manager
|
|
|
|
|
*
|
|
|
|
|
* @return \OCP\Share\IManager
|
|
|
|
|
* @since 9.0.0
|
2020-07-16 12:59:56 -04:00
|
|
|
* @deprecated 20.0.0 have it injected or fetch it through \Psr\Container\ContainerInterface::get
|
2016-01-27 08:48:52 -05:00
|
|
|
*/
|
|
|
|
|
public function getShareManager();
|
2016-01-28 08:33:02 -05:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @return IContentSecurityPolicyManager
|
|
|
|
|
* @since 9.0.0
|
2019-05-24 15:42:37 -04:00
|
|
|
* @deprecated 17.0.0 Use the AddContentSecurityPolicyEvent
|
2016-01-28 08:33:02 -05:00
|
|
|
*/
|
|
|
|
|
public function getContentSecurityPolicyManager();
|
2016-05-03 04:30:15 -04:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @return \OCP\IDateTimeZone
|
|
|
|
|
* @since 8.0.0
|
2020-07-16 12:59:56 -04:00
|
|
|
* @deprecated 20.0.0 have it injected or fetch it through \Psr\Container\ContainerInterface::get
|
2016-05-03 04:30:15 -04:00
|
|
|
*/
|
|
|
|
|
public function getDateTimeZone();
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @return \OCP\IDateTimeFormatter
|
|
|
|
|
* @since 8.0.0
|
2020-07-16 12:59:56 -04:00
|
|
|
* @deprecated 20.0.0 have it injected or fetch it through \Psr\Container\ContainerInterface::get
|
2016-05-03 04:30:15 -04:00
|
|
|
*/
|
|
|
|
|
public function getDateTimeFormatter();
|
2017-01-27 06:52:17 -05:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @return \OCP\Federation\ICloudIdManager
|
|
|
|
|
* @since 12.0.0
|
2020-07-16 12:59:56 -04:00
|
|
|
* @deprecated 20.0.0 have it injected or fetch it through \Psr\Container\ContainerInterface::get
|
2017-01-27 06:52:17 -05:00
|
|
|
*/
|
|
|
|
|
public function getCloudIdManager();
|
2017-10-04 10:21:50 -04:00
|
|
|
|
2018-04-18 10:05:11 -04:00
|
|
|
/**
|
|
|
|
|
* @return \OCP\GlobalScale\IConfig
|
2018-06-07 10:36:26 -04:00
|
|
|
* @since 14.0.0
|
2020-07-16 12:59:56 -04:00
|
|
|
* @deprecated 20.0.0 have it injected or fetch it through \Psr\Container\ContainerInterface::get
|
2018-04-18 10:05:11 -04:00
|
|
|
*/
|
|
|
|
|
public function getGlobalScaleConfig();
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @return ICloudFederationFactory
|
|
|
|
|
* @since 14.0.0
|
2020-07-16 12:59:56 -04:00
|
|
|
* @deprecated 20.0.0 have it injected or fetch it through \Psr\Container\ContainerInterface::get
|
2018-04-18 10:05:11 -04:00
|
|
|
*/
|
|
|
|
|
public function getCloudFederationFactory();
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @return ICloudFederationProviderManager
|
|
|
|
|
* @since 14.0.0
|
2020-07-16 12:59:56 -04:00
|
|
|
* @deprecated 20.0.0 have it injected or fetch it through \Psr\Container\ContainerInterface::get
|
2018-04-18 10:05:11 -04:00
|
|
|
*/
|
|
|
|
|
public function getCloudFederationProviderManager();
|
|
|
|
|
|
2017-10-04 10:21:50 -04:00
|
|
|
/**
|
|
|
|
|
* @return \OCP\Remote\Api\IApiFactory
|
|
|
|
|
* @since 13.0.0
|
2020-07-16 12:59:56 -04:00
|
|
|
* @deprecated 20.0.0 have it injected or fetch it through \Psr\Container\ContainerInterface::get
|
2017-10-04 10:21:50 -04:00
|
|
|
*/
|
|
|
|
|
public function getRemoteApiFactory();
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @return \OCP\Remote\IInstanceFactory
|
|
|
|
|
* @since 13.0.0
|
2020-07-16 12:59:56 -04:00
|
|
|
* @deprecated 20.0.0 have it injected or fetch it through \Psr\Container\ContainerInterface::get
|
2017-10-04 10:21:50 -04:00
|
|
|
*/
|
|
|
|
|
public function getRemoteInstanceFactory();
|
2018-09-19 13:02:15 -04:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @return \OCP\Files\Storage\IStorageFactory
|
|
|
|
|
* @since 15.0.0
|
2020-07-16 12:59:56 -04:00
|
|
|
* @deprecated 20.0.0 have it injected or fetch it through \Psr\Container\ContainerInterface::get
|
2018-09-19 13:02:15 -04:00
|
|
|
*/
|
|
|
|
|
public function getStorageFactory();
|
2013-08-20 18:58:15 -04:00
|
|
|
}
|