iannotatedfieldsessionbean.java

来自「测试工具ejb3unit的例子。使用时需要导入ejb3unit,jmock,lo」· Java 代码 · 共 40 行

JAVA
40
字号
package com.ejb3unit;

import java.io.Serializable;

import javax.ejb.Remote;
import javax.persistence.EntityManager;
import javax.sql.DataSource;

/**
 * Local Interface.
 * 
 * @author Daniel Wiese
 * @since 08.11.2005
 */
@Remote
public interface IAnnotatedFieldSessionBean extends Serializable {

	/**
	 * Returns the ds.
	 * 
	 * @return Returns the ds.
	 */
	DataSource getDs();

	/**
	 * Returns the em.
	 * 
	 * @return Returns the em.
	 */
	EntityManager getEm();

	/**
	 * rturns a reference to a other sb.
	 * 
	 * @return reference to a other sb.
	 */
	IMySessionBean getSessionBean();

}

⌨️ 快捷键说明

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