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

📄 bizctrlimpl.java

📁 《j2ee开发全程实录》随书源码
💻 JAVA
字号:
package com.cownew.PIS.framework.bizLayer;

import java.util.Properties;

import com.cownew.PIS.framework.common.IBizCtrl;

abstract public class BizCtrlImpl implements IBizCtrl
{

	private Properties txProperties;
	private Properties logProperties;
	private Properties permProperties;

	public Properties getTransactionAttributes()
	{
		if (txProperties == null)
		{
			txProperties = new Properties();
		}
		return txProperties;
	}

	public void setTransactionAttributes(Properties transactionAttributes)
	{
		this.txProperties = transactionAttributes;
	}

	public Properties getPermissionAttributes()
	{
		return permProperties;
	}

	public void setPermissionAttributes(Properties permAttributes)
	{
		this.permProperties = permAttributes;
	}

	public Properties getLogAttributes()
	{
		return logProperties;
	}

	public void setLogAttributes(Properties logAttributes)
	{
		this.logProperties = logAttributes;
	}
	

}

⌨️ 快捷键说明

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