InviteStreamInfo.java 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. package com.genersoft.iot.vmp.gb28181.bean;
  2. import com.alibaba.fastjson.JSONObject;
  3. import com.genersoft.iot.vmp.media.zlm.dto.MediaServerItem;
  4. public class InviteStreamInfo {
  5. public InviteStreamInfo(MediaServerItem mediaServerItem, JSONObject response, String callId, String app, String stream) {
  6. this.mediaServerItem = mediaServerItem;
  7. this.response = response;
  8. this.callId = callId;
  9. this.app = app;
  10. this.stream = stream;
  11. }
  12. private MediaServerItem mediaServerItem;
  13. private JSONObject response;
  14. private String callId;
  15. private String app;
  16. private String stream;
  17. public MediaServerItem getMediaServerItem() {
  18. return mediaServerItem;
  19. }
  20. public void setMediaServerItem(MediaServerItem mediaServerItem) {
  21. this.mediaServerItem = mediaServerItem;
  22. }
  23. public JSONObject getResponse() {
  24. return response;
  25. }
  26. public void setResponse(JSONObject response) {
  27. this.response = response;
  28. }
  29. public String getCallId() {
  30. return callId;
  31. }
  32. public void setCallId(String callId) {
  33. this.callId = callId;
  34. }
  35. public String getApp() {
  36. return app;
  37. }
  38. public void setApp(String app) {
  39. this.app = app;
  40. }
  41. public String getStream() {
  42. return stream;
  43. }
  44. public void setStream(String stream) {
  45. this.stream = stream;
  46. }
  47. }