org.mobicents.javax.servlet.sip.SipSessionExt Maven / Gradle / Ivy
/*
* JBoss, Home of Professional Open Source
* Copyright 2011, Red Hat, Inc. and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package org.mobicents.javax.servlet.sip;
import javax.servlet.sip.SipURI;
/**
* Interface Extension that adds extra features to the JSR 289 SipSession interface.
* It adds the following capabilities :
*
*
* -
* Allows for applications to set the outbound interface based on SipURI, to allow routing based on transport protocol as well.
*
* -
* Allows for applications to schedule work asynchronously against a SipSession in a thread-safe manner if used in conjunction with the Mobicents Concurrency Control Mechanism
*
* -
* Allows for applications to copy the record route headers on the responses to subsequent INVITE requests
* where the dialog route set shouldn't normally be changed to cope with non compliant RFC 3261 servers.
*
*
*
* Here is some sample code to show how the asynchronous work can be used :
*
*
* ((SipSessionExt)sipSession).scheduleAsynchronousWork(new SipSessionAsynchronousWork() {
* private static final long serialVersionUID = 1L;
*
* public void doAsynchronousWork(SipSession sipSession) {
*
* String textMessageToSend = (String) sipSession.getAttribute("textMessageToSend");
*
* try {
* SipServletRequest sipServletRequest = sipFactory.createRequest(
* sipSession.getSipApplicationSession(),
* "MESSAGE",
* "sip:[email protected]",
* "sip:[email protected]");
* SipURI sipUri = sipFactory.createSipURI("receiver", "127.0.0.1:5060");
* sipServletRequest.setRequestURI(sipUri);
* sipServletRequest.setContentLength(content.length());
* sipServletRequest.setContent(content, "text/plain;charset=UTF-8");
* sipServletRequest.send();
* } catch (ServletParseException e) {
* logger.error("Exception occured while parsing the addresses",e);
* } catch (IOException e) {
* logger.error("Exception occured while sending the request",e);
* }
* }
* });
*
*
* @author [email protected]
* @since 1.4
*/
public interface SipSessionExt {
/**
* In multi-homed environment this method can be used to select the outbound interface to use when sending requests for this SipSession.
* The specified address must be the address of one of the configured outbound interfaces. The set of SipURI objects which represent the supported outbound interfaces can be obtained from the servlet context attribute named javax.servlet.sip.outboundInterfaces.
* Invocation of this method also impacts the system headers generated by the container for this message, such as the the Via and the Contact header.
* The supplied IP address, port and transport are used to construct these system headers.
* @param outboundInterface the sip uri representing the outbound interface to use when sending requests out
* @throws NullPointerException on null sip uri
* @throws IllegalArgumentException if the sip uri is not understood by the container as one of its outbound interface
*/
void setOutboundInterface(SipURI outboundInterface);
/**
* This method allows an application to access a SipSession in an asynchronous manner.
* This method is useful for accessing the SipSession from Web or EJB modules in a converged application
* or from unmanaged threads started by the application itself.
*
* When this API is used in conjunction with the Mobicents Concurrency Control in SipSession mode,
* the container guarantees that the business logic contained within the SipSessionAsynchronousWork
* will be executed in a thread-safe manner.
*
* It has to be noted that the work may never execute if the session gets invalidated in the meantime
* and the work will be executed locally on the node on a cluster.
*
* @deprecated in favor of SipSessionsUtilExt.scheduleAsynchronousWork(String sipSessionId, SipSessionAsynchronousWork work)
* @param work the work to be performed on this SipSession.
*/
void scheduleAsynchronousWork(SipSessionAsynchronousWork work);
/**
* Allows for applications to copy the record route headers on the responses to subsequent INVITE requests
* where the dialog route set shouldn't normally be changed to cope with non compliant RFC 3261 servers.
*
* @param copyRecordRouteHeadersOnSubsequentResponses false by default, if true will exhibit the behavior described above
*/
void setCopyRecordRouteHeadersOnSubsequentResponses(boolean copyRecordRouteHeadersOnSubsequentResponses);
/**
* Allows for applications to copy the record route headers on the responses to subsequent INVITE requests
* where the dialog route set shouldn't normally be changed to cope with non compliant RFC 3261 servers.
*
* @param copyRecordRouteHeadersOnSubsequentResponses true if the session currently exhibit the behavior described above
*/
boolean getCopyRecordRouteHeadersOnSubsequentResponses();
//Issue:https://telestax.atlassian.net/browse/MSS-121
/**
* Allows for application to bypass routing to LoadBalancer for a request (if LoadBalancer is in use)
* This is useful to cope with NAT issues, where sip client has open NAT port to container but not to LoadBalancer
* @param bypassLoadBalancer
*/
void setBypassLoadBalancer(boolean bypassLoadBalancer);
/**
* Allows for application to bypass routing to LoadBalancer for a request (if LoadBalancer is in use)
* This is useful to cope with NAT issues, where sip client has open NAT port to container but not to LoadBalancer
* @return bypassLoadBalancer
*/
boolean getBypassLoadBalancer();
/**
* Allows for application to bypass routing to Proxy for a request (if Proxy is in use)
* This is useful to cope with NAT issues, where sip client has open NAT port to container but not to Proxy
* @param bypassProxy
*/
void setBypassProxy(boolean bypassProxy);
/**
* Allows for application to bypass routing to Proxy for a request (if Proxy is in use)
* This is useful to cope with NAT issues, where sip client has open NAT port to container but not to Proxy
* @param bypassProxy
*/
boolean getBypassProxy();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy