| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- package com.genersoft.iot.vmp.gb28181.bean;
- import com.alibaba.fastjson.JSONObject;
- import com.genersoft.iot.vmp.media.zlm.dto.MediaServerItem;
- public class InviteStreamInfo {
- public InviteStreamInfo(MediaServerItem mediaServerItem, JSONObject response, String callId, String app, String stream) {
- this.mediaServerItem = mediaServerItem;
- this.response = response;
- this.callId = callId;
- this.app = app;
- this.stream = stream;
- }
- private MediaServerItem mediaServerItem;
- private JSONObject response;
- private String callId;
- private String app;
- private String stream;
- public MediaServerItem getMediaServerItem() {
- return mediaServerItem;
- }
- public void setMediaServerItem(MediaServerItem mediaServerItem) {
- this.mediaServerItem = mediaServerItem;
- }
- public JSONObject getResponse() {
- return response;
- }
- public void setResponse(JSONObject response) {
- this.response = response;
- }
- public String getCallId() {
- return callId;
- }
- public void setCallId(String callId) {
- this.callId = callId;
- }
- public String getApp() {
- return app;
- }
- public void setApp(String app) {
- this.app = app;
- }
- public String getStream() {
- return stream;
- }
- public void setStream(String stream) {
- this.stream = stream;
- }
- }
|