⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ejbhomemanager.java

📁 this is example use EJB with jboss.
💻 JAVA
字号:
/*
 * Copyright(C) 2008, NTT AT Co., Ltd.
 * Project: AWGStar
 *
 * Notes:
 *  N/A
 *
 * Record of change:
 * Date         Version      Name       Content
 * 2008/12/15   1.0          TuanNA      First create       
 */
package jp.co.ntt.awgview.server.ejb;

import java.rmi.RemoteException;

import javax.ejb.CreateException;
import javax.ejb.EJBHome;

	/**
	 * Class name : EJBHomeManager <BR> 
	 * 
	 * Package : jp.co.ntt.awgview.server.ejb <BR>
	 *  
	 * Description: A remote client invokes the EJB through its remote interface. The client invokes 
	 * 	the create method that is declared within the remote home interface. The container 
	 * 	passes the client call to the ejbCreate method梬ith the appropriate parameter 
	 * 	signature梬ithin the bean implementation.
	 * 
	 * @author : AI&T
	 * @version : 1.0
	 */
	public interface EJBHomeManager extends EJBHome
	{
		public EJBRemoteManager create()throws CreateException, RemoteException;
 	}

⌨️ 快捷键说明

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