A B C D E F G H I L N O P R S T U V

A

AbstractActionHandler<A extends Action<R>,R extends Result> - Class in net.customware.gwt.dispatch.server
Simple abstract super-class for ActionHandler implementations that forces the Action class to be passed in as a constructor to the handler.
AbstractActionHandler(Class<A>) - Constructor for class net.customware.gwt.dispatch.server.AbstractActionHandler
 
AbstractDispatch - Class in net.customware.gwt.dispatch.server
Abstract base implementation of the Dispatch
AbstractDispatch() - Constructor for class net.customware.gwt.dispatch.server.AbstractDispatch
 
AbstractDispatchAsync - Class in net.customware.gwt.dispatch.client
An abstract base class that provides methods that can be called to handle success or failure results from the remote service.
AbstractDispatchAsync(ExceptionHandler) - Constructor for class net.customware.gwt.dispatch.client.AbstractDispatchAsync
 
AbstractDispatchModule - Class in net.customware.gwt.dispatch.client.gin
Abstract base class that binds an instance of ExceptionHandler for use by AbstractDispatchAsync implementations.
AbstractDispatchModule(Class<? extends ExceptionHandler>) - Constructor for class net.customware.gwt.dispatch.client.gin.AbstractDispatchModule
 
AbstractSecureDispatchServlet - Class in net.customware.gwt.dispatch.server.secure
 
AbstractSecureDispatchServlet() - Constructor for class net.customware.gwt.dispatch.server.secure.AbstractSecureDispatchServlet
 
AbstractSimpleResult<T> - Class in net.customware.gwt.dispatch.shared
A common use-case is returning a single value from an action.
AbstractSimpleResult() - Constructor for class net.customware.gwt.dispatch.shared.AbstractSimpleResult
 
AbstractSimpleResult(T) - Constructor for class net.customware.gwt.dispatch.shared.AbstractSimpleResult
 
AbstractStandardDispatchServlet - Class in net.customware.gwt.dispatch.server.standard
 
AbstractStandardDispatchServlet() - Constructor for class net.customware.gwt.dispatch.server.standard.AbstractStandardDispatchServlet
 
AbstractUpdateResult<T> - Class in net.customware.gwt.dispatch.shared
Provides support for simple update response which contain both the old value and new value.
AbstractUpdateResult() - Constructor for class net.customware.gwt.dispatch.shared.AbstractUpdateResult
For serialization support only.
AbstractUpdateResult(T, T) - Constructor for class net.customware.gwt.dispatch.shared.AbstractUpdateResult
 
Action<R extends Result> - Interface in net.customware.gwt.dispatch.shared
An action represents a command sent to the Dispatch.
ActionException - Exception in net.customware.gwt.dispatch.shared
These are thrown by Dispatch.execute(Action) if there is a problem executing a particular Action.
ActionException() - Constructor for exception net.customware.gwt.dispatch.shared.ActionException
 
ActionException(String) - Constructor for exception net.customware.gwt.dispatch.shared.ActionException
 
ActionException(Throwable) - Constructor for exception net.customware.gwt.dispatch.shared.ActionException
 
ActionException(String, Throwable) - Constructor for exception net.customware.gwt.dispatch.shared.ActionException
 
ActionHandler<A extends Action<R>,R extends Result> - Interface in net.customware.gwt.dispatch.server
Instances of this interface will handle specific types of Action classes.
ActionHandlerLinker - Class in net.customware.gwt.dispatch.server.guice
This class links any registered ActionHandler instances with the default ActionHandlerRegistry.
ActionHandlerMap<A extends Action<R>,R extends Result> - Interface in net.customware.gwt.dispatch.server.guice
 
ActionHandlerModule - Class in net.customware.gwt.dispatch.server.guice
This is an abstract base class that configures Guice to inject Dispatch and ActionHandler instances.
ActionHandlerModule() - Constructor for class net.customware.gwt.dispatch.server.guice.ActionHandlerModule
 
ActionHandlerRegistry - Interface in net.customware.gwt.dispatch.server
 
