|
18 | 18 | */ |
19 | 19 | namespace BigBlueButton\Core; |
20 | 20 |
|
21 | | -abstract class ApiMethod |
| 21 | +/** |
| 22 | + * @final since 4.0. |
| 23 | + */ |
| 24 | +class ApiMethod |
22 | 25 | { |
23 | | - const CREATE = 'create'; |
24 | | - const JOIN = 'join'; |
25 | | - const ENTER = 'enter'; |
26 | | - const END = 'end'; |
27 | | - const IS_MEETING_RUNNING = 'isMeetingRunning'; |
28 | | - const GET_MEETING_INFO = 'getMeetingInfo'; |
29 | | - const GET_MEETINGS = 'getMeetings'; |
| 26 | + public const CREATE = 'create'; |
| 27 | + public const JOIN = 'join'; |
| 28 | + public const ENTER = 'enter'; |
| 29 | + public const END = 'end'; |
| 30 | + public const IS_MEETING_RUNNING = 'isMeetingRunning'; |
| 31 | + public const GET_MEETING_INFO = 'getMeetingInfo'; |
| 32 | + public const GET_MEETINGS = 'getMeetings'; |
30 | 33 | /** |
31 | 34 | * @deprecated since 4.0 and will be removed in 4.1. The getDefaultConfigXML API was related to the old Flash client which is no longer available since BigBlueButton 2.2. In BigBlueButton 2.3 the whole API call was removed. |
32 | 35 | */ |
33 | | - const GET_DEFAULT_CONFIG_XML = 'getDefaultConfigXML'; |
| 36 | + public const GET_DEFAULT_CONFIG_XML = 'getDefaultConfigXML'; |
34 | 37 | /** |
35 | 38 | * @deprecated since 4.0 and will be removed in 4.1. The setConfigXML API was related to the old Flash client which is no longer available since BigBlueButton 2.2. In BigBlueButton 2.3 the whole API call was removed. |
36 | 39 | */ |
37 | | - const SET_CONFIG_XML = 'setConfigXML'; |
| 40 | + public const SET_CONFIG_XML = 'setConfigXML'; |
38 | 41 | /** |
39 | 42 | * Note: Unused in the whole project. |
40 | 43 | * |
41 | 44 | * @deprecated since 4.0 and will be removed in 4.1. The configXML API was related to the old Flash client which is no longer available since BigBlueButton 2.2. In BigBlueButton 2.3 the whole API call was removed. |
42 | 45 | */ |
43 | | - const CONFIG_XML = 'configXML'; |
44 | | - const SIGN_OUT = 'signOut'; |
45 | | - const GET_RECORDINGS = 'getRecordings'; |
46 | | - const PUBLISH_RECORDINGS = 'publishRecordings'; |
47 | | - const DELETE_RECORDINGS = 'deleteRecordings'; |
48 | | - const UPDATE_RECORDINGS = 'updateRecordings'; |
49 | | - const GET_RECORDING_TEXT_TRACKS = 'getRecordingTextTracks'; |
50 | | - const PUT_RECORDING_TEXT_TRACK = 'putRecordingTextTrack'; |
51 | | - const HOOKS_CREATE = 'hooks/create'; |
52 | | - const HOOKS_LIST = 'hooks/list'; |
53 | | - const HOOKS_DESTROY = 'hooks/destroy'; |
| 46 | + public const CONFIG_XML = 'configXML'; |
| 47 | + public const SIGN_OUT = 'signOut'; |
| 48 | + public const GET_RECORDINGS = 'getRecordings'; |
| 49 | + public const PUBLISH_RECORDINGS = 'publishRecordings'; |
| 50 | + public const DELETE_RECORDINGS = 'deleteRecordings'; |
| 51 | + public const UPDATE_RECORDINGS = 'updateRecordings'; |
| 52 | + public const GET_RECORDING_TEXT_TRACKS = 'getRecordingTextTracks'; |
| 53 | + public const PUT_RECORDING_TEXT_TRACK = 'putRecordingTextTrack'; |
| 54 | + public const HOOKS_CREATE = 'hooks/create'; |
| 55 | + public const HOOKS_LIST = 'hooks/list'; |
| 56 | + public const HOOKS_DESTROY = 'hooks/destroy'; |
54 | 57 | } |
0 commit comments