profilemanagementhome.java
来自「噶额外噶外骨骼感广泛高热感 就 啊啊」· Java 代码 · 共 33 行
JAVA
33 行
/*
* @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 + =
减小字号Ctrl + -
显示快捷键?