ActionResult<A extends Action<R>,R extends Result> - Class in net.customware.gwt.dispatch.server
This contains both the original Action and the Result of that action.
ActionResult(A, R) - Constructor for class net.customware.gwt.dispatch.server.ActionResult
 
addHandler(ActionHandler<?, ?>) - Method in class net.customware.gwt.dispatch.server.DefaultActionHandlerRegistry
 
addHandler(ActionHandler<?, ?>) - Method in interface net.customware.gwt.dispatch.server.InstanceActionHandlerRegistry
Adds the specified handler instance to the registry.
addHandlerClass(Class<A>, Class<? extends ActionHandler<A, R>>) - Method in interface net.customware.gwt.dispatch.server.ClassActionHandlerRegistry
Registers the specified ActionHandler class with the registry.
addHandlerClass(Class<A>, Class<? extends ActionHandler<A, R>>) - Method in class net.customware.gwt.dispatch.server.LazyActionHandlerRegistry
 
AppEngineSecureSessionAccessor - Class in net.customware.gwt.dispatch.client.appengine
An implementation of SecureSessionAccessor for Google App Engine authentication.
AppEngineSecureSessionAccessor() - Constructor for class net.customware.gwt.dispatch.client.appengine.AppEngineSecureSessionAccessor
 
AppEngineSecureSessionValidator - Class in net.customware.gwt.dispatch.server.appengine
Validates the client session id with the provided request.
AppEngineSecureSessionValidator() - Constructor for class net.customware.gwt.dispatch.server.appengine.AppEngineSecureSessionValidator
 
AppEngineSecurityModule - Class in net.customware.gwt.dispatch.client.gin
Configures the application to use Google App Engine security for authentication.
AppEngineSecurityModule() - Constructor for class net.customware.gwt.dispatch.client.gin.AppEngineSecurityModule
 
AppEngineSecurityModule - Class in net.customware.gwt.dispatch.server.guice
This is a Guice configuration module for projects being configured for security and deployment in the Google App Engine environment.
AppEngineSecurityModule() - Constructor for class net.customware.gwt.dispatch.server.guice.AppEngineSecurityModule
 

B

BatchAction - Class in net.customware.gwt.dispatch.shared
This provides a simple way to send multiple actions to be executed in sequence.
BatchAction(BatchAction.OnException, Action<?>...) - Constructor for class net.customware.gwt.dispatch.shared.BatchAction
Constructs a new batch action, which will attempt to execute the provided list of actions in order.
BatchAction.OnException - Enum in net.customware.gwt.dispatch.shared
 
BatchActionHandler - Class in net.customware.gwt.dispatch.server
This handles BatchAction requests, which are a set of multiple actions that need to all be executed successfully in sequence for the whole action to succeed.
BatchActionHandler() - Constructor for class net.customware.gwt.dispatch.server.BatchActionHandler
 
BatchResult - Class in net.customware.gwt.dispatch.shared
Contains the list of Results from successful actions in the BatchAction.
BatchResult(List<Result>, List<DispatchException>) - Constructor for class net.customware.gwt.dispatch.shared.BatchResult
Creates a new result with the list of results from the batch action, in order.
bindHandler(Class<A>, Class<? extends ActionHandler<A, R>>) - Method in class net.customware.gwt.dispatch.server.guice.ActionHandlerModule
Call this method to binds the specified ActionHandler instance class.

C

ClassActionHandlerRegistry - Interface in net.customware.gwt.dispatch.server
Instances of this interface allow ActionHandler classes to be registered for specific Action types.
clearHandlers() - Method in interface net.customware.gwt.dispatch.server.ActionHandlerRegistry
Clears all registered handlers from the registry.
clearHandlers() - Method in class net.customware.gwt.dispatch.server.DefaultActionHandlerRegistry
 
clearHandlers() - Method in class net.customware.gwt.dispatch.server.LazyActionHandlerRegistry
 
clearSessionId() - Method in class net.customware.gwt.dispatch.client.secure.CookieSecureSessionAccessor
 
clearSessionId() - Method in interface net.customware.gwt.dispatch.client.secure.SecureSessionAccessor
Clears the session id, effectively closing the current session.
configure() - Method in class net.customware.gwt.dispatch.client.gin.AbstractDispatchModule
 
