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

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

The newest version!
package org.asteriskjava.manager.event;

/**
 * Created by Alexander Polakov  on 1/26/15.
 */
public class DtmfEndEvent extends DtmfEvent {
    /**
     *
     */
    private static final long serialVersionUID = 1L;
    private Integer durationMs;

    public DtmfEndEvent(Object source) {
        super(source);
        setBegin(false);
        setEnd(true);
    }

    public Integer getDurationMs() {
        return durationMs;
    }

    public void setDurationMs(Integer durationMs) {
        this.durationMs = durationMs;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy