org.restcomm.connect.telephony.api.InitializeOutbound 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.SipURI;
import org.restcomm.connect.commons.annotations.concurrency.Immutable;
import org.restcomm.connect.commons.dao.Sid;
import org.restcomm.connect.dao.DaoManager;
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 InitializeOutbound {
// The displayed name of the original user
private final String name;
// From SipURI
private final SipURI from;
// To SipURI
private final SipURI to;
private final String username;
private final String password;
private final long timeout;
private final boolean isFromApi;
private final String apiVersion;
private final Sid accountId;
private final CreateCallType type;
private final DaoManager daoManager;
private Sid parentCallSid;
private final boolean webrtc;
private final MediaAttributes mediaAttributes;
//IMS parameters
private boolean outboundToIms;
private String imsProxyAddress;
private int imsProxyPort;
public InitializeOutbound(final String name, final SipURI from, final SipURI to, final String username,
final String password, final long timeout, final boolean isFromApi, final String apiVersion,
final Sid accountId, final CreateCallType type, final DaoManager daoManager, final boolean webrtc,
final boolean outboundToIms, final String imsProxyAddress, final int imsProxyPort, final MediaAttributes mediaAttributes) {
this(name, from, to, username, password, timeout, isFromApi, apiVersion, accountId, type, daoManager, webrtc, mediaAttributes);
this.outboundToIms = outboundToIms;
this.imsProxyAddress = imsProxyAddress;
this.imsProxyPort = imsProxyPort;
}
public InitializeOutbound(final String name, final SipURI from, final SipURI to, final String username,
final String password, final long timeout, final boolean isFromApi, final String apiVersion,
final Sid accountId, final CreateCallType type, final DaoManager daoManager, final boolean webrtc) {
this(name, from, to, username, password, timeout, isFromApi, apiVersion, accountId, type, daoManager, webrtc, new MediaAttributes());
}
public InitializeOutbound(final String name, final SipURI from, final SipURI to, final String username,
final String password, final long timeout, final boolean isFromApi, final String apiVersion,
final Sid accountId, final CreateCallType type, final DaoManager daoManager, final boolean webrtc, final MediaAttributes mediaAttributes) {
super();
this.name = name;
this.from = from;
this.to = to;
this.username = username;
this.password = password;
this.timeout = timeout;
this.isFromApi = isFromApi;
this.apiVersion = apiVersion;
this.accountId = accountId;
this.type = type;
this.daoManager = daoManager;
this.webrtc = webrtc;
this.outboundToIms = outboundToIms;
this.imsProxyAddress = imsProxyAddress;
this.imsProxyPort = imsProxyPort;
this.mediaAttributes = mediaAttributes;
}
public String name() {
return name;
}
public SipURI from() {
return from;
}
public SipURI to() {
return to;
}
public long timeout() {
return timeout;
}
public boolean isFromApi() {
return isFromApi;
}
public String apiVersion() {
return apiVersion;
}
public Sid accountId() {
return accountId;
}
public String username() {
return username;
}
public String password() {
return password;
}
public CreateCallType type() {
return type;
}
public DaoManager getDaoManager() {
return daoManager;
}
public Sid getParentCallSid() {
return parentCallSid;
}
public void setParentCallSid(Sid parentCallSid) {
this.parentCallSid = parentCallSid;
}
public boolean isWebrtc() {
return webrtc;
}
public boolean isOutboundToIms() {
return outboundToIms;
}
public String getImsProxyAddress() {
return imsProxyAddress;
}
public int getImsProxyPort() {
return imsProxyPort;
}
public MediaAttributes getMediaAttributes() { return mediaAttributes; }
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy