Add support for SAP HANA

SAP HANA [1] is now supported as a database.

[1] http://help.sap.com/hana_appliance/

Depends-On: Ib733610cb826d17d72defd71a9e2c5f0fc7ce154
Change-Id: I4c46ba18f95177c832472317fa6c2cdad19749ee
This commit is contained in:
Adrian Görler
2016-01-05 13:32:47 +01:00
committed by Matthias Sohn
parent 2c98da8571
commit 0eda471cf2
9 changed files with 202 additions and 0 deletions

View File

@@ -35,5 +35,6 @@ public class DataSourceModule extends AbstractModule {
*/
bind(DataSourceType.class).annotatedWith(Names.named("maxdb")).to(MaxDb.class);
bind(DataSourceType.class).annotatedWith(Names.named("sap db")).to(MaxDb.class);
bind(DataSourceType.class).annotatedWith(Names.named("hana")).to(HANA.class);
}
}