Package de.gmorling.methodvalidation.guice.domain

Examples of de.gmorling.methodvalidation.guice.domain.Movie


  private final Map<Long, Movie> sampleMovies = new TreeMap<Long, Movie>();

  public MovieRepository() {

    Movie movie =
      new Movie(
        1,
        "The Usual Suspects",
        106,
        "Bryan Singer",
        new GregorianCalendar(1995, 7, 16).getTime());

    sampleMovies.put(movie.getId(), movie);
   
    movie = new Movie(
      2,
      "The Road",
      160,
      "John Hillcoat",
      null);

    sampleMovies.put(movie.getId(), movie);
  }
View Full Code Here

TOP

Related Classes of de.gmorling.methodvalidation.guice.domain.Movie

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.