📄 recording.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -