package com.jat.business;
/**
* <p>Title: JAT</p>
* <p>Description: </p>
* <p>Copyright: Copyright (c) 2004 -2005 Stefano Fratini (stefano.fratini@gmail.com)</p>
* <p>Distributed under the terms of the GNU Lesser General Public License, v2.1 or later</p>
* @author stf
* @version 1.1
*/
public class BusinessObjectImpl extends BusinessObject {
protected BusinessObjectImpl(String dataSouceName, BusinessObjectProperties properties) {
super(dataSouceName, properties);
}
}
|