google.com/intl/fr/webtoolkit/articles/security_for_gwt_applications.html" > this document. For more security use {@link DispatchAsyncSecureModule}.
If you don't need XSRF protection, you can use directly this module with your {@link com.google.gwt.inject.client.Ginjector}, i.e.:
{@literal @}GinModules( { {@link DispatchAsyncModule}.class, ... }
For customization, skip the previous step and install the module in one of your {@link #configure()} methods:
install(new DispatchAsyncModule.Builder().exceptionHandler( MyExceptionHandler.class).sessionAccessor( MySecurityCookieAccessor.class).build());
You can pass {@code null} as any of the two parameter to fallback to thedefault.
@author David Peterson
@author Philippe Beaudoin
@author Brendan Doherty