📄 service.java
字号:
import java.rmi.*;
import java.util.*;
public interface Service extends Remote {
public boolean addUser(String username, String pwd) throws RemoteException;
public String addMeeting(String host, String pwd, String gest, Date startTime,
Date endTime, String title) throws RemoteException;
public Vector queryMeeting(String username, String pwd, Date startTime,
Date endTime) throws RemoteException;
public boolean deleteMeeting(String username, String pwd, String title)
throws RemoteException;
public boolean clearMeeting(String username, String pwd) throws RemoteException;
public String allUser()throws RemoteException;
public String allMeeting()throws RemoteException;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -