org.restcomm.connect.telephony.api.CallInfo 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 javax.servlet.sip.SipServletRequest;
import javax.servlet.sip.SipServletResponse;
import org.joda.time.DateTime;
import org.restcomm.connect.commons.annotations.concurrency.Immutable;
import org.restcomm.connect.commons.dao.Sid;
import org.restcomm.connect.dao.entities.MediaAttributes;
import org.restcomm.connect.commons.telephony.CreateCallType;
/**
* @author [email protected] (Thomas Quintana)
* @author [email protected]
*/
@Immutable
public final class CallInfo {
private final Sid sid;
private final Sid accountSid;
private CallStateChanged.State state;
private final CreateCallType type;
private final String direction;
private final DateTime dateCreated;
private final DateTime dateConUpdated;
private final String forwardedFrom;
private final String fromName;
private final String from;
private final String to;
private final SipServletRequest invite;
private final SipServletResponse lastResponse;
private final boolean webrtc;
private boolean muted;
private boolean isFromApi;
private final MediaAttributes mediaAttributes;
public CallInfo(final Sid sid, final Sid accountSid, final CallStateChanged.State state, final CreateCallType type, final String direction,
final DateTime dateCreated, final String forwardedFrom, final String fromName, final String from, final String to,
final SipServletRequest invite, final SipServletResponse lastResponse, final boolean webrtc, final boolean muted, final boolean isFromApi, final DateTime dateConUpdated, final MediaAttributes mediaAttributes) {
super();
this.sid = sid;
this.accountSid = accountSid;
this.state = state;
this.direction = direction;
this.dateCreated = dateCreated;
this.forwardedFrom = forwardedFrom;
this.fromName = fromName;
this.from = from;
this.to = to;
this.invite = invite;
this.lastResponse = lastResponse;
this.dateConUpdated = dateConUpdated;
this.type = type;
this.webrtc = webrtc;
this.muted = muted;
this.isFromApi = isFromApi;
this.mediaAttributes = mediaAttributes;
}
public DateTime dateCreated() {
return dateCreated;
}
public DateTime dateConUpdated() {
return dateConUpdated;
}
public String direction() {
return direction;
}
public CreateCallType type() {
return type;
}
public String forwardedFrom() {
return forwardedFrom;
}
public String fromName() {
return fromName;
}
public String from() {
return from;
}
public Sid sid() {
return sid;
}
public Sid accountSid() {
return accountSid;
}
public CallStateChanged.State state() {
return state;
}
public void setState(CallStateChanged.State state) {
this.state = state;
}
public String to() {
return to;
}
public SipServletRequest invite() {
return invite;
}
public SipServletResponse lastResponse() {
return lastResponse;
}
public boolean isWebrtc() {
return webrtc;
}
public boolean isMuted() {
return muted;
}
public void setMute(boolean muted) {
this.muted = muted;
}
public boolean isFromApi() {
return isFromApi;
}
public MediaAttributes mediaAttributes(){
return this.mediaAttributes;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy