List of usage examples for com.google.gwt.requestfactory.shared RequestContext interface-usage
From source file com.acme.gwt.shared.TvGuideRequest.java
/**
* Basic RequestContext for getting show information for a given user. At least for now, this is all
* grouped into one request so that requests may be batched where this is useful/important.
*
* @author colin
*/
From source file com.acme.gwt.shared.TvSetupRequest.java
/**
* This RequestContext will be used to inform the server about how a particular locale is set up.
* This will probably not be used by most users, and it is possible that we want to deny access to
* this for certain types of users (i.e. users who are not logged in, or are not admins).
*
* @author colin
From source file com.eatrightapp.shared.MenuItemRequest.java
@Service(MenuItem.class) public interface MenuItemRequest extends RequestContext { Request<Long> countMenuItems(); Request<Long> countMenuItemsByPlace(String placesReference, String placesUrl);
From source file com.eatrightapp.shared.MenuItemReviewRequest.java
@Service(MenuItemReview.class) public interface MenuItemReviewRequest extends RequestContext { Request<Long> countMenuItemReviews(); Request<Long> countMenuItemReviewsByMenuItem(MenuItemProxy menuItem);
From source file com.eatrightapp.shared.RestaurantRequest.java
@Service(Restaurant.class) public interface RestaurantRequest extends RequestContext { Request<Long> countRestaurants(); Request<RestaurantProxy> findRestaurant(Long id);
From source file com.eatrightapp.shared.UserAccountRequest.java
@Service(UserAccount.class) public interface UserAccountRequest extends RequestContext { Request<Long> countUsers(); Request<Long> countModerators();
From source file com.google.gwt.sample.expenses.client.request.EmployeeRequest.java
/**
* "API Generated" request selector interface implemented by objects that give
* client access to the methods of
* {@link com.google.gwt.sample.expenses.server.domain.Employee}.
* <p>
* IRL this class will be generated by a JPA-savvy tool run before compilation.
From source file com.google.gwt.sample.expenses.client.request.ExpenseRequest.java
/**
* "API Generated" request selector interface implemented by objects that give
* client access to the methods of
* {@link com.google.gwt.sample.expenses.server.domain.Expense}.
* <p>
* IRL this class will be generated by a JPA-savvy tool run before compilation.
From source file com.google.gwt.sample.expenses.client.request.ReportRequest.java
/**
* "API Generated" request selector interface implemented by objects that give
* client access to the methods of
* {@link com.google.gwt.sample.expenses.server.domain.Report}.
* <p>
* IRL this class will be generated by a JPA-savvy tool run before compilation.