configure() - Method in class net.customware.gwt.dispatch.client.gin.AppEngineSecurityModule
 
configure() - Method in class net.customware.gwt.dispatch.server.guice.ActionHandlerModule
 
configure() - Method in class net.customware.gwt.dispatch.server.guice.AppEngineSecurityModule
 
configure() - Method in class net.customware.gwt.dispatch.server.guice.ServerDispatchModule
 
configureHandlers() - Method in class net.customware.gwt.dispatch.server.guice.ActionHandlerModule
Override this method to configure handlers.
CookieSecureSessionAccessor - Class in net.customware.gwt.dispatch.client.secure
 
CookieSecureSessionAccessor(String) - Constructor for class net.customware.gwt.dispatch.client.secure.CookieSecureSessionAccessor
 
createInstance(Class<? extends ActionHandler<?, ?>>) - Method in class net.customware.gwt.dispatch.server.guice.GuiceLazyActionHandlerRegistry
 
createInstance(Class<? extends ActionHandler<?, ?>>) - Method in class net.customware.gwt.dispatch.server.LazyActionHandlerRegistry
 

D

DefaultActionHandlerRegistry - Class in net.customware.gwt.dispatch.server
 
DefaultActionHandlerRegistry() - Constructor for class net.customware.gwt.dispatch.server.DefaultActionHandlerRegistry
 
DefaultExceptionHandler - Class in net.customware.gwt.dispatch.client
A default implementation of ExceptionHandler which does not do anything.
DefaultExceptionHandler() - Constructor for class net.customware.gwt.dispatch.client.DefaultExceptionHandler
 
Dispatch - Interface in net.customware.gwt.dispatch.server
Executes actions and returns the results.
DispatchAsync - Interface in net.customware.gwt.dispatch.client
This is an asynchronous equivalent of the Dispatch interface on the server side.
DispatchException - Exception in net.customware.gwt.dispatch.shared
An abstract superclass for exceptions that can be thrown by the Dispatch system.
DispatchException() - Constructor for exception net.customware.gwt.dispatch.shared.DispatchException
 
DispatchException(String) - Constructor for exception net.customware.gwt.dispatch.shared.DispatchException
 
DispatchException(Throwable) - Constructor for exception net.customware.gwt.dispatch.shared.DispatchException
 
DispatchException(String, Throwable) - Constructor for exception net.customware.gwt.dispatch.shared.DispatchException
 

E

equals(Object) - Method in class net.customware.gwt.dispatch.server.guice.ServerDispatchModule
Override so that only one instance of this class will ever be installed in an Injector.
ExceptionHandler - Interface in net.customware.gwt.dispatch.client
Implementations of this interface can be added to a DispatchAsync implementation to intercept exceptions which return from further up the chain.
ExceptionHandler.Status - Enum in net.customware.gwt.dispatch.client
 
exceptionHandlerType - Variable in class net.customware.gwt.dispatch.client.gin.AbstractDispatchModule
 
execute(A, AsyncCallback<R>) - Method in interface net.customware.gwt.dispatch.client.DispatchAsync
 
execute(A, AsyncCallback<R>) - Method in class net.customware.gwt.dispatch.client.secure.SecureDispatchAsync
 
execute(String, Action<?>) - Method in interface net.customware.gwt.dispatch.client.secure.SecureDispatchService
 
execute(String, Action<?>, AsyncCallback<Result>) - Method in interface net.customware.gwt.dispatch.client.secure.SecureDispatchServiceAsync
 
execute(A, AsyncCallback<R>) - Method in class net.customware.gwt.dispatch.client.standard.StandardDispatchAsync
 
execute(Action<?>) - Method in interface net.customware.gwt.dispatch.client.standard.StandardDispatchService
 
execute(Action<?>, AsyncCallback<Result>) - Method in interface net.customware.gwt.dispatch.client.standard.StandardDispatchServiceAsync
Executes the specified action.
execute(A) - Method in class net.customware.gwt.dispatch.server.AbstractDispatch
 
