Uses of Interface
javax.servlet.sip.SipServletRequest

Uses of SipServletRequest in javax.servlet.sip
 

Methods in javax.servlet.sip that return SipServletRequest
 SipServletRequest SipErrorEvent.getRequest()
          Returns the request object associated with this SipErrorEvent.
 SipServletRequest SipServletResponse.getRequest()
          Returns the request associated with this response.
 SipServletRequest SipServletResponse.createAck()
          Returns an ACK request object corresponding to this response.
 SipServletRequest SipServletRequest.createCancel()
          Returns a CANCEL request object.
 SipServletRequest SipFactory.createRequest(SipApplicationSession appSession, java.lang.String method, Address from, Address to)
          Returns a new request object with the specified request method, From, and To headers.
 SipServletRequest SipFactory.createRequest(SipApplicationSession appSession, java.lang.String method, URI from, URI to)
          Returns a new request object with the specified request method, From, and To headers.
 SipServletRequest SipFactory.createRequest(SipApplicationSession appSession, java.lang.String method, java.lang.String from, java.lang.String to)
          Returns a new request object with the specified request method, From, and To headers.
 SipServletRequest SipFactory.createRequest(SipServletRequest origRequest, boolean sameCallId)
          Creates a new request object belonging to a new SipSession.
 SipServletRequest Proxy.getOriginalRequest()
          Returns the request received from the upstream caller.
 SipServletRequest SipSession.createRequest(java.lang.String method)
          Returns a new request
 

Methods in javax.servlet.sip with parameters of type SipServletRequest
 SipServletRequest SipFactory.createRequest(SipServletRequest origRequest, boolean sameCallId)
          Creates a new request object belonging to a new SipSession.
protected  void SipServlet.doRequest(SipServletRequest req)
          Invoked to handle incoming requests.
protected  void SipServlet.doInvite(SipServletRequest req)
          Invoked by the server (via the service method) to handle incoming INVITE requests.
protected  void SipServlet.doAck(SipServletRequest req)
          Invoked by the server (via the service method) to handle incoming ACK requests.
protected  void SipServlet.doOptions(SipServletRequest req)
          Invoked by the server (via the service method) to handle incoming OPTIONS requests.
protected  void SipServlet.doBye(SipServletRequest req)
          Invoked by the server (via the service method) to handle incoming BYE requests.
protected  void SipServlet.doCancel(SipServletRequest req)
          Invoked by the server (via the service method) to handle incoming CANCEL requests.
protected  void SipServlet.doRegister(SipServletRequest req)
          Invoked by the server (via the service method) to handle incoming REGISTER requests.
protected  void SipServlet.doSubscribe(SipServletRequest req)
          Invoked by the server (via the service method) to handle incoming SUBSCRIBE requests.
protected  void SipServlet.doNotify(SipServletRequest req)
          Invoked by the server (via the service method) to handle incoming NOTIFY requests.
protected  void SipServlet.doMessage(SipServletRequest req)
          Invoked by the server (via the service method) to handle incoming MESSAGE requests.
protected  void SipServlet.doInfo(SipServletRequest req)
          Invoked by the server (via the service method) to handle incoming INFO requests.
protected  void SipServlet.doPrack(SipServletRequest req)
          Invoked by the server (via the service method) to handle incoming PRACK requests.
 

Constructors in javax.servlet.sip with parameters of type SipServletRequest
SipErrorEvent(SipServletRequest request, SipServletResponse response)
          Constructs a new SipErrorEvent.
 



SIP Servlet API 1.0