📄 administrationhome.java
字号:
/*
* @author : Neelesh
* @Version : 1.0
*
* Development Environment : Oracle9i JDeveloper
* Name of the File : AdministrationHome.java
* Creation/Modification History :
*
* Neelesh 26-Dec-2002 Created
*
*/
package oracle.otnsamples.vsm.services;
import java.rmi.RemoteException;
import javax.ejb.CreateException;
import javax.ejb.EJBHome;
/**
* The home interface for the Administration bean. The interface has a method
* to create an instance of the Administration bean.
*/
public interface AdministrationHome extends EJBHome {
/**
* Creates an instance of the Administration bean
*
* @return <b>Administration</b> Instance of Administration bean
*
* @throws <b>CreateException</b>
* @throws <b>RemoteException</b>
*/
Administration create() throws RemoteException,
CreateException;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -