Uses of Class
org.openamf.invoker.ServiceInvoker

Packages that use ServiceInvoker
org.openamf   
org.openamf.invoker   
 

Uses of ServiceInvoker in org.openamf
 

Methods in org.openamf that return ServiceInvoker
protected  ServiceInvoker DefaultGateway.getServiceInvoker(AMFBody requestBody, javax.servlet.http.HttpServletRequest httpServletRequest)
          This method is used to find the correct invoker for the request.
protected  ServiceInvoker AdvancedGateway.getServiceInvoker(AMFBody requestBody, javax.servlet.http.HttpServletRequest httpServletRequest)
          Uses the setting in openamf-config.xml to gets the correct invoker, enforce access control, and store state-beans in the request/session
 

Methods in org.openamf with parameters of type ServiceInvoker
protected  void DefaultGateway.preInvokeService(javax.servlet.http.HttpServletRequest httpServletRequest, ServiceInvoker serviceInvoker)
          Called before a body is invoked, if the selected invoker is a persistent service it's persistent service object will be looked up in the session
protected  java.lang.Object DefaultGateway.postInvokeService(javax.servlet.http.HttpServletRequest httpServletRequest, ServiceInvoker serviceInvoker, java.lang.Object serviceResult)
          Called after the body is invoked, if the selected invoker is a persistant service it's persistent service object will be stored in the session
protected  java.lang.Object AdvancedGateway.postInvokeService(javax.servlet.http.HttpServletRequest httpServletRequest, ServiceInvoker serviceInvoker, java.lang.Object serviceResult)
          Preforms any filtering that was defined in openamd-config.xml and then return control to the DefaultGateway
 

Uses of ServiceInvoker in org.openamf.invoker
 

Subclasses of ServiceInvoker in org.openamf.invoker
 class EJBServiceInvoker
          Simple EJB Service Invoker
 class JavaServiceInvoker
           
 class JMXServiceInvoker
          Simple JMX Service Invoker
 class PageableResultSetServiceInvoker
           
 class SessionControlInvoker
          Simple Session management Service
 class SpringBeanInvoker
           
 class WebServiceInvoker
           
 

Methods in org.openamf.invoker that return ServiceInvoker
static ServiceInvoker ServiceInvoker.load(java.lang.String className, ServiceRequest request, javax.servlet.http.HttpServletRequest httpServletRequest, javax.servlet.ServletContext servletContext)