Uses of Class
org.mobicents.servlet.sip.message.SipServletRequestImpl

Packages that use SipServletRequestImpl
org.mobicents.servlet.sip.core   
org.mobicents.servlet.sip.core.dispatchers   
org.mobicents.servlet.sip.core.session   
org.mobicents.servlet.sip.message   
org.mobicents.servlet.sip.proxy   
org.mobicents.servlet.sip.security   
org.mobicents.servlet.sip.security.authentication   
org.mobicents.servlet.sip.startup   
 

Uses of SipServletRequestImpl in org.mobicents.servlet.sip.core
 

Methods in org.mobicents.servlet.sip.core with parameters of type SipServletRequestImpl
 SipApplicationRouterInfo SipApplicationDispatcherImpl.getNextInterestedApplication(SipServletRequestImpl sipServletRequest)
           
 SipApplicationRouterInfo SipApplicationDispatcher.getNextInterestedApplication(SipServletRequestImpl sipServletRequestImpl)
           
 

Uses of SipServletRequestImpl in org.mobicents.servlet.sip.core.dispatchers
 

Methods in org.mobicents.servlet.sip.core.dispatchers with parameters of type SipServletRequestImpl
static void MessageDispatcher.callServlet(SipServletRequestImpl request)
           
protected  void RequestDispatcher.forwardRequestStatefully(SipServletRequestImpl sipServletRequest, SipSessionRoutingType sipSessionRoutingType, SipRouteModifier sipRouteModifier)
          Forward statefully a request whether it is initial or subsequent and keep track of the transactions used in application data of each transaction
 RequestDispatcher MessageDispatcherFactory.getRequestDispatcher(SipServletRequestImpl sipServletRequest, SipApplicationDispatcherImpl sipApplicationDispatcher)
           
protected static SipApplicationSessionKey MessageDispatcher.makeAppSessionKey(SipContext sipContext, SipServletRequestImpl sipServletRequestImpl, java.lang.String applicationName)
           
static boolean MessageDispatcher.securityCheck(SipServletRequestImpl request)
           
 

Uses of SipServletRequestImpl in org.mobicents.servlet.sip.core.session
 

Fields in org.mobicents.servlet.sip.core.session declared as SipServletRequestImpl
protected  SipServletRequestImpl SipSessionImpl.sessionCreatingTransactionRequest
          We use this for REGISTER or MESSAGE, where a dialog doesn't exist to carry the session info.
 

Methods in org.mobicents.servlet.sip.core.session that return SipServletRequestImpl
 SipServletRequestImpl SipSessionImpl.getSessionCreatingTransactionRequest()
           
 

Methods in org.mobicents.servlet.sip.core.session with parameters of type SipServletRequestImpl
 void SipSessionImpl.updateStateOnSubsequentRequest(SipServletRequestImpl request, boolean receive)
          Update the sip session state upon sending/receiving a subsequent request Covers JSR 289 Section 6.2.1 along with updateStateOnResponse method
 void MobicentsSipSession.updateStateOnSubsequentRequest(SipServletRequestImpl sipServletRequestImpl, boolean receive)
           
 boolean SipSessionImpl.validateCSeq(SipServletRequestImpl sipServletRequest)
           
 boolean MobicentsSipSession.validateCSeq(SipServletRequestImpl sipServletRequestImpl)
           
 

Uses of SipServletRequestImpl in org.mobicents.servlet.sip.message
 

Methods in org.mobicents.servlet.sip.message that return SipServletRequestImpl
 SipServletRequestImpl SipServletRequestImpl.getLinkedRequest()
           
 

Methods in org.mobicents.servlet.sip.message with parameters of type SipServletRequestImpl
 SipApplicationRouterInfo SipFactoryImpl.getNextInterestedApplication(SipServletRequestImpl sipServletRequestImpl)
          
 void SipServletRequestImpl.setLinkedRequest(SipServletRequestImpl linkedRequest)
          Add a record route header for app composition
 void SipServletResponseImpl.setOriginalRequest(SipServletRequestImpl originalRequest)
           
 void B2buaHelperImpl.unlinkOriginalRequestInternal(SipServletRequestImpl sipServletRequestImpl)
           
 void MobicentsSipSessionFacade.updateStateOnSubsequentRequest(SipServletRequestImpl sipServletRequestImpl, boolean receive)
           
 boolean MobicentsSipSessionFacade.validateCSeq(SipServletRequestImpl request)
           
 

