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

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

There is a newer version: 3.40.1
Show newest version
package org.asteriskjava.manager.event;

/**
 * This event is sent when the last user leaves a conference and it is torn down.
 *
 * @since 1.0.0
 */
public class ConfbridgeEndEvent extends ManagerEvent {

	/**
     * Serializable version identifier
     */
	private static final long serialVersionUID = -8973512592594074108L;
	private String conference;

	public ConfbridgeEndEvent(Object source) {
		super(source);
	}
	
	/**
     * Sets the id of the conference ended.
     *
     * @param conference the id of the conference ended.
     */	
    public void setConference(String conference)
    {
        this.conference = conference;
    }

    /**
     * Returns the id of the conference ended.
     *
     * @return the id of the conference ended.
     */ 
    public String getConference()
    {
        return conference;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy