Package it.eng.spagobi.commons.dao

Source Code of it.eng.spagobi.commons.dao.DAOFactory

/**

SpagoBI - The Business Intelligence Free Platform

Copyright (C) 2005-2008 Engineering Ingegneria Informatica S.p.A.

This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.

This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Lesser General Public License for more details.

You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA

**/
/*
* Created on 1-giu-2005
*
* TODO To change the template for this generated file go to
* Window - Preferences - Java - Code Style - Code Templates
*/
package it.eng.spagobi.commons.dao;

import it.eng.spago.base.SourceBean;
import it.eng.spago.configuration.ConfigSingleton;
import it.eng.spago.error.EMFUserError;
import it.eng.spagobi.analiticalmodel.document.dao.IBIObjectDAO;
import it.eng.spagobi.analiticalmodel.document.dao.IBIObjectRating;
import it.eng.spagobi.analiticalmodel.document.dao.IObjNoteDAO;
import it.eng.spagobi.analiticalmodel.document.dao.IObjTemplateDAO;
import it.eng.spagobi.analiticalmodel.document.dao.ISnapshotDAO;
import it.eng.spagobi.analiticalmodel.document.dao.ISubObjectDAO;
import it.eng.spagobi.analiticalmodel.document.dao.ISubreportDAO;
import it.eng.spagobi.analiticalmodel.document.dao.IViewpointDAO;
import it.eng.spagobi.analiticalmodel.functionalitytree.dao.ILowFunctionalityDAO;
import it.eng.spagobi.behaviouralmodel.analyticaldriver.dao.IBIObjectParameterDAO;
import it.eng.spagobi.behaviouralmodel.analyticaldriver.dao.IObjParuseDAO;
import it.eng.spagobi.behaviouralmodel.analyticaldriver.dao.IParameterDAO;
import it.eng.spagobi.behaviouralmodel.analyticaldriver.dao.IParameterUseDAO;
import it.eng.spagobi.behaviouralmodel.check.dao.ICheckDAO;
import it.eng.spagobi.behaviouralmodel.lov.dao.IModalitiesValueDAO;
import it.eng.spagobi.engines.config.dao.IEngineDAO;
import it.eng.spagobi.engines.dossier.dao.IDossierDAO;
import it.eng.spagobi.engines.dossier.dao.IDossierPartsTempDAO;
import it.eng.spagobi.engines.dossier.dao.IDossierPresentationsDAO;
import it.eng.spagobi.hotlink.rememberme.dao.IRememberMeDAO;
import it.eng.spagobi.kpi.alarm.dao.ISbiAlarmContactDAO;
import it.eng.spagobi.kpi.alarm.dao.ISbiAlarmDAO;
import it.eng.spagobi.kpi.alarm.dao.ISbiAlarmEventDAO;
import it.eng.spagobi.kpi.config.dao.IKpiDAO;
import it.eng.spagobi.kpi.config.dao.IKpiErrorDAO;
import it.eng.spagobi.kpi.config.dao.IKpiInstPeriodDAO;
import it.eng.spagobi.kpi.config.dao.IKpiInstanceDAO;
import it.eng.spagobi.kpi.config.dao.IMeasureUnitDAO;
import it.eng.spagobi.kpi.config.dao.IPeriodicityDAO;
import it.eng.spagobi.kpi.goal.dao.IGoalDAO;
import it.eng.spagobi.kpi.model.dao.IModelDAO;
import it.eng.spagobi.kpi.model.dao.IModelInstanceDAO;
import it.eng.spagobi.kpi.model.dao.IModelResourceDAO;
import it.eng.spagobi.kpi.model.dao.IResourceDAO;
import it.eng.spagobi.kpi.ou.dao.IOrganizationalUnitDAO;
import it.eng.spagobi.kpi.threshold.dao.IThresholdDAO;
import it.eng.spagobi.kpi.threshold.dao.IThresholdValueDAO;
import it.eng.spagobi.mapcatalogue.dao.ISbiGeoFeaturesDAO;
import it.eng.spagobi.mapcatalogue.dao.ISbiGeoMapFeaturesDAO;
import it.eng.spagobi.mapcatalogue.dao.ISbiGeoMapsDAO;
import it.eng.spagobi.profiling.dao.ISbiAttributeDAO;
import it.eng.spagobi.profiling.dao.ISbiUserDAO;
import it.eng.spagobi.tools.dataset.dao.IDataSetDAO;
import it.eng.spagobi.tools.datasource.dao.IDataSourceDAO;
import it.eng.spagobi.tools.distributionlist.dao.IDistributionListDAO;
import it.eng.spagobi.tools.objmetadata.dao.IObjMetacontentDAO;
import it.eng.spagobi.tools.objmetadata.dao.IObjMetadataDAO;
import it.eng.spagobi.tools.udp.dao.IUdpDAO;
import it.eng.spagobi.tools.udp.dao.IUdpValueDAO;
import it.eng.spagobi.utilities.exceptions.SpagoBIRuntimeException;
import it.eng.spagobi.wapp.dao.IMenuDAO;
import it.eng.spagobi.wapp.dao.IMenuRolesDAO;

