
org.asteriskjava.manager.event.ConfbridgeListRoomsEvent Maven / Gradle / Ivy
package org.asteriskjava.manager.event;
public class ConfbridgeListRoomsEvent extends ResponseEvent {
private static final long serialVersionUID = 2082433998138877948L;
private String conference;
private Integer parties;
private Integer marked;
private Boolean locked;
public ConfbridgeListRoomsEvent(Object source) {
super(source);
}
/**
* Sets the id of the conference to be listed.
*
* @param conference
* conference
*/
public void setConference(String conference) {
this.conference = conference;
}
/**
* Returns the id of the conference to be listed.
*
* @return conference
*/
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;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy