GamedayService now knows about the new REST methods

master
bspeice 2013-10-19 20:57:16 -04:00
parent b62cd865e9
commit d21e269579
1 changed files with 9 additions and 0 deletions

View File

@ -15,5 +15,14 @@ public interface GamedayService {
@POST("/rate/")
void rateLot(@Body ParkingRating p, Callback<ParkingLot> lot);
@GET("/register/{id}/")
Attendee getUser(@Query("id") int id);
@GET("/register/")
List<Attendee> getAllUsers();
@POST("/register/")
void registerUser(@Body Attendee a, Callback<Attendee> attendee);
}