补充上一个修复的内容

This commit is contained in:
648540858
2023-04-21 14:42:23 +08:00
parent 5c3c3e6a4c
commit 22deb206ba
2 changed files with 6 additions and 29 deletions

View File

@@ -1,27 +0,0 @@
package com.genersoft.iot.vmp.gb28181.bean;
import javax.sip.Dialog;
import java.util.EventObject;
public class CmdSendFailEvent extends EventObject {
private String callId;
/**
* Constructs a prototypical Event.
*
* @param dialog
* @throws IllegalArgumentException if source is null.
*/
public CmdSendFailEvent(Dialog dialog) {
super(dialog);
}
public String getCallId() {
return callId;
}
public void setCallId(String callId) {
this.callId = callId;
}
}