| | |
| | | private String CallId; |
| | | |
| | | /** |
| | | * 是否是play, false是playback |
| | | * 播放类型 |
| | | */ |
| | | private boolean isPlay; |
| | | private InviteStreamType playType; |
| | | |
| | | private byte[] transaction; |
| | | |
| | | private byte[] dialog; |
| | | |
| | | public String getIp() { |
| | | return ip; |
| | |
| | | CallId = callId; |
| | | } |
| | | |
| | | public boolean isPlay() { |
| | | return isPlay; |
| | | public InviteStreamType getPlayType() { |
| | | return playType; |
| | | } |
| | | |
| | | public void setPlay(boolean play) { |
| | | isPlay = play; |
| | | public void setPlayType(InviteStreamType playType) { |
| | | this.playType = playType; |
| | | } |
| | | |
| | | public byte[] getTransaction() { |
| | | return transaction; |
| | | } |
| | | |
| | | public void setTransaction(byte[] transaction) { |
| | | this.transaction = transaction; |
| | | } |
| | | |
| | | public byte[] getDialog() { |
| | | return dialog; |
| | | } |
| | | |
| | | public void setDialog(byte[] dialog) { |
| | | this.dialog = dialog; |
| | | } |
| | | |
| | | |
| | | } |