execute(A, ExecutionContext) - Method in interface net.customware.gwt.dispatch.server.ActionHandler
Handles the specified action.
execute(BatchAction, ExecutionContext) - Method in class net.customware.gwt.dispatch.server.BatchActionHandler
 
execute(A) - Method in interface net.customware.gwt.dispatch.server.Dispatch
Executes the specified action and returns the appropriate result.
execute(A, boolean) - Method in interface net.customware.gwt.dispatch.server.ExecutionContext
Executes an action in the current context.
execute(A) - Method in interface net.customware.gwt.dispatch.server.ExecutionContext
Executes an action in the current context.
execute(String, Action<?>) - Method in class net.customware.gwt.dispatch.server.secure.AbstractSecureDispatchServlet
 
execute(Action<?>) - Method in class net.customware.gwt.dispatch.server.standard.AbstractStandardDispatchServlet
 
executed(A, R, ActionHandler<A, R>, ExecutionContext) - Method in class net.customware.gwt.dispatch.server.AbstractDispatch
Method invoked after the specified action has been succesfully executed with the specified handler.
executing(A, ActionHandler<A, R>, ExecutionContext) - Method in class net.customware.gwt.dispatch.server.AbstractDispatch
Method invoked before executing the specified action with the specified handler.
ExecutionContext - Interface in net.customware.gwt.dispatch.server
ExecutionContext instances are passed to ActionHandlers, and allows them to execute sub-actions.

F

failed(A, Throwable, ActionHandler<A, R>, ExecutionContext) - Method in class net.customware.gwt.dispatch.server.AbstractDispatch
Method invoked after the specified action has been unsuccesfully executed with the specified handler.
findHandler(A) - Method in interface net.customware.gwt.dispatch.server.ActionHandlerRegistry
Searches the registry and returns the first handler which supports the specied action, or null if none is available.
findHandler(A) - Method in class net.customware.gwt.dispatch.server.DefaultActionHandlerRegistry
 
findHandler(A) - Method in class net.customware.gwt.dispatch.server.LazyActionHandlerRegistry
 

G

GenericUtils - Class in net.customware.gwt.dispatch.server.standard
 
get() - Method in class net.customware.gwt.dispatch.shared.AbstractSimpleResult
 
getAction() - Method in class net.customware.gwt.dispatch.server.ActionResult
 
getActionClass() - Method in interface net.customware.gwt.dispatch.server.guice.ActionHandlerMap
 
getActionHandlerClass() - Method in interface net.customware.gwt.dispatch.server.guice.ActionHandlerMap
 
getActionHandlerRegistryClass() - Method in class net.customware.gwt.dispatch.server.guice.ServerDispatchModule
The class returned by this method is bound to the ActionHandlerRegistry.
getActions() - Method in class net.customware.gwt.dispatch.shared.BatchAction
The list of actions to execute.
getActionType() - Method in class net.customware.gwt.dispatch.server.AbstractActionHandler
 
getActionType() - Method in interface net.customware.gwt.dispatch.server.ActionHandler
 
getActionType() - Method in class net.customware.gwt.dispatch.server.SimpleActionHandler
 
getCauseClassname() - Method in exception net.customware.gwt.dispatch.shared.DispatchException
 
getDispatch() - Method in class net.customware.gwt.dispatch.server.guice.GuiceSecureDispatchServlet
 
getDispatch() - Method in class net.customware.gwt.dispatch.server.guice.GuiceStandardDispatchServlet
 
getDispatch() - Method in class net.customware.gwt.dispatch.server.secure.AbstractSecureDispatchServlet
 
getDispatch() - Method in class net.customware.gwt.dispatch.server.spring.SpringSecureDispatchServlet
 
getDispatch() - Method in class net.customware.gwt.dispatch.server.spring.SpringStandardDispatchServlet
 
getDispatch() - Method in class net.customware.gwt.dispatch.server.standard.AbstractStandardDispatchServlet
 
getDispatchClass() - Method in class net.customware.gwt.dispatch.server.guice.ServerDispatchModule
The class returned by this method is bound to the Dispatch service.
getException(int) - Method in class net.customware.gwt.dispatch.shared.BatchResult
 
