GWTP Dispatch Server Base 0.6-redhat-1
A B C D E F G I L R S U

A

AbstractActionHandler<A extends Action<R>,R extends Result> - Class in com.gwtplatform.dispatch.server.actionhandler
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 com.gwtplatform.dispatch.server.actionhandler.AbstractActionHandler
 
AbstractDefaultActionValidator - Class in com.gwtplatform.dispatch.server.actionvalidator
The default ActionValidator implementation.
AbstractDefaultActionValidator() - Constructor for class com.gwtplatform.dispatch.server.actionvalidator.AbstractDefaultActionValidator
 
AbstractDispatchImpl - Class in com.gwtplatform.dispatch.server
This is the server-side implementation of the Dispatch service with an arbitrary action type, for which the client-side async service is DispatchAsync.
AbstractDispatchImpl(ActionHandlerValidatorRegistry) - Constructor for class com.gwtplatform.dispatch.server.AbstractDispatchImpl
 
AbstractDispatchServiceImpl - Class in com.gwtplatform.dispatch.server
This is the server-side implementation of the DispatchService, for which the client-side async service is DispatchServiceAsync.
AbstractDispatchServiceImpl(Logger, Dispatch, RequestProvider) - Constructor for class com.gwtplatform.dispatch.server.AbstractDispatchServiceImpl
 
AbstractEagerActionHandlerValidatorRegistryImpl - Class in com.gwtplatform.dispatch.server.actionhandlervalidator
This is a eager-loading implementation of the registry.
AbstractEagerActionHandlerValidatorRegistryImpl() - Constructor for class com.gwtplatform.dispatch.server.actionhandlervalidator.AbstractEagerActionHandlerValidatorRegistryImpl
 
AbstractHttpSessionSecurityCookieFilter - Class in com.gwtplatform.dispatch.server
This filter will automatically inject a security cookie inside the request the first time the page is loaded.
AbstractHttpSessionSecurityCookieFilter(String) - Constructor for class com.gwtplatform.dispatch.server.AbstractHttpSessionSecurityCookieFilter
 
AbstractRandomSecurityCookieFilter - Class in com.gwtplatform.dispatch.server
This filter will automatically inject a security cookie inside the request the first time the page is loaded.
AbstractRandomSecurityCookieFilter(String, SecureRandom) - Constructor for class com.gwtplatform.dispatch.server.AbstractRandomSecurityCookieFilter
 
ActionHandler<A extends Action<R>,R extends Result> - Interface in com.gwtplatform.dispatch.server.actionhandler
Instances of this interface will handle specific types of Action classes.
ActionHandlerValidatorClass<A extends Action<R>,R extends Result> - Class in com.gwtplatform.dispatch.server.actionhandlervalidator
Convenience class to store ActionHandler and ActionValidator class definitions.
ActionHandlerValidatorClass(Class<? extends ActionHandler<A, R>>, Class<? extends ActionValidator>) - Constructor for class com.gwtplatform.dispatch.server.actionhandlervalidator.ActionHandlerValidatorClass
 
ActionHandlerValidatorInstance - Class in com.gwtplatform.dispatch.server.actionhandlervalidator
Convenience class to store ActionHandler and ActionValidator instance definitions.
ActionHandlerValidatorInstance(ActionValidator, ActionHandler<?, ?>) - Constructor for class com.gwtplatform.dispatch.server.actionhandlervalidator.ActionHandlerValidatorInstance
 
ActionHandlerValidatorLinkerHelper - Class in com.gwtplatform.dispatch.server.actionhandlervalidator
 
ActionHandlerValidatorLinkerHelper() - Constructor for class com.gwtplatform.dispatch.server.actionhandlervalidator.ActionHandlerValidatorLinkerHelper
 
ActionHandlerValidatorLinkerHelper.BeanProvider - Interface in com.gwtplatform.dispatch.server.actionhandlervalidator
 
ActionHandlerValidatorLinkerHelper.BeanProvider.BindingDescriptor<B> - Interface in com.gwtplatform.dispatch.server.actionhandlervalidator
 
ActionHandlerValidatorLinkerHelper.CommonBindingDescriptor<B> - Class in com.gwtplatform.dispatch.server.actionhandlervalidator
BingingDescriptor implementation for the Guice/Spring.
ActionHandlerValidatorLinkerHelper.CommonBindingDescriptor(B, String) - Constructor for class com.gwtplatform.dispatch.server.actionhandlervalidator.ActionHandlerValidatorLinkerHelper.CommonBindingDescriptor
 
