|
@@ -6,7 +6,7 @@ import java.util.List;
|
|
|
public class ChannelStateNotify {
|
|
|
|
|
|
private String appKey;
|
|
|
- private String channelId;
|
|
|
+ private String roomId;
|
|
|
private String sessionId;
|
|
|
private int event;
|
|
|
private String userId;
|
|
@@ -20,12 +20,15 @@ public class ChannelStateNotify {
|
|
|
public void setAppKey(String appKey) {
|
|
|
this.appKey = appKey;
|
|
|
}
|
|
|
- public String getChannelId() {
|
|
|
- return channelId;
|
|
|
+
|
|
|
+ public String getRoomId() {
|
|
|
+ return roomId;
|
|
|
}
|
|
|
- public void setChannelId(String channelId) {
|
|
|
- this.channelId = channelId;
|
|
|
+
|
|
|
+ public void setRoomId(String roomId) {
|
|
|
+ this.roomId = roomId;
|
|
|
}
|
|
|
+
|
|
|
public String getSessionId() {
|
|
|
return sessionId;
|
|
|
}
|