amanagerlog.java~5~
来自「一个J2EE四层架构的实例」· JAVA~5~ 代码 · 共 26 行
JAVA~5~
26 行
package sqlaccounts;import javax.ejb.*;import java.util.*;import java.rmi.*;import java.sql.*;public interface AManagerLog extends javax.ejb.EJBObject{ public void setUsername(String username) throws RemoteException; public String getUsername() throws RemoteException; public void setPurview(String purview) throws RemoteException; public String getPurview() throws RemoteException; public void setOdate(Timestamp odate) throws RemoteException; public Timestamp getOdate() throws RemoteException; public void setOperation(String operation) throws RemoteException; public String getOperation() throws RemoteException; public void setSdate(Timestamp sdate) throws RemoteException; public Timestamp getSdate() throws RemoteException; public void setTokensn(String tokensn) throws RemoteException; public String getTokensn() throws RemoteException; public void setInfo1(String info1) throws RemoteException; public String getInfo1() throws RemoteException; public void setId(Integer id) throws RemoteException; public Integer getId() throws RemoteException;}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?