import org.apache.log4j.Logger;

/**
* Contains all the data access object for all the BO objects defined into
* it.eng.spagobi.bo package.
*/
public class DAOFactory {

 
  static private Logger logger = Logger.getLogger(DAOFactory.class);
 
  /**
   * Given, for a defined BO, its DAO name, creates the correct DAO instance
   *
   *
   * @param daoName The BO DAO name
   * @return An object representing the DAO instance
   */
 
  private static Object createDAOInstance(String daoName) {
    logger.debug("Begin Istantiation of DAO ["+daoName+"]");
    Object daoObject = null;
    try {
      ConfigSingleton configSingleton=ConfigSingleton.getInstance();
      SourceBean daoConfigSourceBean =(SourceBean) configSingleton.getFilteredSourceBeanAttribute("SPAGOBI.DAO-CONF.DAO","name", daoName);
      String daoClassName = (String)daoConfigSourceBean.getAttribute("implementation");
      logger.debug("DAO ["+daoName+"] Implementation class ["+daoClassName+"]");
      daoObject = Class.forName(daoClassName).newInstance();
    } catch (Exception e) {
      throw new SpagoBIRuntimeException("Cannot instantiate " + daoName, e);
    }
    logger.debug("DAO ["+daoName+"] instantiated successfully");
    return daoObject;
   
  }
 
  /**
   * Creates a DAO instance for a BI object.
   *
   * @return a DAO instance for the BIObject
   *
   * @throws EMFUserError If an Exception occurred
   */
  public static IBIObjectDAO getBIObjectDAO() throws EMFUserError {
    return (IBIObjectDAO)createDAOInstance("BIObjectDAO");
  }
 
 
  /**
   * Creates a DAO instance for a Subreport.
   *
   * @return a DAO instance for the Subreport
   *
   * @throws EMFUserError If an Exception occurred
   */
  public static ISubreportDAO getSubreportDAO() throws EMFUserError {
    return (ISubreportDAO)createDAOInstance("SubreportDAO");
  }
 
 
  /**
   * Creates a DAO instance for a BI object parameter.
   *
   * @return a DAO instance for the BIObject parameter
   *
   * @throws EMFUserError If an Exception occurred
   */
  public static IBIObjectParameterDAO getBIObjectParameterDAO() throws EMFUserError{
    return (IBIObjectParameterDAO)createDAOInstance("BIObjectParameterDAO");
  }
 
  /**
   * Creates a DAO instance for a value constraint.
   *
   * @return a DAO instance for the value constraint
   *
   * @throws EMFUserError If an Exception occurred
   */
  public static ICheckDAO getChecksDAO() throws EMFUserError{
    return (ICheckDAO)createDAOInstance("ChecksDAO");
  }
 
  /**
   * Creates a DAO instance for a domain.
   *
   * @return a DAO instance for the  domain
   *
   * @throws EMFUserError If an Exception occurred
   */
  public static IDomainDAO getDomainDAO() throws EMFUserError{
    return (IDomainDAO)createDAOInstance("DomainDAO");
  }
 
  /**
   * Creates a DAO instance for an engine.
   *
   * @return a DAO instance for the engine
   *
   * @throws EMFUserError If an Exception occurred
   */
  public static IEngineDAO getEngineDAO() throws EMFUserError{
    return (IEngineDAO)createDAOInstance("EngineDAO");
  }
 
