Package javax.servlet.sip

Examples of javax.servlet.sip.SipServletRequest


     * SSA 7.1.2 requestURI, Call-ID, From, To, CSeq and Route headers
     */
    public SipServletRequest createRequest(String method) {       
        checkCreateRequestMethodValidity(method);

        SipServletRequest result = (getState() == State.INITIAL) ? createRequestInitial(method)
                                                        : createRequestCommitted(method);
        if (getDF() != null)
            getDF().getDialogLifeCycle().initUnitOfWork();
        return result;
    }
View Full Code Here

TOP

Related Classes of javax.servlet.sip.SipServletRequest

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.