Uses of Interface
com.google.web.bindery.requestfactory.shared.EntityProxy
-
Packages that use EntityProxy Package Description com.google.web.bindery.requestfactory.gwt.ui.client Classes used by the request factory to manage proxies, user logins, and authentication.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 -
-
Uses of EntityProxy in com.google.web.bindery.requestfactory.gwt.ui.client
Classes in com.google.web.bindery.requestfactory.gwt.ui.client with type parameters of type EntityProxy Modifier and Type Class Description class
EntityProxyKeyProvider<P extends EntityProxy>
AnEntityProxy
-aware key provider, handy for use withSelectionModel
and various cell widgets. -
Uses of EntityProxy in com.google.web.bindery.requestfactory.shared
Classes in com.google.web.bindery.requestfactory.shared with type parameters of type EntityProxy Modifier and Type Class Description class
EntityProxyChange<P extends EntityProxy>
Event posted by aRequestFactory
when changes to an entity are detected.static interface
EntityProxyChange.Handler<P extends EntityProxy>
Implemented by methods that handle EntityProxyChange events.interface
EntityProxyId<P extends EntityProxy>
A stable, opaque id of anEntityProxy
that remains stable across updates, creates, deletes on the client.Methods in com.google.web.bindery.requestfactory.shared with type parameters of type EntityProxy Modifier and Type Method Description <T extends EntityProxy>
TProxySerializer. deserialize(EntityProxyId<T> id)
Recreate aEntityProxy
instance that was previously passed toProxySerializer.serialize(BaseProxy)
.<P extends EntityProxy>
Request<P>RequestContext. find(EntityProxyId<P> proxyId)
Return a request to find a fresh instance of the referenced proxy.<P extends EntityProxy>
Request<P>RequestFactory. find(EntityProxyId<P> proxyId)
Return a request to find a fresh instance of the referenced proxy.<T extends EntityProxy>
EntityProxyId<T>RequestFactory. getProxyId(java.lang.String historyToken)
Return the appropriateEntityProxyId
using a string returned fromRequestFactory.getHistoryToken(EntityProxyId)
.static <P extends EntityProxy>
HandlerRegistrationEntityProxyChange. registerForProxyType(EventBus eventBus, java.lang.Class<P> proxyType, EntityProxyChange.Handler<P> handler)
Register a handler for a EntityProxyChange events for a particular proxy class.Methods in com.google.web.bindery.requestfactory.shared that return types with arguments of type EntityProxy Modifier and Type Method Description java.lang.Class<? extends EntityProxy>
RequestFactory. getProxyClass(java.lang.String historyToken)
Return the class object which may be used to create new instances of the type of this token, viaRequestContext.create(java.lang.Class<T>)
.Method parameters in com.google.web.bindery.requestfactory.shared with type arguments of type EntityProxy Modifier and Type Method Description java.lang.String
RequestFactory. getHistoryToken(java.lang.Class<? extends EntityProxy> clazz)
Get aHistory
compatible token that represents the given class. -
Uses of EntityProxy in com.google.web.bindery.requestfactory.shared.testing
Methods in com.google.web.bindery.requestfactory.shared.testing with type parameters of type EntityProxy Modifier and Type Method Description <P extends EntityProxy>
Request<P>FakeRequestContext. find(EntityProxyId<P> proxyId)
Returnsnull
.<P extends EntityProxy>
Request<P>FakeRequestFactory. find(EntityProxyId<P> proxyId)
Returnsnull
.<T extends EntityProxy>
EntityProxyId<T>FakeRequestFactory. getProxyId(java.lang.String historyToken)
Returnsnull
.Methods in com.google.web.bindery.requestfactory.shared.testing that return types with arguments of type EntityProxy Modifier and Type Method Description java.lang.Class<? extends EntityProxy>
FakeRequestFactory. getProxyClass(java.lang.String historyToken)
Returnsnull
.Method parameters in com.google.web.bindery.requestfactory.shared.testing with type arguments of type EntityProxy Modifier and Type Method Description java.lang.String
FakeRequestFactory. getHistoryToken(java.lang.Class<? extends EntityProxy> clazz)
Returnsnull
.
-