ejbhomemanager.java

来自「this is example use EJB with jboss.」· Java 代码 · 共 36 行

JAVA
36
字号
/*
 * 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 + =
减小字号Ctrl + -
显示快捷键?