getExceptions() - Method in class net.customware.gwt.dispatch.shared.BatchResult
The list of exceptions, matched to the result number.
getFirstTypeParameterDeclaredOnSuperclass(Class<?>) - Static method in class net.customware.gwt.dispatch.server.standard.GenericUtils
 
getHandlerRegistry() - Method in class net.customware.gwt.dispatch.server.AbstractDispatch
 
getHandlerRegistry() - Method in class net.customware.gwt.dispatch.server.SimpleDispatch
 
getNew() - Method in class net.customware.gwt.dispatch.shared.AbstractUpdateResult
The new/current value.
getOld() - Method in class net.customware.gwt.dispatch.shared.AbstractUpdateResult
The previous value.
getOnException() - Method in class net.customware.gwt.dispatch.shared.BatchAction
The expected behaviour if any of the sub-actions throw an exception.
getPassword() - Method in class net.customware.gwt.dispatch.shared.secure.SimpleAuthenticationAction
 
getResult() - Method in class net.customware.gwt.dispatch.server.ActionResult
 
getResult(int) - Method in class net.customware.gwt.dispatch.shared.BatchResult
Returns the result for the specified index.
getResult(int, Class<T>) - Method in class net.customware.gwt.dispatch.shared.BatchResult
Returns the result only if the value at the specified index is of the specified type.
getResults() - Method in class net.customware.gwt.dispatch.shared.BatchResult
The list of results.
getSessionId() - Method in class net.customware.gwt.dispatch.client.secure.CookieSecureSessionAccessor
 
getSessionId() - Method in interface net.customware.gwt.dispatch.client.secure.SecureSessionAccessor
Gets the current session ID.
getSessionId() - Method in class net.customware.gwt.dispatch.shared.secure.SecureSessionResult
 
getSessionValidator() - Method in class net.customware.gwt.dispatch.server.guice.GuiceSecureDispatchServlet
 
getSessionValidator() - Method in class net.customware.gwt.dispatch.server.secure.AbstractSecureDispatchServlet
 
getSessionValidator() - Method in class net.customware.gwt.dispatch.server.spring.SpringSecureDispatchServlet
 
getUsername() - Method in class net.customware.gwt.dispatch.shared.secure.SimpleAuthenticationAction
 
GuiceDispatch - Class in net.customware.gwt.dispatch.server.guice
A simple extension of SimpleDispatch with Guice annotations.
GuiceDispatch(ActionHandlerRegistry) - Constructor for class net.customware.gwt.dispatch.server.guice.GuiceDispatch
 
GuiceLazyActionHandlerRegistry - Class in net.customware.gwt.dispatch.server.guice
This will use Guice to create instances of registered ActionHandlers on in a lazy manner.
GuiceLazyActionHandlerRegistry(Injector) - Constructor for class net.customware.gwt.dispatch.server.guice.GuiceLazyActionHandlerRegistry
 
GuiceSecureDispatchServlet - Class in net.customware.gwt.dispatch.server.guice
A servlet implementation of the SecureDispatchService.
GuiceSecureDispatchServlet(Dispatch, SecureSessionValidator) - Constructor for class net.customware.gwt.dispatch.server.guice.GuiceSecureDispatchServlet
 
GuiceStandardDispatchServlet - Class in net.customware.gwt.dispatch.server.guice
 
GuiceStandardDispatchServlet(Dispatch) - Constructor for class net.customware.gwt.dispatch.server.guice.GuiceStandardDispatchServlet
 

H

hashCode() - Method in class net.customware.gwt.dispatch.server.guice.ServerDispatchModule
Override so that only one instance of this class will ever be installed in an Injector.

I

init(ServletConfig) - Method in class net.customware.gwt.dispatch.server.spring.SpringSecureDispatchServlet
 
init(ServletConfig) - Method in class net.customware.gwt.dispatch.server.spring.SpringStandardDispatchServlet
 
InstanceActionHandlerRegistry - Interface in net.customware.gwt.dispatch.server
This is a subclass of ActionHandlerRegistry which allows registration of handlers by passing in the handler instance directly.
InvalidSessionException - Exception in net.customware.gwt.dispatch.shared.secure
 
