123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204 |
- package com.genersoft.iot.vmp.gb28181.bean;
- import gov.nist.javax.sip.message.SIPRequest;
- import java.util.Vector;
- /**
- * @author
- * @date :Created in 2022/8/24 15:17
- * @description:
- * @modified By:
- * @version: ${1.0.0}
- */
- public class BroadcastItem {
- public BroadcastItem() {
- }
- public BroadcastItem(String deviceId, String localIp, Integer localPort) {
- this.deviceId = deviceId;
- this.localIp = localIp;
- this.localPort = localPort;
- }
- private String deviceId;
- private String channelId;
- private String localIp;
- private String ipcIp;
- private Integer localPort;
- private Integer ipcAudioPort;
- // 0是udp 1是tcp
- private Integer udpOrTcp;
- private String callId;
- private String ssrc;
- private String fromTag;
- private String toTag;
- private String viaBranch;
- private String app;
- private String stream;
- private String audioCoded;
- private String recv_stream;
- private String mediaId;
- private SIPRequest request;
- private Vector audioFormats;
- public String getMediaId() {
- return mediaId;
- }
- public void setMediaId(String mediaId) {
- this.mediaId = mediaId;
- }
- public SIPRequest getRequest() {
- return request;
- }
- public void setRequest(SIPRequest request) {
- this.request = request;
- }
- public Vector getAudioFormats() {
- return audioFormats;
- }
- public void setAudioFormats(Vector audioFormats) {
- this.audioFormats = audioFormats;
- }
- public String getAudioCoded() {
- return audioCoded;
- }
- public void setAudioCoded(String audioCoded) {
- this.audioCoded = audioCoded;
- }
- public String getRecv_stream() {
- return recv_stream;
- }
- public void setRecv_stream(String recv_stream) {
- this.recv_stream = recv_stream;
- }
- public String getDeviceId() {
- return deviceId;
- }
- public void setDeviceId(String deviceId) {
- this.deviceId = deviceId;
- }
- public String getChannelId() {
- return channelId;
- }
- public void setChannelId(String channelId) {
- this.channelId = channelId;
- }
- public String getLocalIp() {
- return localIp;
- }
- public void setLocalIp(String localIp) {
- this.localIp = localIp;
- }
- public String getIpcIp() {
- return ipcIp;
- }
- public void setIpcIp(String ipcIp) {
- this.ipcIp = ipcIp;
- }
- public Integer getLocalPort() {
- return localPort;
- }
- public void setLocalPort(Integer localPort) {
- this.localPort = localPort;
- }
- public Integer getIpcAudioPort() {
- return ipcAudioPort;
- }
- public void setIpcAudioPort(Integer ipcAudioPort) {
- this.ipcAudioPort = ipcAudioPort;
- }
- public Integer getUdpOrTcp() {
- return udpOrTcp;
- }
- public void setUdpOrTcp(Integer udpOrTcp) {
- this.udpOrTcp = udpOrTcp;
- }
- public String getCallId() {
- return callId;
- }
- public void setCallId(String callId) {
- this.callId = callId;
- }
- public String getSsrc() {
- return ssrc;
- }
- public void setSsrc(String ssrc) {
- this.ssrc = ssrc;
- }
- public String getFromTag() {
- return fromTag;
- }
- public void setFromTag(String fromTag) {
- this.fromTag = fromTag;
- }
- public String getToTag() {
- return toTag;
- }
- public void setToTag(String toTag) {
- this.toTag = toTag;
- }
- public String getViaBranch() {
- return viaBranch;
- }
- public void setViaBranch(String viaBranch) {
- this.viaBranch = viaBranch;
- }
- 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;
- }
- }
|