  /**
   * Creates a DAO instance for a low functionality.
   *
   * @return a DAO instance for the  low functionality
   *
   * @throws EMFUserError If an Exception occurred
   */
  public static ILowFunctionalityDAO getLowFunctionalityDAO() throws EMFUserError{
    return (ILowFunctionalityDAO)createDAOInstance("LowFunctionalityDAO");
  }
 
  /**
   * Creates a DAO instance for a predefined LOV.
   *
   * @return a DAO instance for the  predefined LOV
   *
   * @throws EMFUserError If an Exception occurred
   */
  public static IModalitiesValueDAO getModalitiesValueDAO() throws EMFUserError{
    return (IModalitiesValueDAO)createDAOInstance("ModalitiesValueDAO");
  }
 
  /**
   * Creates a DAO instance for a parameter.
   *
   * @return a DAO instance for the  parameter
   *
   * @throws EMFUserError If an Exception occurred
   */
  public static IParameterDAO getParameterDAO() throws EMFUserError{
    return (IParameterDAO)createDAOInstance("ParameterDAO");
  }
 
  /**
   * Creates a DAO instance for a parameter use mode.
   *
   * @return a DAO instance for the  parameter use mode
   *
   * @throws EMFUserError If an Exception occurred
   */
  public static IParameterUseDAO getParameterUseDAO() throws EMFUserError{
    return (IParameterUseDAO)createDAOInstance("ParameterUseDAO");
  }
 
  /**
   * Creates a DAO instance for a role.
   *
   * @return a DAO instance for the role
   *
   * @throws EMFUserError If an Exception occurred
   */
  public static IRoleDAO getRoleDAO() throws EMFUserError{
    return (IRoleDAO)createDAOInstance("RoleDAO");
  }

 
  /**
   * Gets the obj paruse dao.
   *
   * @return the obj paruse dao
   *
   * @throws EMFUserError the EMF user error
   */
  public static IObjParuseDAO getObjParuseDAO() throws EMFUserError{
    return (IObjParuseDAO)createDAOInstance("ObjParuseDAO");
  }
 
