|
|
@@ -1,51 +0,0 @@
|
|
1
|
|
-/*
|
|
2
|
|
- * Copyright @ 2017-present Atlassian Pty Ltd
|
|
3
|
|
- *
|
|
4
|
|
- * Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
|
- * you may not use this file except in compliance with the License.
|
|
6
|
|
- * You may obtain a copy of the License at
|
|
7
|
|
- *
|
|
8
|
|
- * http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
|
- *
|
|
10
|
|
- * Unless required by applicable law or agreed to in writing, software
|
|
11
|
|
- * distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
|
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
|
- * See the License for the specific language governing permissions and
|
|
14
|
|
- * limitations under the License.
|
|
15
|
|
- */
|
|
16
|
|
-
|
|
17
|
|
-package org.jitsi.meet.sdk;
|
|
18
|
|
-
|
|
19
|
|
-import java.util.Map;
|
|
20
|
|
-
|
|
21
|
|
-/**
|
|
22
|
|
- * Implements {@link JitsiMeetViewListener} so apps don't have to add stubs for
|
|
23
|
|
- * all methods in the interface if they are only interested in some.
|
|
24
|
|
- */
|
|
25
|
|
-public abstract class JitsiMeetViewAdapter
|
|
26
|
|
- implements JitsiMeetViewListener {
|
|
27
|
|
-
|
|
28
|
|
- @Override
|
|
29
|
|
- public void onConferenceFailed(Map<String, Object> data) {
|
|
30
|
|
- }
|
|
31
|
|
-
|
|
32
|
|
- @Override
|
|
33
|
|
- public void onConferenceJoined(Map<String, Object> data) {
|
|
34
|
|
- }
|
|
35
|
|
-
|
|
36
|
|
- @Override
|
|
37
|
|
- public void onConferenceLeft(Map<String, Object> data) {
|
|
38
|
|
- }
|
|
39
|
|
-
|
|
40
|
|
- @Override
|
|
41
|
|
- public void onConferenceWillJoin(Map<String, Object> data) {
|
|
42
|
|
- }
|
|
43
|
|
-
|
|
44
|
|
- @Override
|
|
45
|
|
- public void onConferenceWillLeave(Map<String, Object> data) {
|
|
46
|
|
- }
|
|
47
|
|
-
|
|
48
|
|
- @Override
|
|
49
|
|
- public void onLoadConfigError(Map<String, Object> data) {
|
|
50
|
|
- }
|
|
51
|
|
-}
|