1:/*
   2: * RoomDao.java
   3: *
   4: * Created on April 3, 2006, 9:41 AM
   5: *
   6: * To change this template, choose Tools | Template Manager
   7: * and open the template in the editor.
   8: */
   9:
  10:package hotelReservations.dao;
  11:
  12:import hotelReservations.domain.Room;
  13:import java.util.List;
  14:
  15:/**
  16: *
  17: * @author mklaene
  18: */
  19:
  20:public interface RoomDao {
  21:    public List getRooms();
  22:    public Room getRoom(Long roomId);
  23:    public void saveRoom(Room room);
  24:    public void removeRoom(Long roomId);
  25:}