  /**
   * Creates a DAO instance for a viewpoint.
   *
   * @return a DAO instance for the viewpoint
   *
   * @throws EMFUserError If an Exception occurred
   */
  public static IViewpointDAO getViewpointDAO() throws EMFUserError{
    return (IViewpointDAO)createDAOInstance("ViewpointDAO");
 
  
  /**
   * Gets the data source dao.
   *
   * @return the data source dao
   *
   * @throws EMFUserError the EMF user error
   */
  public static IDataSourceDAO getDataSourceDAO() throws EMFUserError{
    return (IDataSourceDAO)createDAOInstance("DataSourceDAO");
  }
 
  /**
   * Gets the data set dao.
   *
   * @return the data set dao
   *
   * @throws EMFUserError the EMF user error
   */
  public static IDataSetDAO getDataSetDAO() throws EMFUserError{
    return (IDataSetDAO)createDAOInstance("DataSetDAO");
  }
 
  /**
   * Gets the bin content dao.
   *
   * @return the bin content dao
   *
   * @throws EMFUserError the EMF user error
   */
  public static IBinContentDAO getBinContentDAO() throws EMFUserError{
    return (IBinContentDAO)createDAOInstance("BinContentDAO");
 
 
  /**
   * Gets the obj template dao.
   *
   * @return the obj template dao
   *
   * @throws EMFUserError the EMF user error
   */
  public static IObjTemplateDAO getObjTemplateDAO() throws EMFUserError{
    return (IObjTemplateDAO)createDAOInstance("ObjTemplateDAO");
 
 
  /**
   * Gets the obj note dao.
   *
   * @return the obj note dao
   *
   * @throws EMFUserError the EMF user error
   */
  public static IObjNoteDAO getObjNoteDAO() throws EMFUserError{
    return (IObjNoteDAO)createDAOInstance("ObjNoteDAO");
 
 
  /**
   * Gets the sub object dao.
   *
   * @return the sub object dao
   *
   * @throws EMFUserError the EMF user error
   */
  public static ISubObjectDAO getSubObjectDAO() throws EMFUserError{
    return (ISubObjectDAO)createDAOInstance("SubObjectDAO");
 
 
  /**
   * Gets the snapshot dao.
   *
   * @return the snapshot dao
   *
   * @throws EMFUserError the EMF user error
   */
  public static ISnapshotDAO getSnapshotDAO() throws EMFUserError{
    return (ISnapshotDAO)createDAOInstance("SnapshotDAO");
 
 
  /**
   * Creates a DAO instance for a BI object.
   *
   * @return a DAO instance for the BIObject
   *
   * @throws EMFUserError If an Exception occurred
   */
  public static ISbiGeoMapsDAO getSbiGeoMapsDAO() throws EMFUserError {
    return (ISbiGeoMapsDAO)createDAOInstance("GeoMapDAO");
  }
 
  /**
   * Creates a DAO instance for a BI object.
   *
   * @return a DAO instance for the BIObject
   *
   * @throws EMFUserError If an Exception occurred
   */
  public static ISbiGeoFeaturesDAO getSbiGeoFeaturesDAO() throws EMFUserError {
    return (ISbiGeoFeaturesDAO)createDAOInstance("GeoFeatureDAO");
  }
 
  /**
   * Creates a DAO instance for a BI object.
   *
   * @return a DAO instance for the BIObject
   *
   * @throws EMFUserError If an Exception occurred
   */
  public static ISbiGeoMapFeaturesDAO getSbiGeoMapFeaturesDAO() throws EMFUserError {
    return (ISbiGeoMapFeaturesDAO)createDAOInstance("GeoMapFeatureDAO");
  }
 
  /**
   * Creates a DAO instance for a BI object.
   *
   * @return a DAO instance for the BIObject
   *
   * @throws EMFUserError If an Exception occurred
   */
  public static IUserFunctionalityDAO getUserFunctionalityDAO() throws EMFUserError {
    return (IUserFunctionalityDAO)createDAOInstance("UserFunctionalityDAO");
 
 
  /**
   * Gets the distribution list dao.
   *
   * @return the distribution list dao
   *
   * @throws EMFUserError the EMF user error
   */
  public static IDistributionListDAO getDistributionListDAO() throws EMFUserError {
    return (IDistributionListDAO)createDAOInstance("DistributionListDAO");
  }
 

  /**
   * Gets the dossier dao.
   *
   * @return the dossier dao
   *
   * @throws EMFUserError the EMF user error
   */
  public static IDossierDAO getDossierDAO() throws EMFUserError{
    return (IDossierDAO)createDAOInstance("DossierDAO");
  }
 
  /**
   * Gets the dossier presentation dao.
   *
   * @return the dossier presentation dao
   *
   * @throws EMFUserError the EMF user error
   */
  public static IDossierPresentationsDAO getDossierPresentationDAO() throws EMFUserError{
    return (IDossierPresentationsDAO)createDAOInstance("DossierPresentationDAO");
  }

  /**
   * Gets the dossier parts temp dao.
   *
   * @return the dossier parts temp dao
   *
   * @throws EMFUserError the EMF user error
   */
  public static IDossierPartsTempDAO getDossierPartsTempDAO() throws EMFUserError{
    return (IDossierPartsTempDAO)createDAOInstance("DossierPartsTempDAO");
  }
 
  /**
   * Gets the remember me dao.
   *
   * @return the remember me dao
   *
   * @throws EMFUserError the EMF user error
   */
  public static IRememberMeDAO getRememberMeDAO() throws EMFUserError{
    return (IRememberMeDAO)createDAOInstance("RememberMeDAO");
  }
 
  /**
   * Gets the menu dao.
   *
   * @return the menu dao
   *
   * @throws EMFUserError the EMF user error
   */
  public static IMenuDAO getMenuDAO() throws EMFUserError{
    return (IMenuDAO)createDAOInstance("MenuDAO");
  }
 
  /**
   * Gets the menu roles dao.
   *
   * @return the menu roles dao
   *
   * @throws EMFUserError the EMF user error
   */
  public static IMenuRolesDAO getMenuRolesDAO() throws EMFUserError{
    return (IMenuRolesDAO)createDAOInstance("MenuRolesDAO");
  }
 
  /**
   * Gets the bI object rating dao.
   *
   * @return the bI object rating dao
   *
   * @throws EMFUserError the EMF user error
   */
  public static IBIObjectRating getBIObjectRatingDAO() throws EMFUserError{
    return (IBIObjectRating)createDAOInstance("BIObjectRatingDAO");
  }
 
  /**
   * Gets the KPI dao.
   *
   * @return the KPI dao
   *
   * @throws EMFUserError the EMF user error
   */
  public static IKpiDAO getKpiDAO() throws EMFUserError{
    return (IKpiDAO)createDAOInstance("KpiDAO");
  }
 
  /**
   * Gets the KPI Instance dao.
   *
   * @return the KPI Instance dao
   *
   * @throws EMFUserError the EMF user error
   */
  public static IKpiInstanceDAO getKpiInstanceDAO() throws EMFUserError{
    return (IKpiInstanceDAO)createDAOInstance("KpiInstanceDAO");
  }
 
  /**
   * Gets the bI object rating dao.
   *
   * @return the bI object rating dao
   *
   * @throws EMFUserError the EMF user error
   */
  public static ISbiAlarmContactDAO getAlarmContactDAO() throws EMFUserError{
    return (ISbiAlarmContactDAO)createDAOInstance("AlarmContactDAO");
  }
 
  /**
   * Gets the bI object rating dao.
   *
   * @return the bI object rating dao
   *
   * @throws EMFUserError the EMF user error
   */
  public static ISbiAlarmDAO getAlarmDAO() throws EMFUserError{
    return (ISbiAlarmDAO)createDAOInstance("AlarmDAO");
  }
 
  /**
   * Gets the bI object rating dao.
   *
   * @return the bI object rating dao
   *
   * @throws EMFUserError the EMF user error
   */
  public static ISbiAlarmEventDAO getAlarmEventDAO() throws EMFUserError{
    return (ISbiAlarmEventDAO)createDAOInstance("AlarmEventDAO");
  }
 
  /**
   * Gets the MODEL dao.
   *
   * @return the MODEL dao
   *
   * @throws EMFUserError the EMF user error
   */
  public static IModelDAO getModelDAO() throws EMFUserError{
    return (IModelDAO)createDAOInstance("ModelDAO");
  }
 
  /**
   * Gets the MODELINSTANCE dao.
   *
   * @return the MODELINSTANCE dao
   *
   * @throws EMFUserError the EMF user error
   */
  public static IModelInstanceDAO getModelInstanceDAO() throws EMFUserError{
    return (IModelInstanceDAO)createDAOInstance("ModelInstanceDAO");
  }
 
  /**
   * Gets the PERIODICITY dao.
   *
   * @return the PERIODICITY dao
   *
   * @throws EMFUserError the EMF user error
   */
  public static IPeriodicityDAO getPeriodicityDAO() throws EMFUserError{
    return (IPeriodicityDAO)createDAOInstance("PeriodicityDAO");
  }

  /**
   * Gets the THRESHOLD dao.
   *
   * @return the THRESHOLD dao
   *
   * @throws EMFUserError the EMF user error
   */
  public static IThresholdDAO getThresholdDAO() throws EMFUserError{
    return (IThresholdDAO)createDAOInstance("ThresholdDAO");
  }
  /**
   * Gets the MODELRESOURCE dao.
   *
   * @return the MODELRESOURCE dao.
   *
   * @throws EMFUserError the EMF user error.
   */
  public static IModelResourceDAO getModelResourcesDAO() throws EMFUserError{
    return (IModelResourceDAO)createDAOInstance("ModelResourceDAO");
  }

  /**
   * Gets the ThresholdValue dao.
   *
   * @return the ThresholdValue dao.
   *
   * @throws EMFUserError the EMF user error.
   */
  public static IThresholdValueDAO getThresholdValueDAO() throws EMFUserError{
    return (IThresholdValueDAO)createDAOInstance("ThresholdValueDAO");
  }

  /**
   * Creates a DAO instance for a predefined Measure Unit.
   *
   * @return a DAO instance for the  predefined MeasureUnit
   *
   * @throws EMFUserError If an Exception occurred
   */
  public static IMeasureUnitDAO getMeasureUnitDAO() throws EMFUserError{
    return (IMeasureUnitDAO)createDAOInstance("MeasureUnitDAO");
  }
 
  /**
   * Creates a DAO instance for Organizational Unit.
   *
   * @return a DAO instance for Organizational Unit
   */
  public static IOrganizationalUnitDAO getOrganizationalUnitDAO() {
    return (IOrganizationalUnitDAO) createDAOInstance("SbiKpiOUDAO");
  }
 
  /**
   * Creates a DAO instance for Organizational Unit.
   *
   * @return a DAO instance for Organizational Unit
   */
  public static IGoalDAO getGoalDAO() {
    return (IGoalDAO) createDAOInstance("GoalDAO");
  }
 
  /**
   * Creates a DAO instance for a predefined Resource.
   *
   * @return a DAO instance for the  predefined rescource
   *
   * @throws EMFUserError If an Exception occurred
   */
  public static IResourceDAO getResourceDAO() throws EMFUserError{
    return (IResourceDAO)createDAOInstance("ResourceDAO");
  }
 

  /**
   * Creates a DAO instance for a predefined Resource.
   *
   * @return a DAO instance for the  predefined rescource
   *
   * @throws EMFUserError If an Exception occurred
   */
  public static IKpiInstPeriodDAO getKpiInstPeriodDAO() throws EMFUserError{
    return (IKpiInstPeriodDAO)createDAOInstance("KpiInstPeriodDAO");
  }
 
  /**
   * Creates a DAO instance for a object Metadata.
   *
   * @return a DAO instance for the  predefined object metadata
   *
   * @throws EMFUserError If an Exception occurred
   */
  public static IObjMetadataDAO getObjMetadataDAO() throws EMFUserError{
    return (IObjMetadataDAO)createDAOInstance("ObjMetadataDAO");
  }
 
  /**
   * Creates a DAO instance for a object Metadata.
   *
   * @return a DAO instance for the  predefined object metadata
   *
   * @throws EMFUserError If an Exception occurred
   */
  public static IObjMetacontentDAO getObjMetacontentDAO() throws EMFUserError{
    return (IObjMetacontentDAO)createDAOInstance("ObjMetacontentDAO");
  }
 
  /**
   * Creates a DAO instance for a object SbiUser.
   *
   * @return a DAO instance for the  predefined SbiUser
   *
   * @throws EMFUserError If an Exception occurred
   */
  public static ISbiUserDAO getSbiUserDAO() throws EMFUserError{
    return (ISbiUserDAO)createDAOInstance("SbiUserDAO");
  }
  /**
   * Creates a DAO instance for a object SbiAttribute.
   *
   * @return a DAO instance for the  predefined SbiAttribute
   *
   * @throws EMFUserError If an Exception occurred
   */
  public static ISbiAttributeDAO getSbiAttributeDAO() throws EMFUserError{
    return (ISbiAttributeDAO)createDAOInstance("SbiAttributeDAO");
  }
 
  /**
   * Creates a DAO instance for a object SbiConfig.
   *
   * @return a DAO instance for the  predefined SbiConfig
   *
   * @throws EMFUserError If an Exception occurred
   */
  public static IConfigDAO getSbiConfigDAO() throws EMFUserError{
    return (IConfigDAO)createDAOInstance("SbiConfigDAO");
  }

  /**
   * Creates a DAO instance for a object Udp.
   *
   * @return a DAO instance for the  predefined Udp
   *
   * @throws EMFUserError If an Exception occurred
   */
  public static IUdpDAO getUdpDAO() throws EMFUserError{
    return (IUdpDAO)createDAOInstance("UdpDAO");
  }
 
  /**
   * Creates a DAO instance for a object UdpValue.
   *
   * @return a DAO instance for the  predefined UdpValue
   *
   * @throws EMFUserError If an Exception occurred
   */
  public static IUdpValueDAO getUdpDAOValue() throws EMFUserError{
    return (IUdpValueDAO)createDAOInstance("UdpDAOValue");
  }

  /**
   * Creates a DAO instance for a object KpiError.
   *
   * @return a DAO instance for the  predefined KpiError
   *
   * @throws EMFUserError If an Exception occurred
   */
  public static IKpiErrorDAO getKpiErrorDAO() throws EMFUserError{
    return (IKpiErrorDAO)createDAOInstance("KpiErrorDAO");
  }
 
}
TOP

Related Classes of it.eng.spagobi.commons.dao.DAOFactory

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.