You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

94 lines
2.5 KiB

3 years ago
  1. <?php
  2. /**
  3. * @copyright 2019, Georg Ehrke <oc.list@georgehrke.com>
  4. *
  5. * @author Georg Ehrke <oc.list@georgehrke.com>
  6. *
  7. * @license GNU AGPL version 3 or any later version
  8. *
  9. * This program is free software: you can redistribute it and/or modify
  10. * it under the terms of the GNU Affero General Public License as
  11. * published by the Free Software Foundation, either version 3 of the
  12. * License, or (at your option) any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU Affero General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU Affero General Public License
  20. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  21. *
  22. */
  23. namespace OCP\Calendar\Room;
  24. /**
  25. * Interface IRoomMetadata
  26. *
  27. * This interface provides keys for common metadata.
  28. * Room Backends are not limited to this list and can provide
  29. * any metadata they want.
  30. *
  31. * @since 17.0.0
  32. */
  33. interface IRoomMetadata {
  34. /**
  35. * Type of room
  36. *
  37. * Allowed values for this key include:
  38. * - meeting-room
  39. * - lecture-hall
  40. * - seminar-room
  41. * - other
  42. *
  43. * @since 17.0.0
  44. */
  45. public const ROOM_TYPE = '{http://nextcloud.com/ns}room-type';
  46. /**
  47. * Seating capacity of the room
  48. *
  49. * @since 17.0.0
  50. */
  51. public const CAPACITY = '{http://nextcloud.com/ns}room-seating-capacity';
  52. /**
  53. * The physical address of the building this room is located in
  54. *
  55. * @since 17.0.0
  56. */
  57. public const BUILDING_ADDRESS = '{http://nextcloud.com/ns}room-building-address';
  58. /**
  59. * The story of the building this rooms is located in
  60. *
  61. * @since 17.0.0
  62. */
  63. public const BUILDING_STORY = '{http://nextcloud.com/ns}room-building-story';
  64. /**
  65. * The room-number
  66. *
  67. * @since 17.0.0
  68. */
  69. public const BUILDING_ROOM_NUMBER = '{http://nextcloud.com/ns}room-building-room-number';
  70. /**
  71. * Features provided by the room.
  72. * This is a stringified list of features.
  73. * Example: "PHONE,VIDEO-CONFERENCING"
  74. *
  75. * Standard features include:
  76. * - PHONE: This room is fitted with a phone
  77. * - VIDEO-CONFERENCING: This room is fitted with a video-conferencing system
  78. * - TV: This room is fitted with a TV
  79. * - PROJECTOR: This room is fitted with a projector
  80. * - WHITEBOARD: This room is fitted with a whiteboard
  81. * - WHEELCHAIR-ACCESSIBLE: This room is wheelchair-accessible
  82. *
  83. * @since 17.0.0
  84. */
  85. public const FEATURES = '{http://nextcloud.com/ns}room-features';
  86. }