org.restcomm.connect.telephony.api.ConferenceInfo Maven / Gradle / Ivy
The newest version!
/*
* TeleStax, Open Source Cloud Communications
* Copyright 2011-2014, Telestax Inc and individual contributors
* by the @authors tag.
*
* This program is free software: you can redistribute it and/or modify
* under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation; either version 3 of
* the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see
*
*/
package org.restcomm.connect.telephony.api;
import java.util.List;
import org.restcomm.connect.commons.annotations.concurrency.Immutable;
import org.restcomm.connect.commons.dao.Sid;
import akka.actor.ActorRef;
/**
* @author [email protected] (Thomas Quintana)
*/
@Immutable
public final class ConferenceInfo {
private final Sid sid;
private final List participants;
private final ConferenceStateChanged.State state;
private final String name;
private final boolean moderatorPresent;
private final int globalParticipants;
public ConferenceInfo(final Sid sid, final List participants, final ConferenceStateChanged.State state, final String name, final boolean moderatorPresent, final int globalParticipants) {
super();
this.sid = sid;
this.participants = participants;
this.state = state;
this.name = name;
this.moderatorPresent = moderatorPresent;
this.globalParticipants = globalParticipants;
}
public List participants() {
return participants;
}
public ConferenceStateChanged.State state() {
return state;
}
public String name() {
return name;
}
public Sid sid() {
return sid;
}
public boolean isModeratorPresent() { return moderatorPresent; }
public int globalParticipants(){
return globalParticipants;
}
@Override
public String toString() {
return "ConferenceInfo [sid=" + sid + ", participants=" + participants + ", state=" + state + ", name=" + name
+ ", moderatorPresent=" + moderatorPresent + ", globalParticipants=" + globalParticipants + "]";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy