Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion src/main/java/org/asteriskjava/manager/event/CelEvent.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@

/**
* Raised when a Channel Event Log is generated for a channel.
* https://wiki.asterisk.org/wiki/display/AST/Asterisk+13+ManagerEvent_CEL
* <p>
* <a href="https://docs.asterisk.org/Latest_API/API_Documentation/AMI_Events/CEL/">Asterisk AMI Events: CEL</a>
*/
public class CelEvent extends ManagerEvent {
private static final long serialVersionUID = 1L;
Expand All @@ -22,7 +23,11 @@ public class CelEvent extends ManagerEvent {
public static final String CEL_EVENT_FORWARD = "FORWARD";
public static final String CEL_EVENT_LINKEDID_END = "LINKEDID_END";
public static final String CEL_EVENT_LOCAL_OPTIMIZE = "LOCAL_OPTIMIZE";
public static final String CEL_EVENT_LOCAL_OPTIMIZE_BEGIN = "LOCAL_OPTIMIZE_BEGIN";
public static final String CEL_EVENT_USER_DEFINED = "USER_DEFINED";
public static final String CEL_EVENT_STREAM_BEGIN = "STREAM_BEGIN";
public static final String CEL_EVENT_STREAM_END = "STREAM_END";
public static final String CEL_EVENT_DTMF = "DTMF";

private String eventName;
private String accountCode;
Expand Down