IManager.php 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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. /**
  34. * @since 18.0.0
  35. */
  36. public const SCOPE_ADMIN = 0;
  37. /**
  38. * @since 18.0.0
  39. */
  40. public const SCOPE_USER = 1;
  41. /**
  42. * @since 21.0.0
  43. */
  44. public const MAX_CHECK_VALUE_BYTES = 2048;
  45. /**
  46. * @since 21.0.0
  47. */
  48. public const MAX_OPERATION_VALUE_BYTES = 4096;
  49. /**
  50. * Listen to `OCP\WorkflowEngine\Events\RegisterEntitiesEvent` at the
  51. * IEventDispatcher for registering your entities.
  52. *
  53. * @since 18.0.0
  54. */
  55. public function registerEntity(IEntity $entity): void;
  56. /**
  57. * Listen to `OCP\WorkflowEngine\Events\RegisterOperationsEvent` at the
  58. * IEventDispatcher for registering your operators.
  59. *
  60. * @since 18.0.0
  61. */
  62. public function registerOperation(IOperation $operator): void;
  63. /**
  64. * Listen to `OCP\WorkflowEngine\Events\RegisterChecksEvent` at the
  65. * IEventDispatcher for registering your operators.
  66. *
  67. * @since 18.0.0
  68. */
  69. public function registerCheck(ICheck $check): void;
  70. /**
  71. * @since 18.0.0
  72. */
  73. public function getRuleMatcher(): IRuleMatcher;
  74. }