1
0

ICredentials.php 484 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. /**
  3. * SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors
  4. * SPDX-License-Identifier: AGPL-3.0-or-later
  5. */
  6. namespace OCP\Remote;
  7. /**
  8. * The credentials for a remote user
  9. *
  10. * @since 13.0.0
  11. * @deprecated 23.0.0
  12. */
  13. interface ICredentials {
  14. /**
  15. * @return string
  16. *
  17. * @since 13.0.0
  18. * @deprecated 23.0.0
  19. */
  20. public function getUsername();
  21. /**
  22. * @return string
  23. *
  24. * @since 13.0.0
  25. * @deprecated 23.0.0
  26. */
  27. public function getPassword();
  28. }