recording.java

来自「此程序都是企业级 的数据库开发程序 全面揭示了JAVA对数据库的操作」· Java 代码 · 共 40 行

JAVA
40
字号
package ejb.recording;

import javax.ejb.EJBObject;
import java.rmi.RemoteException;

/**
 * This is the Remote Interface, where we expose business methods to the
 * client code which will use our beans. Our EJB container will create
 * classes that implement this interface and serve as a remote reference
 * 
 */
public interface Recording extends EJBObject {

  /**
   * Accessors
   */
  public Integer getRecordingId() throws RemoteException;

  public String getRecordingTitle() throws RemoteException;

  public String getRecordingArtist() throws RemoteException;

  public String getCatalogNumber() throws RemoteException;

  public Double getListPrice() throws RemoteException;

  /**
   * Mutators
   */
  public void setRecordingId(Integer inId) throws RemoteException;

  public void setRecordingTitle(String inTitle) throws RemoteException;

  public void setRecordingArtist(String inArtist) throws RemoteException;

  public void setCatalogNumber(String inNumber) throws RemoteException;

  public void setListPrice(Double inPrice) throws RemoteException;
}

⌨️ 快捷键说明

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