Package | Description |
---|---|
com.google.web.bindery.requestfactory.gwt.client |
A package for managing client-server requests.
|
com.google.web.bindery.requestfactory.server.testing | |
com.google.web.bindery.requestfactory.shared |
Shared classes used on both the client and the server side for transmitting
data between the server and the client in JSON format.
|
com.google.web.bindery.requestfactory.shared.testing | |
com.google.web.bindery.requestfactory.vm.testing |
Modifier and Type | Class and Description |
---|---|
class |
DefaultRequestTransport
An implementation of
RequestTransport that uses a
RequestBuilder . |
Modifier and Type | Class and Description |
---|---|
class |
InProcessRequestTransport
A RequestTransport that calls a
SimpleRequestProcessor . |
Modifier and Type | Method and Description |
---|---|
RequestTransport |
RequestFactory.getRequestTransport()
Returns the RequestTransport set via
RequestFactory.initialize(com.google.web.bindery.event.shared.EventBus) . |
Modifier and Type | Method and Description |
---|---|
void |
RequestFactory.initialize(EventBus eventBus,
RequestTransport transport)
Start this request factory with a user-provided transport.
|
Modifier and Type | Class and Description |
---|---|
class |
FakeRequestTransport
A no-op implementation of
RequestTransport that can be used for unit
testing. |
Modifier and Type | Method and Description |
---|---|
RequestTransport |
FakeRequestFactory.getRequestTransport()
Returns the last value passed to
FakeRequestFactory.initialize(EventBus, RequestTransport) . |
Modifier and Type | Method and Description |
---|---|
void |
FakeRequestFactory.initialize(EventBus eventBus,
RequestTransport transport)
Saves the parameters for later retrieval.
|
Modifier and Type | Class and Description |
---|---|
class |
UrlRequestTransport
A trivial implementation of RequestTransport that uses a
HttpURLConnection . |