⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 booksession.java

📁 这里面总共有6个小程序,分别是: 1.自制网络聊天室 2.网上购物系统的JSP实现 3.图像编辑器 4.简单媒体播放器 5.个人日常事务管理系统 6.商场VIP消费管理系统 7.公司资
💻 JAVA
字号:
/* * BookSession.java * * Created on 2003年5月13日, 下午3:51 *//** * * @author  administrator */import javax.ejb.EJBObject;import java.rmi.RemoteException;import java.util.*;public interface BookSession extends EJBObject {//business method        public Vector getAllBook(String str)        throws RemoteException;         public Vector getQueryBook(String str)        throws RemoteException;        public Vector getBorrowedBook(String str)        throws RemoteException;        public Vector getQueryBorrowedBook(String str)        throws RemoteException;        public int borrowBook(String str)        throws RemoteException;        public int returnBook(String str)        throws RemoteException;     public int checkUser(String userName,String userPassword)        throws RemoteException;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -