Uses of Class
org.pentaho.platform.dataaccess.datasource.beans.BusinessData

Packages that use BusinessData
org.pentaho.platform.dataaccess.datasource Contains classes for the Xul-based MQL Edtor. 
org.pentaho.platform.dataaccess.datasource.beans JavaBean implementations for the MQL thin-model interfaces. 
org.pentaho.platform.dataaccess.datasource.wizard.controllers Various Class Relationships 
org.pentaho.platform.dataaccess.datasource.wizard.models Contains UI-specific implementations of the MQL thin-model interfaces. 
org.pentaho.platform.dataaccess.datasource.wizard.service   
org.pentaho.platform.dataaccess.datasource.wizard.service.gwt Gwt interfaces 
org.pentaho.platform.dataaccess.datasource.wizard.service.impl   
 

Uses of BusinessData in org.pentaho.platform.dataaccess.datasource
 

Methods in org.pentaho.platform.dataaccess.datasource that return BusinessData
 BusinessData IDatasource.getBusinessData()
           
 

Methods in org.pentaho.platform.dataaccess.datasource with parameters of type BusinessData
 void IDatasource.setBusinessData(BusinessData object)
           
 

Uses of BusinessData in org.pentaho.platform.dataaccess.datasource.beans
 

Methods in org.pentaho.platform.dataaccess.datasource.beans that return BusinessData
 BusinessData Datasource.getBusinessData()
           
 

Methods in org.pentaho.platform.dataaccess.datasource.beans with parameters of type BusinessData
 void Datasource.setBusinessData(BusinessData businessData)
           
 

Uses of BusinessData in org.pentaho.platform.dataaccess.datasource.wizard.controllers
 

Methods in org.pentaho.platform.dataaccess.datasource.wizard.controllers with parameters of type BusinessData
 void CsvDatasourceController.initializeBusinessData(BusinessData businessData)
           
 void IDatasourceTypeController.initializeBusinessData(BusinessData businessData)
           
 void RelationalDatasourceController.initializeBusinessData(BusinessData businessData)
           
 boolean CsvDatasourceController.supportsBusinessData(BusinessData businessData)
           
 boolean IDatasourceTypeController.supportsBusinessData(BusinessData businessData)
           
 boolean RelationalDatasourceController.supportsBusinessData(BusinessData businessData)
           
 

Uses of BusinessData in org.pentaho.platform.dataaccess.datasource.wizard.models
 

Methods in org.pentaho.platform.dataaccess.datasource.wizard.models that return BusinessData
 BusinessData CsvModel.getBusinessData()
           
 BusinessData RelationalModel.getBusinessData()
           
 

Methods in org.pentaho.platform.dataaccess.datasource.wizard.models with parameters of type BusinessData
 void CsvModel.setBusinessData(BusinessData value)
           
 void RelationalModel.setBusinessData(BusinessData value)
           
 

Uses of BusinessData in org.pentaho.platform.dataaccess.datasource.wizard.service
 

Method parameters in org.pentaho.platform.dataaccess.datasource.wizard.service with type arguments of type BusinessData
 void IXulAsyncDatasourceService.generateInlineEtlLogicalModel(String modelName, String relativeFilePath, boolean headersPresent, String delimeter, String enclosure, org.pentaho.ui.xul.XulServiceCallback<BusinessData> callback)
           
 void IXulAsyncDatasourceService.generateLogicalModel(String modelName, String connectionName, String query, String previewLimit, org.pentaho.ui.xul.XulServiceCallback<BusinessData> callback)
           
 void IXulAsyncDatasourceService.loadBusinessData(String domainId, String modelId, org.pentaho.ui.xul.XulServiceCallback<BusinessData> callback)
           
 

Uses of BusinessData in org.pentaho.platform.dataaccess.datasource.wizard.service.gwt
 

