Uses of Class
it.eng.spagobi.engines.config.bo.Engine

Packages that use Engine
it.eng.spagobi.analiticalmodel.document.bo   
it.eng.spagobi.commons.utilities   
it.eng.spagobi.engines.config.dao   
it.eng.spagobi.sdk.utilities   
it.eng.spagobi.tools.importexport   
it.eng.spagobi.tools.importexport.typesmanager   
 

Uses of Engine in it.eng.spagobi.analiticalmodel.document.bo
 

Methods in it.eng.spagobi.analiticalmodel.document.bo that return Engine
 Engine BIObject.getEngine()
          Gets the engine.
 

Methods in it.eng.spagobi.analiticalmodel.document.bo with parameters of type Engine
 void BIObject.setEngine(Engine engine)
          Sets the engine.
 

Uses of Engine in it.eng.spagobi.commons.utilities
 

Methods in it.eng.spagobi.commons.utilities with parameters of type Engine
static boolean EngineUtilities.isExternal(Engine engine)
          Checks if is external.
static boolean EngineUtilities.isInternal(Engine engine)
          Checks if is internal.
 

Uses of Engine in it.eng.spagobi.engines.config.dao
 

Methods in it.eng.spagobi.engines.config.dao that return Engine
 Engine EngineDAOHibImpl.loadEngineByID(java.lang.Integer engineID)
          Load engine by id.
 Engine IEngineDAO.loadEngineByID(java.lang.Integer engineID)
          Loads all detail information for an engine identified by its engineID.
 Engine EngineDAOHibImpl.loadEngineByLabel(java.lang.String engineLabel)
          Load engine by label.
 Engine IEngineDAO.loadEngineByLabel(java.lang.String engineLabel)
          Loads all detail information for an engine identified by its engineLabel.
 Engine EngineDAOHibImpl.toEngine(SbiEngines hibEngine)
          From the hibernate Engine at input, gives the corrispondent Engine object.
 

Methods in it.eng.spagobi.engines.config.dao that return types with arguments of type Engine
 java.util.List<Engine> IEngineDAO.loadAllEngines()
          Loads all detail information for all engines.
 java.util.List<Engine> EngineDAOHibImpl.loadAllEnginesForBIObjectType(java.lang.String biobjectType)
          Load all engines for bi object type.
 java.util.List<Engine> IEngineDAO.loadAllEnginesForBIObjectType(java.lang.String biobjectType)
          Loads all detail information for all engines compatible to the BIObject type specified at input.
 

Methods in it.eng.spagobi.engines.config.dao with parameters of type Engine
 void EngineDAOHibImpl.eraseEngine(Engine aEngine)
          Erase engine.
 void IEngineDAO.eraseEngine(Engine aEngine)
          Implements the query to erase an engine.
 java.util.List EngineDAOHibImpl.getAssociatedExporters(Engine engine)
           
 java.util.List IEngineDAO.getAssociatedExporters(Engine engineId)
          Get all the associated Exporters
 void EngineDAOHibImpl.insertEngine(Engine aEngine)
          Insert engine.
 void IEngineDAO.insertEngine(Engine aEngine)
          Implements the query to insert an engine.
 void EngineDAOHibImpl.modifyEngine(Engine aEngine)
          Modify engine.
 void IEngineDAO.modifyEngine(Engine aEngine)
          Implements the query to modify an engine.
 

Uses of Engine in it.eng.spagobi.sdk.utilities
 

Methods in it.eng.spagobi.sdk.utilities with parameters of type Engine
 it.eng.spagobi.sdk.engines.bo.SDKEngine SDKObjectsConverter.fromEngineToSDKEngine(Engine engine)
           
 

Uses of Engine in it.eng.spagobi.tools.importexport
 

Methods in it.eng.spagobi.tools.importexport with parameters of type Engine
 void ExporterMetadata.insertEngine(Engine engine, org.hibernate.Session session)
          Insert an engine into the exported database.
 

Uses of Engine in it.eng.spagobi.tools.importexport.typesmanager
 

Methods in it.eng.spagobi.tools.importexport.typesmanager with parameters of type Engine
static ITypesExportManager TypesExportManagerFactory.createTypesExportManager(BIObject biobj, Engine engine, ExporterMetadata exporter, ExportManager manager)