InvalidSessionException() - Constructor for exception net.customware.gwt.dispatch.shared.secure.InvalidSessionException
 
InvalidSessionException(String) - Constructor for exception net.customware.gwt.dispatch.shared.secure.InvalidSessionException
 
isValid(String, HttpServletRequest) - Method in class net.customware.gwt.dispatch.server.appengine.AppEngineSecureSessionValidator
 
isValid(String, HttpServletRequest) - Method in interface net.customware.gwt.dispatch.server.secure.SecureSessionValidator
 
iterator() - Method in class net.customware.gwt.dispatch.shared.BatchResult
 

L

LazyActionHandlerRegistry - Class in net.customware.gwt.dispatch.server
This is a lazy-loading implementation of the registry.
LazyActionHandlerRegistry() - Constructor for class net.customware.gwt.dispatch.server.LazyActionHandlerRegistry
 
linkHandlers(Injector, ActionHandlerRegistry) - Static method in class net.customware.gwt.dispatch.server.guice.ActionHandlerLinker
 

N

net.customware.gwt.dispatch.client - package net.customware.gwt.dispatch.client
 
net.customware.gwt.dispatch.client.appengine - package net.customware.gwt.dispatch.client.appengine
 
net.customware.gwt.dispatch.client.gin - package net.customware.gwt.dispatch.client.gin
 
net.customware.gwt.dispatch.client.secure - package net.customware.gwt.dispatch.client.secure
 
net.customware.gwt.dispatch.client.standard - package net.customware.gwt.dispatch.client.standard
 
net.customware.gwt.dispatch.server - package net.customware.gwt.dispatch.server
 
net.customware.gwt.dispatch.server.appengine - package net.customware.gwt.dispatch.server.appengine
 
net.customware.gwt.dispatch.server.guice - package net.customware.gwt.dispatch.server.guice
 
net.customware.gwt.dispatch.server.secure - package net.customware.gwt.dispatch.server.secure
 
net.customware.gwt.dispatch.server.spring - package net.customware.gwt.dispatch.server.spring
 
net.customware.gwt.dispatch.server.standard - package net.customware.gwt.dispatch.server.standard
 
net.customware.gwt.dispatch.shared - package net.customware.gwt.dispatch.shared
 
net.customware.gwt.dispatch.shared.general - package net.customware.gwt.dispatch.shared.general
 
net.customware.gwt.dispatch.shared.secure - package net.customware.gwt.dispatch.shared.secure
 

O

onFailure(A, Throwable, AsyncCallback<R>) - Method in class net.customware.gwt.dispatch.client.AbstractDispatchAsync
 
onFailure(Throwable) - Method in class net.customware.gwt.dispatch.client.DefaultExceptionHandler
Always returns Status#CONTINUE.
onFailure(Throwable) - Method in interface net.customware.gwt.dispatch.client.ExceptionHandler
This method is called when an exception occurs.
onFailure(A, Throwable, AsyncCallback<R>) - Method in class net.customware.gwt.dispatch.client.secure.SecureDispatchAsync
 
onSuccess(A, R, AsyncCallback<R>) - Method in class net.customware.gwt.dispatch.client.AbstractDispatchAsync
 

P

provideDispatchAsync(ExceptionHandler, SecureSessionAccessor) - Method in class net.customware.gwt.dispatch.client.gin.SecureDispatchModule
 
provideDispatchAsync(ExceptionHandler) - Method in class net.customware.gwt.dispatch.client.gin.StandardDispatchModule
 

R

removeHandler(ActionHandler<?, ?>) - Method in class net.customware.gwt.dispatch.server.DefaultActionHandlerRegistry
 
removeHandler(ActionHandler<?, ?>) - Method in interface net.customware.gwt.dispatch.server.InstanceActionHandlerRegistry
Removes the specified handler.
removeHandlerClass(Class<A>, Class<? extends ActionHandler<A, R>>) - Method in interface net.customware.gwt.dispatch.server.ClassActionHandlerRegistry
Removes any registration of the specified class, as well as any instances which have been created.
removeHandlerClass(Class<A>, Class<? extends ActionHandler<A, R>>) - Method in class net.customware.gwt.dispatch.server.LazyActionHandlerRegistry
 
