public com.mediamania.prototype.Movie | getMovieByTitle(java.lang.String title)Get the Movie by title. If the movie is not in the cache, put it in.
Movie movie = (Movie) cache.get(title);
if (movie == null) {
movie = PrototypeQueries.getMovie (pm, title);
if (movie != null) {
cache.put (title, movie);
}
}
return movie;
|