org.asteriskjava.manager.event.DongleStatusEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of asterisk-java Show documentation
Show all versions of asterisk-java Show documentation
The free Java library for Asterisk PBX integration.
The newest version!
package org.asteriskjava.manager.event;
public class DongleStatusEvent extends ManagerEvent {
private static final long serialVersionUID = 3257845467831284784L;
private String device;
private String status;
public DongleStatusEvent(Object source) {
super(source);
}
public String getDevice() {
return this.device;
}
public void setDevice(String device) {
this.device = device;
}
public String getStatus() {
return status;
}
public void setStatus(String status) {
this.status = status;
}
}