/**
* Provides interfaces and implementations for asynchronous HTTP client
* designed to be used within AngularJS framework.
* <p>
* In order to use the components in this module, the user must add the
* following inherit statements in his or code.
* </p>
* <pre>{@code
* <inherits name="com.asayama.gwt.angular.http.HttpClientModule" />
* }</pre>
* <p>
* The implementation of HTTP client is asynchronous in a sense that it does
* not block the UI thread. The client is synchronous in its request/response
* handling.
* </p>
*/
package com.asayama.gwt.angular.http.client;