Uses of Class
org.granite.messaging.service.ServiceInvocationContext

Packages that use ServiceInvocationContext
org.granite.messaging.service   
org.granite.messaging.service.security   
org.granite.tide   
org.granite.tide.ejb   
 

Uses of ServiceInvocationContext in org.granite.messaging.service
 

Methods in org.granite.messaging.service that return ServiceInvocationContext
 ServiceInvocationContext DefaultMethodMatcher.findServiceMethod(Message message, Destination destination, Object service, String methodName, Object[] params)
           
 ServiceInvocationContext MethodMatcher.findServiceMethod(Message message, Destination destination, Object service, String methodName, Object[] params)
           
 

Methods in org.granite.messaging.service with parameters of type ServiceInvocationContext
protected  Object EjbServiceInvoker.afterInvocation(ServiceInvocationContext context, Object result)
           
 Object ServiceInvocationListener.afterInvocation(ServiceInvocationContext context, Object result)
           
protected  Object ServiceInvoker.afterInvocation(ServiceInvocationContext context, Object result)
          Called after a successful invocation of the service's method.
protected  void EjbServiceInvoker.afterInvocationError(ServiceInvocationContext context, Throwable error)
           
 void ServiceInvocationListener.afterInvocationError(ServiceInvocationContext context, Throwable t)
           
protected  void ServiceInvoker.afterInvocationError(ServiceInvocationContext context, Throwable error)
          Called after a failed invocation of the service's method, possibly after a new attempt (see ServiceInvoker.retryInvocation(ServiceInvocationContext, Throwable).
 void ServiceInvocationListener.beforeInvocation(ServiceInvocationContext context)
           
protected  void ServiceInvoker.beforeInvocation(ServiceInvocationContext context)
          Called before the invocation of the services method.
protected  ServiceException AbstractServiceExceptionHandler.getServiceException(ServiceInvocationContext context, Throwable e)
           
 ServiceException DefaultServiceExceptionHandler.handleInvocationException(ServiceInvocationContext context, Throwable e)
           
 ServiceException ServiceExceptionHandler.handleInvocationException(ServiceInvocationContext context, Throwable t)
           
protected  boolean ServiceInvoker.retryInvocation(ServiceInvocationContext context, Throwable t)
          Called after a failed invocation of the service's method.
 

Uses of ServiceInvocationContext in org.granite.messaging.service.security
 

Methods in org.granite.messaging.service.security with parameters of type ServiceInvocationContext
 void RemotingDestinationSecurizer.canExecute(ServiceInvocationContext context)
           
 

Uses of ServiceInvocationContext in org.granite.tide
 

Methods in org.granite.tide with parameters of type ServiceInvocationContext
protected  Object TideServiceInvoker.afterInvocation(ServiceInvocationContext context, Object result)
           
protected  void TideServiceInvoker.afterInvocationError(ServiceInvocationContext context, Throwable error)
           
protected  void TideServiceInvoker.beforeInvocation(ServiceInvocationContext context)
           
abstract  IInvocationResult TideServiceContext.postCall(ServiceInvocationContext context, Object result, String componentName, Class<?> componentClass)
           
 void TideServiceContext.postCallFault(ServiceInvocationContext context, Throwable t, String componentName, Class<?> componentClass)
           
abstract  void TideServiceContext.prepareCall(ServiceInvocationContext context, IInvocationCall call, String componentName, Class<?> componentClass)
           
 

Uses of ServiceInvocationContext in org.granite.tide.ejb
 

Methods in org.granite.tide.ejb with parameters of type ServiceInvocationContext
 IInvocationResult EjbServiceContext.postCall(ServiceInvocationContext context, Object result, String componentName, Class<?> componentClass)
           
 void EjbServiceContext.postCallFault(ServiceInvocationContext context, Throwable t, String componentName, Class<?> componentClass)
           
 void EjbServiceContext.prepareCall(ServiceInvocationContext context, IInvocationCall c, String componentName, Class<?> componentClass)