?? sb_hotelmanager.java
字號:
package com.xc.hotelmanager.hotel.control.session;import javax.ejb.*;import java.util.*;import java.rmi.*;import com.xc.hotelmanager.hotel.exception.*;import com.xc.hotelmanager.hotel.model.*;public interface SB_hotelmanager extends javax.ejb.EJBObject { public int FindEmptyRoom(String type) throws HotelManagerException, RemoteException; public String ResRoom(Reservation res, int num, String type) throws HotelManagerException, RemoteException; public Collection getAllRoom() throws HotelManagerException, RemoteException; public String getRoomtype(String id) throws HotelManagerException, RemoteException; public void CancleRes(String id) throws HotelManagerException, RemoteException; public Collection getAllRoomType() throws HotelManagerException, RemoteException; public Collection SearchRes(String str) throws HotelManagerException, RemoteException; public Collection getAllRes() throws HotelManagerException, RemoteException; public int getRoomprice(String id) throws HotelManagerException, RemoteException; public RoomType addRmtype(RoomType roomtype) throws HotelManagerException, RemoteException; public void removeRoomType(String rtypeid) throws HotelManagerException, RemoteException; public RoomType saveRoomType(RoomType roomtype) throws HotelManagerException, RemoteException; public Collection getRoomByType(String type) throws HotelManagerException, RemoteException; public RoomType loadRoomType(String rtypeid) throws HotelManagerException, RemoteException; public void CancleResByDate(String time) throws HotelManagerException, RemoteException; public Collection getRoomByType1(String type) throws HotelManagerException, RemoteException; public int getRoompriceById(String roomid) throws HotelManagerException, RemoteException; public Room addRoom(Room room) throws HotelManagerException, RemoteException; public void ResetRstust(String id) throws HotelManagerException,RemoteException;}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -