Advertisement
Guest User

Untitled

a guest
Mar 20th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. package sk.tuke.gamestudio.service;
  2.  
  3. import sk.tuke.gamestudio.entity.Rating;
  4.  
  5. import java.util.List;
  6.  
  7. public interface RatingService {
  8. void setRating(Rating rating) throws RatingException;
  9. int getAverageRating(String game) throws RatingException;
  10. int getRating(String game, String player) throws RatingException;
  11. List<Rating> getRatings(String game) throws RatingException;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement