HeartbeatStreamInterface.php.bak 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. <?php
  2. namespace Drupal\heartbeat\Entity;
  3. use Drupal\Core\Config\Entity\ConfigEntityInterface;
  4. /**
  5. * Provides an interface for defining Heartbeat stream entities.
  6. */
  7. interface HeartbeatStreamInterface extends ConfigEntityInterface {
  8. /**
  9. * @return mixed
  10. */
  11. public function getName();
  12. /**
  13. * @param mixed $name
  14. */
  15. public function setName($name);
  16. /**
  17. * @return mixed
  18. */
  19. public function getClass();
  20. /**
  21. * @param mixed $class
  22. */
  23. public function setClass($class);
  24. /**
  25. * @return mixed
  26. */
  27. public function getRealClass();
  28. /**
  29. * @param mixed $real_class
  30. */
  31. public function setRealClass($real_class);
  32. /**
  33. * @return mixed
  34. */
  35. public function getPath();
  36. /**
  37. * @param mixed $path
  38. */
  39. public function setPath($path);
  40. /**
  41. * @return mixed
  42. */
  43. public function getTitle();
  44. /**
  45. * @param mixed $title
  46. */
  47. public function setTitle($title);
  48. /**
  49. * @return mixed
  50. */
  51. public function getModule();
  52. /**
  53. * @param mixed $module
  54. */
  55. public function setModule($module);
  56. /**
  57. * @return mixed
  58. */
  59. public function getVariables();
  60. /**
  61. * @param mixed $variables
  62. */
  63. public function setVariables($variables);
  64. /**
  65. * @return mixed
  66. */
  67. public function getSettings();
  68. /**
  69. * @param mixed $settings
  70. */
  71. public function setSettings($settings);
  72. }