Result - Interface in net.customware.gwt.dispatch.shared
A marker interface for Action results.
rollback(A, R, ExecutionContext) - Method in interface net.customware.gwt.dispatch.server.ActionHandler
Attempts to roll back the specified action.
rollback(BatchAction, BatchResult, ExecutionContext) - Method in class net.customware.gwt.dispatch.server.BatchActionHandler
 
rollback(A, R, ExecutionContext) - Method in class net.customware.gwt.dispatch.server.SimpleActionHandler
 

S

SecureDispatchAsync - Class in net.customware.gwt.dispatch.client.secure
This class is the default implementation of DispatchAsync, which is essentially the client-side access to the Dispatch class on the server-side.
SecureDispatchAsync(ExceptionHandler, SecureSessionAccessor) - Constructor for class net.customware.gwt.dispatch.client.secure.SecureDispatchAsync
 
SecureDispatchModule - Class in net.customware.gwt.dispatch.client.gin
This module binds the DispatchAsync to SecureDispatchAsync.
SecureDispatchModule() - Constructor for class net.customware.gwt.dispatch.client.gin.SecureDispatchModule
Constructs a new GIN configuration module that sets up a secure DispatchAsync implementation, using the DefaultExceptionHandler.
SecureDispatchModule(Class<? extends ExceptionHandler>) - Constructor for class net.customware.gwt.dispatch.client.gin.SecureDispatchModule
Constructs a new GIN configuration module that sets up a secure DispatchAsync implementation, using the provided ExceptionHandler implementation class.
SecureDispatchService - Interface in net.customware.gwt.dispatch.client.secure
 
SecureDispatchServiceAsync - Interface in net.customware.gwt.dispatch.client.secure
 
SecureSessionAccessor - Interface in net.customware.gwt.dispatch.client.secure
Provides access to the session ID.
SecureSessionResult - Class in net.customware.gwt.dispatch.shared.secure
Contains a valid secure session id.
SecureSessionResult(String) - Constructor for class net.customware.gwt.dispatch.shared.secure.SecureSessionResult
 
SecureSessionValidator - Interface in net.customware.gwt.dispatch.server.secure
Implementors must provide an implementation of this interface and provide it to the SecureDispatchService implementation so that it can check for valid session ids.
ServerDispatchModule - Class in net.customware.gwt.dispatch.server.guice
This module will configure the implementation for the Dispatch and ActionHandlerRegistry interfaces.
ServerDispatchModule() - Constructor for class net.customware.gwt.dispatch.server.guice.ServerDispatchModule
 
ServerDispatchModule(Class<? extends Dispatch>) - Constructor for class net.customware.gwt.dispatch.server.guice.ServerDispatchModule
 
ServerDispatchModule(Class<? extends Dispatch>, Class<? extends ActionHandlerRegistry>) - Constructor for class net.customware.gwt.dispatch.server.guice.ServerDispatchModule
 
ServiceException - Exception in net.customware.gwt.dispatch.shared
This is thrown by services when there is a low-level problem while processing an action execution.
ServiceException() - Constructor for exception net.customware.gwt.dispatch.shared.ServiceException
 
ServiceException(String) - Constructor for exception net.customware.gwt.dispatch.shared.ServiceException
 
ServiceException(String, Throwable) - Constructor for exception net.customware.gwt.dispatch.shared.ServiceException
 
ServiceException(Throwable) - Constructor for exception net.customware.gwt.dispatch.shared.ServiceException
 
setActionHandlers(List<ActionHandler<?, ?>>) - Method in class net.customware.gwt.dispatch.server.DefaultActionHandlerRegistry
Sets the specified actionHandlers as the only action handler held by this registry instance
SimpleActionHandler<A extends Action<R>,R extends Result> - Class in net.customware.gwt.dispatch.server
The SimpleActionHandler is a base implementation which allows for only the ActionHandler.execute(Action, ExecutionContext) method to be implemented.
SimpleActionHandler() - Constructor for class net.customware.gwt.dispatch.server.SimpleActionHandler
 