Uses of SipServletRequestImpl in org.mobicents.servlet.sip.proxy
 

Fields in org.mobicents.servlet.sip.proxy declared as SipServletRequestImpl
 SipServletRequestImpl ProxyBranchImpl.TransactionRequest.request
           
 

Methods in org.mobicents.servlet.sip.proxy that return SipServletRequestImpl
 SipServletRequestImpl ProxyBranchImpl.getPrackOriginalRequest()
           
 

Methods in org.mobicents.servlet.sip.proxy with parameters of type SipServletRequestImpl
static javax.sip.message.Request ProxyUtils.createProxiedRequest(SipServletRequestImpl originalRequest, ProxyBranchImpl proxyBranch, URI destination, SipURI outboundInterface, SipURI routeRecord, SipURI path)
           
 void ProxyBranchImpl.proxyDialogStateless(SipServletRequestImpl request)
          This method proxies requests without updating JSIP dialog state.
 void ProxyBranchImpl.proxySubsequentRequest(SipServletRequestImpl request)
          Call this method when a subsequent request must be proxied through the branch.
 void ProxyImpl.setOriginalRequest(SipServletRequestImpl originalRequest)
           
 void ProxyBranchImpl.setPrackOriginalRequest(SipServletRequestImpl prackOriginalRequest)
           
 

Constructors in org.mobicents.servlet.sip.proxy with parameters of type SipServletRequestImpl
ProxyBranchImpl.TransactionRequest(java.lang.String branch, SipServletRequestImpl request)
           
ProxyImpl(SipServletRequestImpl request, SipFactoryImpl sipFactoryImpl)
           
 

Uses of SipServletRequestImpl in org.mobicents.servlet.sip.security
 

Methods in org.mobicents.servlet.sip.security with parameters of type SipServletRequestImpl
static boolean SipSecurityUtils.authenticate(SipContext sipStandardContext, SipServletRequestImpl request, SipSecurityConstraint sipConstraint)
           
static boolean SipSecurityUtils.authorize(SipContext sipStandardContext, SipServletRequestImpl request)
           
 

Uses of SipServletRequestImpl in org.mobicents.servlet.sip.security.authentication
 

Methods in org.mobicents.servlet.sip.security.authentication with parameters of type SipServletRequestImpl
 boolean DigestAuthenticator.authenticate(SipServletRequestImpl request, SipServletResponseImpl response, SipLoginConfig config)
          Authenticate the user making this request, based on the specified login configuration.
protected abstract  boolean AuthenticatorBase.authenticate(SipServletRequestImpl request, SipServletResponseImpl response, SipLoginConfig config)
          Authenticate the user making this request, based on the specified login configuration.
protected static java.security.Principal DigestAuthenticator.findPrincipal(SipServletRequestImpl request, java.lang.String authorization, org.apache.catalina.Realm realm)
          Parse the specified authorization credentials, and return the associated Principal that these credentials authenticate (if any) from the specified Realm.
protected  java.lang.String DigestAuthenticator.generateNOnce(SipServletRequestImpl request)
          Generate a unique token.
protected  void AuthenticatorBase.register(SipServletRequestImpl request, SipServletResponseImpl response, java.security.Principal principal, java.lang.String authType, java.lang.String username, java.lang.String password)
          Register an authenticated Principal and authentication type in our request, in the current session (if there is one), and with our SingleSignOn valve, if there is one.
protected  void DigestAuthenticator.setAuthenticateHeader(SipServletRequestImpl request, SipServletResponseImpl response, SipLoginConfig config, java.lang.String nOnce)
          Generates the WWW-Authenticate header.
 

Uses of SipServletRequestImpl in org.mobicents.servlet.sip.startup
 

Methods in org.mobicents.servlet.sip.startup with parameters of type SipServletRequestImpl
 void SipContext.exitSipAppHa(SipServletRequestImpl request, SipServletResponseImpl response)
           
 



Copyright © 2010. All Rights Reserved.