org.asteriskjava.manager.event.ConfbridgeListRoomsEvent 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 ConfbridgeListRoomsEvent extends ResponseEvent
{
/**
* Serializable version identifier
*/
private static final long serialVersionUID = 1L;
private String conference;
private Integer parties;
private Integer marked;
private Boolean locked;
private String muted;
public ConfbridgeListRoomsEvent(Object source)
{
super(source);
}
/**
* Sets the id of the conference to be listed.
*/
public void setConference(String conference)
{
this.conference = conference;
}
/**
* Returns the id of the conference to be listed.
*/
public String getConference()
{
return conference;
}
/**
* Sets the number of participants in this conference.
*
* @param parties the number of participants in this conference.
*/
public void setParties(Integer parties)
{
this.parties = parties;
}
/**
* Returns the number of participants in this conference.
*
* @return the number of participants in this conference.
*/
public Integer getParties()
{
return parties;
}
/**
* Sets the number of marked participants in this conference.
*
* @param marked the number of marked participants in this conference.
*/
public void setMarked(Integer marked)
{
this.marked = marked;
}
/**
* Returns the number of marked participants in this conference.
*
* @return the number of marked participants in this conference.
*/
public Integer getMarked()
{
return marked;
}
public void setLocked(Boolean locked)
{
this.locked = locked;
}
public Boolean getLocked()
{
return locked;
}
public String getMuted()
{
return muted;
}
public void setMuted(String muted)
{
this.muted = muted;
}
}