ActionHandlerValidatorMap<A extends Action<R>,R extends Result> - Interface in com.gwtplatform.dispatch.server.actionhandlervalidator
This is the interface that define the map of ActionHandlerValidatorInstance.
ActionHandlerValidatorMapImpl<A extends Action<R>,R extends Result> - Class in com.gwtplatform.dispatch.server.actionhandlervalidator
Implementation of ActionHandlerValidatorMap that links Actions to ActionHandlerValidatorClasses.
ActionHandlerValidatorMapImpl(Class<A>, ActionHandlerValidatorClass<A, R>) - Constructor for class com.gwtplatform.dispatch.server.actionhandlervalidator.ActionHandlerValidatorMapImpl
 
ActionHandlerValidatorRegistry - Interface in com.gwtplatform.dispatch.server.actionhandlervalidator
Registry definition for ActionValidator.
ActionResult<A extends Action<R>,R extends Result> - Class in com.gwtplatform.dispatch.server.actionhandler
This contains both the original Action and the Result of that action.
ActionResult(A, R, boolean) - Constructor for class com.gwtplatform.dispatch.server.actionhandler.ActionResult
Creates a new action/result pair.
ActionValidator - Interface in com.gwtplatform.dispatch.server.actionvalidator
Implementors must provide an implementation of this interface and provide it to the DispatchService implementation so that it can check whether or not the action can be executed.
addActionHandlerValidator(Class<A>, ActionHandlerValidatorInstance) - Method in class com.gwtplatform.dispatch.server.actionhandlervalidator.AbstractEagerActionHandlerValidatorRegistryImpl
 
addActionHandlerValidator(Class<A>, ActionHandlerValidatorInstance) - Method in interface com.gwtplatform.dispatch.server.actionhandlervalidator.EagerActionHandlerValidatorRegistry
 
addActionHandlerValidatorClass(Class<A>, ActionHandlerValidatorClass<A, R>) - Method in interface com.gwtplatform.dispatch.server.actionhandlervalidator.LazyActionHandlerValidatorRegistry
Registers the specified ActionValidator class with the registry.

B

BatchActionHandler - Class in com.gwtplatform.dispatch.server.actionhandler
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 com.gwtplatform.dispatch.server.actionhandler.BatchActionHandler
 

C

clearActionHandlerValidators() - Method in class com.gwtplatform.dispatch.server.actionhandlervalidator.AbstractEagerActionHandlerValidatorRegistryImpl
 
clearActionHandlerValidators() - Method in interface com.gwtplatform.dispatch.server.actionhandlervalidator.ActionHandlerValidatorRegistry
Clears all registered ActionValidator from the registry.
com.gwtplatform.dispatch.server - package com.gwtplatform.dispatch.server
 
com.gwtplatform.dispatch.server.actionhandler - package com.gwtplatform.dispatch.server.actionhandler
 
com.gwtplatform.dispatch.server.actionhandlervalidator - package com.gwtplatform.dispatch.server.actionhandlervalidator
 
com.gwtplatform.dispatch.server.actionvalidator - package com.gwtplatform.dispatch.server.actionvalidator
 

D

destroy() - Method in class com.gwtplatform.dispatch.server.AbstractHttpSessionSecurityCookieFilter
 
destroy() - Method in class com.gwtplatform.dispatch.server.AbstractRandomSecurityCookieFilter
 
dispatch - Variable in class com.gwtplatform.dispatch.server.AbstractDispatchServiceImpl
 
Dispatch - Interface in com.gwtplatform.dispatch.server
The base class of the synchronous dispatcher service with an arbitrary action type.
doFilter(ServletRequest, ServletResponse, FilterChain) - Method in class com.gwtplatform.dispatch.server.AbstractHttpSessionSecurityCookieFilter
 
doFilter(ServletRequest, ServletResponse, FilterChain) - Method in class com.gwtplatform.dispatch.server.AbstractRandomSecurityCookieFilter
 

E

EagerActionHandlerValidatorRegistry - Interface in com.gwtplatform.dispatch.server.actionhandlervalidator
 
execute(A) - Method in class com.gwtplatform.dispatch.server.AbstractDispatchImpl
 
