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

📄 rmiinterface.java

📁 Exercise 4 of SSD 8 -- JAVA 一个基于RMI远程调用方法的事物管理系统。提交的时候JAVADOC忘写清楚了
💻 JAVA
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -