consumer.java

来自「网上银行EJB版本」· Java 代码 · 共 32 行

JAVA
32
字号
package mypackage;
import javax.ejb.EJBObject;
import java.rmi.RemoteException;

public interface Consumer extends EJBObject 
{
  String getAccounts() throws RemoteException;

  String getUsername() throws RemoteException;

  void setUsername(String username) throws RemoteException;

  String getPassword() throws RemoteException;

  void setPassword(String password) throws RemoteException;

  String getCid() throws RemoteException;

  void setCid(String cid) throws RemoteException;

  String getSex() throws RemoteException;

  void setSex(String sex) throws RemoteException;

  String getBalance() throws RemoteException;

  void setBalance(String balance) throws RemoteException;

  String getMiss() throws RemoteException;

  void setMiss(String miss) throws RemoteException;
}

⌨️ 快捷键说明

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