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

org.asteriskjava.manager.event.ConfbridgeStartEvent 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 first user requests a conference and it is instantiated.
 *
 * @since 1.0.0
 */
public class ConfbridgeStartEvent extends ManagerEvent
{
    /**
     * Serializable version identifier
     */
    private static final long serialVersionUID = 1L;

    private String conference;

    public ConfbridgeStartEvent(Object source)
    {
        super(source);
    }

    /**
     * Sets the id of the conference started.
     *
     * @param conference the id of the conference started.
     */
    public void setConference(String conference)
    {
        this.conference = conference;
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy