All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.asteriskjava.manager.event.DongleNewCMGREvent Maven / Gradle / Ivy

There is a newer version: 3.40.1
Show newest version
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;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy