abstractpublic class BusinessObjectFactory implements Serializable(Code)
Title: JAT
Description: This class is a factory to get a list of Business Object (
com.jat.business.BusinessObjectList ).
Is possible to obtain a list of Business Object using
getBusinessObjectList methods from an instance of this class.
If you want to build your own Business Object, you must create:
getBusinessObjectList(String dataSourceName, String name, BusinessObjectProperties properties) Return a list of business object loaded from a data source by an operation using the specific properties
Parameters: dataSourceName - the configured data source (see com.jat.integration.DataSource configuration) Parameters: name - the operation name of the data source (see com.jat.integration.DataSource configuration) Parameters: properties - the list of property used by the specified operation.
Return a list of business object loaded from a data source by an operation using the specific properties
Parameters: dataSourceName - the configured data source (see com.jat.integration.DataSource configuration) Parameters: name - the operation name of the data source (see com.jat.integration.DataSource configuration) Parameters: properties - the list of property used by the specified operation. It can be null. the list of Business Object matching with properties in the operation of the data source throws: java.lang.Exception - if an error occours
Return a list of business object loaded from a data source by an operation
Parameters: dataSourceName - the configured data source (see com.jat.integration.DataSource configuration) Parameters: name - the operation name of the data source (see com.jat.integration.DataSource configuration) the list of Business Object matching loaded by the operation of the data source throws: java.lang.Exception - if an error occours
return a Business Object List from a set of properties.
Implement this method to build a new instance of your Business Object List
using the constructor with data source name and
com.jat.BusinessObjectPropertyList Parameters: dataSourceName - the configured data source (see com.jat.integration.DataSource configuration) Parameters: properties - the list of properties a new instance of a Business Object List implementation