IAuthMechanismProvider.php 475 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * SPDX-FileCopyrightText: 2019-2024 Nextcloud GmbH and Nextcloud contributors
  4. * SPDX-FileCopyrightText: 2016 ownCloud, Inc.
  5. * SPDX-License-Identifier: AGPL-3.0-only
  6. */
  7. namespace OCA\Files_External\Lib\Config;
  8. use OCA\Files_External\Lib\Auth\AuthMechanism;
  9. /**
  10. * Provider of external storage auth mechanisms
  11. * @since 9.1.0
  12. */
  13. interface IAuthMechanismProvider {
  14. /**
  15. * @since 9.1.0
  16. * @return AuthMechanism[]
  17. */
  18. public function getAuthMechanisms();
  19. }