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