Examples of HotelSearchingAction


Examples of org.jboss.seam.example.booking.HotelSearchingAction

   {
      EntityManagerFactory emf = Persistence.createEntityManagerFactory("bookingDatabase");

      EntityManager em = emf.createEntityManager();
     
      HotelSearching hs = new HotelSearchingAction();
     
      setField(hs, "em", em);
     
      hs.setSearchString("atlanta");
      hs.find();
     
      List<Hotel> hotels = (List<Hotel>) getField(hs, "hotels");
      assert hotels!=null;
      assert hotels.size()==3;
     
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.