IManager.php 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2016 Morris Jobke <hey@morrisjobke.de>
  4. *
  5. * @author Arthur Schiwon <blizzz@arthur-schiwon.de>
  6. * @author Christoph Wurst <christoph@winzerhof-wurst.at>
  7. * @author Morris Jobke <hey@morrisjobke.de>
  8. * @author Roeland Jago Douma <roeland@famdouma.nl>
  9. *
  10. * @license GNU AGPL version 3 or any later version
  11. *
  12. * This program is free software: you can redistribute it and/or modify
  13. * it under the terms of the GNU Affero General Public License as
  14. * published by the Free Software Foundation, either version 3 of the
  15. * License, or (at your option) any later version.
  16. *
  17. * This program is distributed in the hope that it will be useful,
  18. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  19. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  20. * GNU Affero General Public License for more details.
  21. *
  22. * You should have received a copy of the GNU Affero General Public License
  23. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  24. *
  25. */
  26. namespace OCP\WorkflowEngine;
  27. /**
  28. * Interface IManager
  29. *
  30. * @since 9.1
  31. */
  32. interface IManager {
  33. public const SCOPE_ADMIN = 0;
  34. public const SCOPE_USER = 1;
  35. /**
  36. * @since 21.0.0
  37. */
  38. public const MAX_CHECK_VALUE_BYTES = 2048;
  39. /**
  40. * @since 21.0.0
  41. */
  42. public const MAX_OPERATION_VALUE_BYTES = 4096;
  43. /**
  44. * Listen to `OCP\WorkflowEngine\Events\RegisterEntitiesEvent` at the
  45. * IEventDispatcher for registering your entities.
  46. *
  47. * @since 18.0.0
  48. */
  49. public function registerEntity(IEntity $entity): void;
  50. /**
  51. * Listen to `OCP\WorkflowEngine\Events\RegisterOperationsEvent` at the
  52. * IEventDispatcher for registering your operators.
  53. *
  54. * @since 18.0.0
  55. */
  56. public function registerOperation(IOperation $operator): void;
  57. /**
  58. * Listen to `OCP\WorkflowEngine\Events\RegisterChecksEvent` at the
  59. * IEventDispatcher for registering your operators.
  60. *
  61. * @since 18.0.0
  62. */
  63. public function registerCheck(ICheck $check): void;
  64. /**
  65. * @since 18.0.0
  66. */
  67. public function getRuleMatcher(): IRuleMatcher;
  68. }