Skip to content

Instantly share code, notes, and snippets.

@algorythmist
Created July 5, 2014 10:00
Show Gist options
  • Save algorythmist/c2b2738f8a304f93a66e to your computer and use it in GitHub Desktop.
Save algorythmist/c2b2738f8a304f93a66e to your computer and use it in GitHub Desktop.
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