Created
July 5, 2014 10:00
-
-
Save algorythmist/c2b2738f8a304f93a66e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public interface MovieService { | |
| List<Movie> getBoxOfficeMovies(Locale country, int limit) | |
| throws IOException; | |
| List<Movie> getOpeningMovies(Locale country, int limit) throws IOException; | |
| List<Movie> getInThreatersMovies(Locale country, int limit, int page) | |
| throws IOException; | |
| List<Movie> getUpcomingMovies(Locale country, int limit, int page) | |
| throws IOException; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment