com.google.gwt.requestfactory.shared
Interface RecordListRequest<R extends Record>
- Type Parameters:
R - The type held by the returned list
- All Superinterfaces:
- RequestFactory.RequestObject<java.util.List<R>>
- All Known Implementing Classes:
- AbstractJsonListRequest
public interface RecordListRequest<R extends Record>
- extends RequestFactory.RequestObject<java.util.List<R>>
Experimental API: This class is still under rapid
development, and is very likely to be deleted. Use it at your own risk.
Implemented by RequestObjects for service methods that return lists of
records.
forProperties
RecordListRequest<R> forProperties(java.util.Collection<Property<?>> properties)
forProperty
RecordListRequest<R> forProperty(Property<?> property)
to
RecordListRequest<R> to(Receiver<java.util.List<R>> target)
- Specified by:
to in interface RequestFactory.RequestObject<java.util.List<R extends Record>>