execute(String, Action<?>) - Method in class com.gwtplatform.dispatch.server.AbstractDispatchServiceImpl
 
execute(A, ExecutionContext) - Method in interface com.gwtplatform.dispatch.server.actionhandler.ActionHandler
Handles the specified action.
execute(BatchAction, ExecutionContext) - Method in class com.gwtplatform.dispatch.server.actionhandler.BatchActionHandler
 
execute(A) - Method in interface com.gwtplatform.dispatch.server.Dispatch
Executes the specified action and returns the appropriate result.
execute(A) - Method in interface com.gwtplatform.dispatch.server.ExecutionContext
Executes an action in the current context.
ExecutionContext - Interface in com.gwtplatform.dispatch.server
ExecutionContext instances are passed to ActionHandlers, and allows them to execute sub-actions.

F

findActionHandlerValidator(A) - Method in class com.gwtplatform.dispatch.server.actionhandlervalidator.AbstractEagerActionHandlerValidatorRegistryImpl
 
findActionHandlerValidator(A) - Method in interface com.gwtplatform.dispatch.server.actionhandlervalidator.ActionHandlerValidatorRegistry
Searches the registry and returns the first ActionValidator which supports the specified Action , or null if none is available.
findActionValidator(Class<? extends ActionValidator>) - Method in class com.gwtplatform.dispatch.server.actionhandlervalidator.AbstractEagerActionHandlerValidatorRegistryImpl
 
findActionValidator(Class<? extends ActionValidator>) - Method in interface com.gwtplatform.dispatch.server.actionhandlervalidator.ActionHandlerValidatorRegistry
Searches the registry for already bound ActionValidator class and return the instance or null if none is available.

G

getAction() - Method in class com.gwtplatform.dispatch.server.actionhandler.ActionResult
 
getActionClass() - Method in interface com.gwtplatform.dispatch.server.actionhandlervalidator.ActionHandlerValidatorMap
 
getActionClass() - Method in class com.gwtplatform.dispatch.server.actionhandlervalidator.ActionHandlerValidatorMapImpl
 
getActionHandler() - Method in class com.gwtplatform.dispatch.server.actionhandlervalidator.ActionHandlerValidatorInstance
 
getActionHandlerClass() - Method in class com.gwtplatform.dispatch.server.actionhandlervalidator.ActionHandlerValidatorClass
 
getActionHandlerValidatorClass() - Method in interface com.gwtplatform.dispatch.server.actionhandlervalidator.ActionHandlerValidatorMap
 
getActionHandlerValidatorClass() - Method in class com.gwtplatform.dispatch.server.actionhandlervalidator.ActionHandlerValidatorMapImpl
 
getActionType() - Method in class com.gwtplatform.dispatch.server.actionhandler.AbstractActionHandler
 
getActionType() - Method in interface com.gwtplatform.dispatch.server.actionhandler.ActionHandler
 
getActionValidator() - Method in class com.gwtplatform.dispatch.server.actionhandlervalidator.ActionHandlerValidatorInstance
 
getActionValidatorClass() - Method in class com.gwtplatform.dispatch.server.actionhandlervalidator.ActionHandlerValidatorClass
 
getBean() - Method in interface com.gwtplatform.dispatch.server.actionhandlervalidator.ActionHandlerValidatorLinkerHelper.BeanProvider.BindingDescriptor
 
getBean() - Method in class com.gwtplatform.dispatch.server.actionhandlervalidator.ActionHandlerValidatorLinkerHelper.CommonBindingDescriptor
 
getBeanName() - Method in interface com.gwtplatform.dispatch.server.actionhandlervalidator.ActionHandlerValidatorLinkerHelper.BeanProvider.BindingDescriptor
 
getBeanName() - Method in class com.gwtplatform.dispatch.server.actionhandlervalidator.ActionHandlerValidatorLinkerHelper.CommonBindingDescriptor
 
getBindings(Class<B>) - Method in interface com.gwtplatform.dispatch.server.actionhandlervalidator.ActionHandlerValidatorLinkerHelper.BeanProvider
 
getInstance(Class<B>) - Method in interface com.gwtplatform.dispatch.server.actionhandlervalidator.ActionHandlerValidatorLinkerHelper.BeanProvider
 
getResult() - Method in class com.gwtplatform.dispatch.server.actionhandler.ActionResult
 