Methods in org.pentaho.platform.dataaccess.datasource.wizard.service.gwt that return BusinessData
 BusinessData DatasourceDebugGwtServlet.generateInlineEtlLogicalModel(String modelName, String relativeFilePath, boolean headersPresent, String delimeter, String enclosure)
           
 BusinessData IDatasourceService.generateInlineEtlLogicalModel(String modelName, String relativeFilePath, boolean headersPresent, String delimeter, String enclosure)
          Returns the generated csv based logical model along with the sample data for the given connection name and query
 BusinessData DatasourceDebugGwtServlet.generateLogicalModel(String modelName, String connectionName, String query, String previewLimit)
           
 BusinessData IDatasourceService.generateLogicalModel(String modelName, String connectionName, String query, String previewLimit)
          Returns the generated relational based logical model along with the sample data for the given connection name and query
 BusinessData DatasourceDebugGwtServlet.loadBusinessData(String domainId, String modelId)
           
 BusinessData IDatasourceService.loadBusinessData(String domainId, String modelId)
          Returns the save logical model for a given Domain ID and Model ID
 

Method parameters in org.pentaho.platform.dataaccess.datasource.wizard.service.gwt with type arguments of type BusinessData
 void IGwtDatasourceServiceAsync.generateInlineEtlLogicalModel(String modelName, String relativeFilePath, boolean headersPresent, String delimeter, String enclosure, com.google.gwt.user.client.rpc.AsyncCallback<BusinessData> callback)
           
 void IGwtDatasourceServiceAsync.generateLogicalModel(String modelName, String connectionName, String query, String previewLimit, com.google.gwt.user.client.rpc.AsyncCallback<BusinessData> callback)
           
 void IGwtDatasourceServiceAsync.loadBusinessData(String domainId, String modelId, com.google.gwt.user.client.rpc.AsyncCallback<BusinessData> callback)
           
 

Uses of BusinessData in org.pentaho.platform.dataaccess.datasource.wizard.service.impl
 

Methods in org.pentaho.platform.dataaccess.datasource.wizard.service.impl that return BusinessData
 BusinessData DatasourceServiceImpl.generateInlineEtlLogicalModel(String modelName, String relativeFilePath, boolean headersPresent, String delimiter, String enclosure)
           
 BusinessData InMemoryDatasourceServiceImpl.generateInlineEtlLogicalModel(String modelName, String relativeFilePath, boolean headersPresent, String delimiter, String enclosure)
           
 BusinessData DatasourceServiceImpl.generateLogicalModel(String modelName, String connectionName, String query, String previewLimit)
          This method gets the business data which are the business columns, columns types and sample preview data
 BusinessData InMemoryDatasourceServiceImpl.generateLogicalModel(String modelName, String connectionName, String query, String previewLimit)
          This method gets the business data which are the business columns, columns types and sample preview data
 BusinessData DatasourceServiceImpl.loadBusinessData(String domainId, String modelId)
           
 BusinessData InMemoryDatasourceServiceImpl.loadBusinessData(String domainId, String modelId)
           
 

Method parameters in org.pentaho.platform.dataaccess.datasource.wizard.service.impl with type arguments of type BusinessData
 void DatasourceServiceDebugImpl.generateInlineEtlLogicalModel(String modelName, String relativeFilePath, boolean headersPresent, String delimeter, String enclosure, org.pentaho.ui.xul.XulServiceCallback<BusinessData> callback)
           
 void DatasourceServiceGwtImpl.generateInlineEtlLogicalModel(String modelName, String relativeFilePath, boolean headersPresent, String delimeter, String enclosure, org.pentaho.ui.xul.XulServiceCallback<BusinessData> xulCallback)
           
 void DatasourceServiceDebugImpl.generateLogicalModel(String modelName, String connectionName, String query, String previewLimit, org.pentaho.ui.xul.XulServiceCallback<BusinessData> callback)
           
 void DatasourceServiceGwtImpl.generateLogicalModel(String modelName, String connectionName, String query, String previewLimit, org.pentaho.ui.xul.XulServiceCallback<BusinessData> xulCallback)
           
 void DatasourceServiceDebugImpl.loadBusinessData(String domainId, String modelId, org.pentaho.ui.xul.XulServiceCallback<BusinessData> callback)
           
 void DatasourceServiceGwtImpl.loadBusinessData(String domainId, String modelId, org.pentaho.ui.xul.XulServiceCallback<BusinessData> xulCallback)