Package com.omertron.imdbapi.wrapper

Examples of com.omertron.imdbapi.wrapper.WrapperMovieDetails


     * @return
     */
    public ImdbMovieDetails getFullDetails(String imdbId) {
        Map<String, String> args = new HashMap<String, String>();
        args.put(TCONST, imdbId);
        WrapperMovieDetails wrapper = ApiBuilder.getWrapper(WrapperMovieDetails.class, "title/maindetails", args);
        if (wrapper == null) {
            return null;
        } else {
            return wrapper.getMovie();
        }
    }
View Full Code Here

TOP

Related Classes of com.omertron.imdbapi.wrapper.WrapperMovieDetails

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.