getSecurityCookieName() - Method in class com.gwtplatform.dispatch.server.AbstractDispatchServiceImpl
 
getServletRequest() - Method in interface com.gwtplatform.dispatch.server.RequestProvider
 
getSession() - Method in class com.gwtplatform.dispatch.server.AbstractHttpSessionSecurityCookieFilter
 

I

init(FilterConfig) - Method in class com.gwtplatform.dispatch.server.AbstractHttpSessionSecurityCookieFilter
 
init(FilterConfig) - Method in class com.gwtplatform.dispatch.server.AbstractRandomSecurityCookieFilter
 
isExecuted() - Method in class com.gwtplatform.dispatch.server.actionhandler.ActionResult
Checks wheter this action was executed via ActionHandler.execute(Action, com.gwtplatform.dispatch.server.ExecutionContext) or undone via ActionHandler.undo(Action, Result, com.gwtplatform.dispatch.server.ExecutionContext).
isValid(Action<? extends Result>) - Method in class com.gwtplatform.dispatch.server.actionvalidator.AbstractDefaultActionValidator
 
isValid(Action<? extends Result>) - Method in interface com.gwtplatform.dispatch.server.actionvalidator.ActionValidator
Validate whether or not that Action can be executed at this time.

L

LazyActionHandlerValidatorRegistry - Interface in com.gwtplatform.dispatch.server.actionhandlervalidator
 
linkValidators(ActionHandlerValidatorLinkerHelper.BeanProvider, ActionHandlerValidatorRegistry) - Static method in class com.gwtplatform.dispatch.server.actionhandlervalidator.ActionHandlerValidatorLinkerHelper
 
logger - Variable in class com.gwtplatform.dispatch.server.AbstractDispatchServiceImpl
 
logStackTrace(Logger, Throwable) - Static method in class com.gwtplatform.dispatch.server.Utils
Logs an entire stack trace to the logger, so that it can easily be viewed in the App Engine log.
logStackTrace(Logger, Level, Throwable) - Static method in class com.gwtplatform.dispatch.server.Utils
Logs an entire stack trace to the logger, so that it can easily be viewed in the App Engine log.

R

random - Variable in class com.gwtplatform.dispatch.server.AbstractRandomSecurityCookieFilter
 
removeActionHandlerValidator(Class<A>) - Method in class com.gwtplatform.dispatch.server.actionhandlervalidator.AbstractEagerActionHandlerValidatorRegistryImpl
 
removeActionHandlerValidator(Class<A>) - Method in interface com.gwtplatform.dispatch.server.actionhandlervalidator.EagerActionHandlerValidatorRegistry
 
removeActionHandlerValidatorClass(Class<A>, ActionHandlerValidatorClass<A, R>) - Method in interface com.gwtplatform.dispatch.server.actionhandlervalidator.LazyActionHandlerValidatorRegistry
Removes any registration of specified class, as well as any instances which have been created.
requestProvider - Variable in class com.gwtplatform.dispatch.server.AbstractDispatchServiceImpl
 
RequestProvider - Interface in com.gwtplatform.dispatch.server
 

S

securityCookieName - Variable in class com.gwtplatform.dispatch.server.AbstractRandomSecurityCookieFilter
 

U

undo(A, R) - Method in class com.gwtplatform.dispatch.server.AbstractDispatchImpl
 
undo(String, Action<Result>, Result) - Method in class com.gwtplatform.dispatch.server.AbstractDispatchServiceImpl
 
undo(A, R, ExecutionContext) - Method in interface com.gwtplatform.dispatch.server.actionhandler.ActionHandler
Undoes the specified action.
undo(BatchAction, BatchResult, ExecutionContext) - Method in class com.gwtplatform.dispatch.server.actionhandler.BatchActionHandler
 
undo(A, R) - Method in interface com.gwtplatform.dispatch.server.Dispatch
Undoes a previously executed action.
undo(A, R) - Method in interface com.gwtplatform.dispatch.server.ExecutionContext
Undoes an action in the current context.
Utils - Class in com.gwtplatform.dispatch.server
Collection of utility methods.
Utils() - Constructor for class com.gwtplatform.dispatch.server.Utils
 

A B C D E F G I L R S U
GWTP Dispatch Server Base 0.6-redhat-1

Copyright © 2010-2012 ArcBees. All Rights Reserved.