BroadcastItem.java 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  1. package com.genersoft.iot.vmp.gb28181.bean;
  2. import gov.nist.javax.sip.message.SIPRequest;
  3. import java.util.Vector;
  4. /**
  5. * @author
  6. * @date :Created in 2022/8/24 15:17
  7. * @description:
  8. * @modified By:
  9. * @version: ${1.0.0}
  10. */
  11. public class BroadcastItem {
  12. public BroadcastItem() {
  13. }
  14. public BroadcastItem(String deviceId, String localIp, Integer localPort) {
  15. this.deviceId = deviceId;
  16. this.localIp = localIp;
  17. this.localPort = localPort;
  18. }
  19. private String deviceId;
  20. private String channelId;
  21. private String localIp;
  22. private String ipcIp;
  23. private Integer localPort;
  24. private Integer ipcAudioPort;
  25. // 0是udp 1是tcp
  26. private Integer udpOrTcp;
  27. private String callId;
  28. private String ssrc;
  29. private String fromTag;
  30. private String toTag;
  31. private String viaBranch;
  32. private String app;
  33. private String stream;
  34. private String audioCoded;
  35. private String recv_stream;
  36. private String mediaId;
  37. private SIPRequest request;
  38. private Vector audioFormats;
  39. public String getMediaId() {
  40. return mediaId;
  41. }
  42. public void setMediaId(String mediaId) {
  43. this.mediaId = mediaId;
  44. }
  45. public SIPRequest getRequest() {
  46. return request;
  47. }
  48. public void setRequest(SIPRequest request) {
  49. this.request = request;
  50. }
  51. public Vector getAudioFormats() {
  52. return audioFormats;
  53. }
  54. public void setAudioFormats(Vector audioFormats) {
  55. this.audioFormats = audioFormats;
  56. }
  57. public String getAudioCoded() {
  58. return audioCoded;
  59. }
  60. public void setAudioCoded(String audioCoded) {
  61. this.audioCoded = audioCoded;
  62. }
  63. public String getRecv_stream() {
  64. return recv_stream;
  65. }
  66. public void setRecv_stream(String recv_stream) {
  67. this.recv_stream = recv_stream;
  68. }
  69. public String getDeviceId() {
  70. return deviceId;
  71. }
  72. public void setDeviceId(String deviceId) {
  73. this.deviceId = deviceId;
  74. }
  75. public String getChannelId() {
  76. return channelId;
  77. }
  78. public void setChannelId(String channelId) {
  79. this.channelId = channelId;
  80. }
  81. public String getLocalIp() {
  82. return localIp;
  83. }
  84. public void setLocalIp(String localIp) {
  85. this.localIp = localIp;
  86. }
  87. public String getIpcIp() {
  88. return ipcIp;
  89. }
  90. public void setIpcIp(String ipcIp) {
  91. this.ipcIp = ipcIp;
  92. }
  93. public Integer getLocalPort() {
  94. return localPort;
  95. }
  96. public void setLocalPort(Integer localPort) {
  97. this.localPort = localPort;
  98. }
  99. public Integer getIpcAudioPort() {
  100. return ipcAudioPort;
  101. }
  102. public void setIpcAudioPort(Integer ipcAudioPort) {
  103. this.ipcAudioPort = ipcAudioPort;
  104. }
  105. public Integer getUdpOrTcp() {
  106. return udpOrTcp;
  107. }
  108. public void setUdpOrTcp(Integer udpOrTcp) {
  109. this.udpOrTcp = udpOrTcp;
  110. }
  111. public String getCallId() {
  112. return callId;
  113. }
  114. public void setCallId(String callId) {
  115. this.callId = callId;
  116. }
  117. public String getSsrc() {
  118. return ssrc;
  119. }
  120. public void setSsrc(String ssrc) {
  121. this.ssrc = ssrc;
  122. }
  123. public String getFromTag() {
  124. return fromTag;
  125. }
  126. public void setFromTag(String fromTag) {
  127. this.fromTag = fromTag;
  128. }
  129. public String getToTag() {
  130. return toTag;
  131. }
  132. public void setToTag(String toTag) {
  133. this.toTag = toTag;
  134. }
  135. public String getViaBranch() {
  136. return viaBranch;
  137. }
  138. public void setViaBranch(String viaBranch) {
  139. this.viaBranch = viaBranch;
  140. }
  141. public String getApp() {
  142. return app;
  143. }
  144. public void setApp(String app) {
  145. this.app = app;
  146. }
  147. public String getStream() {
  148. return stream;
  149. }
  150. public void setStream(String stream) {
  151. this.stream = stream;
  152. }
  153. }