com.google.gwt.requestfactory.shared
Interface RecordRequest<R extends Record>

Type Parameters:
R - return type
All Superinterfaces:
RequestFactory.RequestObject<R>
All Known Implementing Classes:
AbstractJsonObjectRequest

public interface RecordRequest<R extends Record>
extends RequestFactory.RequestObject<R>

Experimental API: This class is still under rapid development, and is very likely to be deleted. Use it at your own risk.

A Request that returns specific properties for one or more Record instances.


Method Summary
 RecordRequest<R> forProperties(java.util.Collection<Property<?>> properties)
           
 RecordRequest<R> forProperty(Property<?> property)
           
 RecordRequest<R> to(Receiver<R> target)
           
 
Methods inherited from interface com.google.gwt.requestfactory.shared.RequestFactory.RequestObject
fire, getRequestData, handleResponseText
 

Method Detail

forProperties

RecordRequest<R> forProperties(java.util.Collection<Property<?>> properties)

forProperty

RecordRequest<R> forProperty(Property<?> property)

to

RecordRequest<R> to(Receiver<R> target)
Specified by:
to in interface RequestFactory.RequestObject<R extends Record>