Uses of Class
org.makumba.providers.Configuration.DataSourceType

Packages that use Configuration.DataSourceType
org.makumba.db.hibernate   
org.makumba.db.makumba   
org.makumba.providers   
 

Uses of Configuration.DataSourceType in org.makumba.db.hibernate
 

Methods in org.makumba.db.hibernate that return Configuration.DataSourceType
protected  Configuration.DataSourceType HibernateTransactionProvider.getLastConnectionType()
           
 

Methods in org.makumba.db.hibernate with parameters of type Configuration.DataSourceType
protected  void HibernateTransactionProvider.setLastConnectionType(Configuration.DataSourceType type)
           
 

Uses of Configuration.DataSourceType in org.makumba.db.makumba
 

Methods in org.makumba.db.makumba that return Configuration.DataSourceType
protected  Configuration.DataSourceType MakumbaTransactionProvider.getLastConnectionType()
           
 

Methods in org.makumba.db.makumba with parameters of type Configuration.DataSourceType
protected  void MakumbaTransactionProvider.setLastConnectionType(Configuration.DataSourceType type)
           
 

Uses of Configuration.DataSourceType in org.makumba.providers
 

Methods in org.makumba.providers that return Configuration.DataSourceType
static Configuration.DataSourceType Configuration.getDataSourceType(String dataSourceName)
          Gives the type of the data source (makumba or hibernate)
protected abstract  Configuration.DataSourceType TransactionProvider.getLastConnectionType()
           
 Configuration.DataSourceType ConfiguredDataSource.getType()
           
static Configuration.DataSourceType Configuration.DataSourceType.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Configuration.DataSourceType[] Configuration.DataSourceType.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in org.makumba.providers with parameters of type Configuration.DataSourceType
protected abstract  void TransactionProvider.setLastConnectionType(Configuration.DataSourceType type)
           
 void ConfiguredDataSource.setType(Configuration.DataSourceType type)
           
 

Constructors in org.makumba.providers with parameters of type Configuration.DataSourceType
ConfiguredDataSource(String host, String name, String path, Configuration.DataSourceType type)