SimpleAuthenticationAction - Class in net.customware.gwt.dispatch.shared.secure
A simple username/password authentication request.
SimpleAuthenticationAction(String, String) - Constructor for class net.customware.gwt.dispatch.shared.secure.SimpleAuthenticationAction
 
SimpleDispatch - Class in net.customware.gwt.dispatch.server
 
SimpleDispatch(ActionHandlerRegistry) - Constructor for class net.customware.gwt.dispatch.server.SimpleDispatch
 
size() - Method in class net.customware.gwt.dispatch.shared.BatchResult
The size of the result set.
SpringDispatch - Class in net.customware.gwt.dispatch.server.spring
A simple extension of SimpleDispatch with Spring annotations.
SpringDispatch(ActionHandlerRegistry) - Constructor for class net.customware.gwt.dispatch.server.spring.SpringDispatch
 
SpringSecureDispatchServlet - Class in net.customware.gwt.dispatch.server.spring
 
SpringSecureDispatchServlet() - Constructor for class net.customware.gwt.dispatch.server.spring.SpringSecureDispatchServlet
 
SpringStandardDispatchServlet - Class in net.customware.gwt.dispatch.server.spring
 
SpringStandardDispatchServlet() - Constructor for class net.customware.gwt.dispatch.server.spring.SpringStandardDispatchServlet
 
StandardDispatchAsync - Class in net.customware.gwt.dispatch.client.standard
This class is the default implementation of DispatchAsync, which is essentially the client-side access to the Dispatch class on the server-side.
StandardDispatchAsync(ExceptionHandler) - Constructor for class net.customware.gwt.dispatch.client.standard.StandardDispatchAsync
 
StandardDispatchModule - Class in net.customware.gwt.dispatch.client.gin
This module binds the DispatchAsync to StandardDispatchAsync.
StandardDispatchModule() - Constructor for class net.customware.gwt.dispatch.client.gin.StandardDispatchModule
Constructs a new GIN configuration module that sets up a DispatchAsync implementation, using the DefaultExceptionHandler.
StandardDispatchModule(Class<? extends ExceptionHandler>) - Constructor for class net.customware.gwt.dispatch.client.gin.StandardDispatchModule
 
StandardDispatchService - Interface in net.customware.gwt.dispatch.client.standard
There currently seem to be GWT compilation problems with services that use generic templates in method parameters.
StandardDispatchServiceAsync - Interface in net.customware.gwt.dispatch.client.standard
 
StringResult - Class in net.customware.gwt.dispatch.shared.general
A simple String result.
StringResult() - Constructor for class net.customware.gwt.dispatch.shared.general.StringResult
 
StringResult(String) - Constructor for class net.customware.gwt.dispatch.shared.general.StringResult
 
StringUpdateResult - Class in net.customware.gwt.dispatch.shared.general
A simple String update result.
StringUpdateResult() - Constructor for class net.customware.gwt.dispatch.shared.general.StringUpdateResult
 
StringUpdateResult(String, String) - Constructor for class net.customware.gwt.dispatch.shared.general.StringUpdateResult
 

T

toString() - Method in exception net.customware.gwt.dispatch.shared.DispatchException
 

U

UnsupportedActionException - Exception in net.customware.gwt.dispatch.shared
 
UnsupportedActionException(Action<? extends Result>) - Constructor for exception net.customware.gwt.dispatch.shared.UnsupportedActionException
 
UnsupportedActionException(Class<? extends Action<? extends Result>>) - Constructor for exception net.customware.gwt.dispatch.shared.UnsupportedActionException
 

V

valueOf(String) - Static method in enum net.customware.gwt.dispatch.client.ExceptionHandler.Status
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum net.customware.gwt.dispatch.shared.BatchAction.OnException
Returns the enum constant of this type with the specified name.
values() - Static method in enum net.customware.gwt.dispatch.client.ExceptionHandler.Status
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum net.customware.gwt.dispatch.shared.BatchAction.OnException
Returns an array containing the constants of this enum type, in the order they are declared.

A B C D E F G H I L N O P R S T U V

Copyright © 2011 customware.net. All Rights Reserved.