Package reserv.entity

Examples of reserv.entity.Movie


            movie.setName(name);           
            em.persist(movie);
            em.getTransaction().commit();   
            em.close();

            this.movie = new Movie();
            this.name = "";
            PixTomMessages.addFlash("Film został dodany pomyślnie.");
           
          
        }
View Full Code Here


    @Override
  public Object getAsObject(FacesContext context, UIComponent component, String value) {
    Integer i = Integer.valueOf(value);
    EntityManager em = DBManager.getManager().createEntityManager();
    Movie m = em.find(Movie.class, i);
    em.close();
    return m;
  }
View Full Code Here

    @Override
  public String getAsString(FacesContext context, UIComponent component, Object value) {
    if(!(value instanceof Movie))
      throw new ConverterException(new FacesMessage("Nie udała się konwersja"));
    Movie p = (Movie)value;
    return p.getId().toString();
  }
View Full Code Here

TOP

Related Classes of reserv.entity.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.