rmiinterface.java

来自「卡耐基梅陇大学SSD8全部练习和考试完全答案」· Java 代码 · 共 25 行

JAVA
25
字号
import java.rmi.*;
import java.util.*;

public interface RMIInterface extends Remote {

	public boolean login(String username, String password)
			throws RemoteException;

	public boolean register(String username, String password)
			throws RemoteException;

	public boolean add(String username, String password, String otherusername,
			String title, Date start, Date end) throws RemoteException;

	public boolean delete(String username, String password, int id)
			throws RemoteException;

	public boolean clear(String username, String password)
			throws RemoteException;

	public Vector<Meeting> query(String username, String password, Date start,
			Date end) throws RemoteException;
}

⌨️ 快捷键说明

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