1 37 package com.sun.j2ee.blueprints.opc.purchaseorder.ejb; 38 39 import javax.ejb.*; 40 41 import com.sun.j2ee.blueprints.opc.purchaseorder.*; 42 43 44 47 48 public interface LodgingLocal extends EJBLocalObject { 49 50 public void setLodgingId(String lodgingId); 51 52 public String getLodgingId(); 53 54 public void setName(String name); 55 56 public String getName(); 57 58 public void setPricePerNight(float pricePerNight); 59 60 public float getPricePerNight(); 61 62 public void setLocation(String location); 63 64 public String getLocation(); 65 66 public void setStartDate(long startDate); 67 68 public long getStartDate(); 69 70 public void setEndDate(long endDate); 71 72 public long getEndDate(); 73 74 public void setNoNights(int noNights); 75 76 public int getNoNights(); 77 78 public void setNoRooms(int noRooms); 79 80 public int getNoRooms(); 81 82 public Lodging getDetails(); 83 84 } 85 | Popular Tags |