org.asteriskjava.manager.event.DongleNewCMGREvent 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.
package org.asteriskjava.manager.event;
public class DongleNewCMGREvent extends ManagerEvent
{
private static final long serialVersionUID = 3257845467831284784L;
private String device;
public DongleNewCMGREvent(Object source)
{
super(source);
}
public String getDevice()
{
return this.device;
}
public void setDevice(String device)
{
this.device = device;
}
}