*/
public ImdbQuotes getTitleQuotes(String imdbId) {
Map<String, String> args = new HashMap<String, String>();
args.put(TCONST, imdbId);
WrapperQuotes wrapper = ApiBuilder.getWrapper(WrapperQuotes.class, "title/quotes", args);
if (wrapper == null) {
return null;
} else {
return wrapper.getQuotes();
}
}