Add extra getters to DatabaseAdaptor
This commit is contained in:
parent
c965dc905c
commit
6c1bd97ad1
|
@ -61,6 +61,9 @@ public class DatabaseAdaptor
|
||||||
private String _connectionUrl;
|
private String _connectionUrl;
|
||||||
private Driver _driver;
|
private Driver _driver;
|
||||||
private DataSource _datasource;
|
private DataSource _datasource;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
private String _jndiName;
|
private String _jndiName;
|
||||||
|
|
||||||
|
|
||||||
|
@ -217,6 +220,37 @@ public class DatabaseAdaptor
|
||||||
_jndiName=jndi;
|
_jndiName=jndi;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public String getDatasourceName ()
|
||||||
|
{
|
||||||
|
return _jndiName;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public DataSource getDatasource()
|
||||||
|
{
|
||||||
|
return _datasource;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public String getDriverClassName()
|
||||||
|
{
|
||||||
|
return _driverClassName;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public Driver getDriver()
|
||||||
|
{
|
||||||
|
return _driver;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getConnectionUrl()
|
||||||
|
{
|
||||||
|
return _connectionUrl;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
public void initialize ()
|
public void initialize ()
|
||||||
throws Exception
|
throws Exception
|
||||||
{
|
{
|
||||||
|
@ -249,7 +283,6 @@ public class DatabaseAdaptor
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue