GWT 2.3.0

Uses of Interface
com.google.gwt.requestfactory.shared.BaseProxy

Packages that use BaseProxy
com.google.gwt.requestfactory.server Server side classes for mediating between the client side and the persistent datastore. 
com.google.gwt.requestfactory.shared Shared classes used on both the client and the server side for transmitting data between the sever and the client in JSON format. 
 

Uses of BaseProxy in com.google.gwt.requestfactory.server
 

Methods in com.google.gwt.requestfactory.server that return types with arguments of type BaseProxy
 java.lang.Class<? extends BaseProxy> ServiceLayerDecorator.resolveClass(java.lang.String typeToken)
          Deprecated.  
abstract  java.lang.Class<? extends BaseProxy> ServiceLayer.resolveClass(java.lang.String typeToken)
          Deprecated. Given a type token previously returned from ServiceLayer.resolveTypeToken(Class), return the Class literal associated with the token.
 

Method parameters in com.google.gwt.requestfactory.server with type arguments of type BaseProxy
 java.lang.String ServiceLayerDecorator.resolveTypeToken(java.lang.Class<? extends BaseProxy> proxyType)
          Deprecated.  
abstract  java.lang.String ServiceLayer.resolveTypeToken(java.lang.Class<? extends BaseProxy> proxyType)
          Deprecated. Return a string used to represent the given type in the wire protocol.
 

Uses of BaseProxy in com.google.gwt.requestfactory.shared
 

Classes in com.google.gwt.requestfactory.shared with type parameters of type BaseProxy
 interface InstanceRequest<P extends BaseProxy,T>
          Deprecated. 
 

Subinterfaces of BaseProxy in com.google.gwt.requestfactory.shared
 interface EntityProxy
          Deprecated. 
 interface ValueProxy
          Deprecated. 
 

Methods in com.google.gwt.requestfactory.shared with type parameters of type BaseProxy
<T extends BaseProxy>
T
RequestContext.create(java.lang.Class<T> clazz)
          Deprecated. Returns a new mutable proxy that this request can carry to the server, perhaps to be persisted.
<T extends BaseProxy>
T
ProxySerializer.deserialize(java.lang.Class<T> proxyType, java.lang.String key)
          Deprecated. Recreate a proxy instance that was previously passed to ProxySerializer.serialize(BaseProxy).
<T extends BaseProxy>
T
RequestContext.edit(T object)
          Deprecated. Returns a mutable version of the proxy, whose mutations will accumulate in this context.
 

Methods in com.google.gwt.requestfactory.shared that return BaseProxy
 BaseProxy Violation.getInvalidProxy()
          Deprecated. If the ConstraintViolation occurred while validating a object, this method will return a BaseProxy that contains the invalid values.
 BaseProxy Violation.getOriginalProxy()
          Deprecated. If the ConstraintViolation occurred while validating a value object that originated from the server, this method will return a BaseProxy that contains the original values.
 

Methods in com.google.gwt.requestfactory.shared with parameters of type BaseProxy
 java.lang.String ProxySerializer.serialize(BaseProxy proxy)
          Deprecated. Store a proxy into the backing store.
 


GWT 2.3.0