Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ public class ListDialplanEvent extends ResponseEvent {
private String application;
private String appData;
private String registrar;
private String includeContext;
private String _switch;
private String ignorePattern;

public ListDialplanEvent(Object source) {
super(source);
Expand Down Expand Up @@ -119,4 +122,30 @@ public String getRegistrar() {
public void setRegistrar(String registrar) {
this.registrar = registrar;
}

public String getIncludeContext() {
return includeContext;
}

public void setIncludeContext(String includeContext) {
this.includeContext = includeContext;
}

public String getSwitch() {
return _switch;
}

public ListDialplanEvent setSwitch(String _switch) {
this._switch = _switch;
return this;
}

public String getIgnorePattern() {
return ignorePattern;
}

public ListDialplanEvent setIgnorePattern(String ignorePattern) {
this.ignorePattern = ignorePattern;
return this;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
public class ShowDialplanCompleteEvent extends ResponseEvent {
private static final long serialVersionUID = 1L;

private String eventList;
private Integer listItems;
private Integer listExtensions;
private Integer listPriorities;
Expand All @@ -24,6 +25,14 @@ public ShowDialplanCompleteEvent(Object source) {
super(source);
}

public String getEventList() {
return eventList;
}

public void setEventList(String eventList) {
this.eventList = eventList;
}

/**
* Returns the total number of list items reported.
*
Expand Down