booksession.java

来自「这里面总共有6个小程序,分别是: 1.自制网络聊天室 2.网上购物系统的J」· Java 代码 · 共 39 行

JAVA
39
字号
/* * 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 + =
减小字号Ctrl + -
显示快捷键?