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

📄 remoteotherdao.java

📁 精通EJB3源码
💻 JAVA
字号:
package com.foshanshop.ejb3;

import com.foshanshop.ejb3.bean.Product;

public interface RemoteOtherDAO{
	/**
	 * 系统异常
	 */
	public void systemException();
	/**
	 * 事务属性TransactionAttributeType.REQUIRED
	 */
    public void required();
	/**
	 * 事务属性TransactionAttributeType.NOT_SUPPORTED
	 */
    public Product notSupported(int productid);
	/**
	 * 事务属性TransactionAttributeType.REQUIRES_NEW
	 */
    public void requirednew();
	/**
	 * 事务属性TransactionAttributeType.SUPPORTS
	 */
    public Product support(int productid);
	/**
	 * 事务属性TransactionAttributeType.MANDATORY
	 */
    public void mandatory();
	/**
	 * 事务属性TransactionAttributeType.NEVER
	 */
    public Product never(int productid);
}

⌨️ 快捷键说明

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