Class AdminConnectionParameters
- java.lang.Object
-
- edu.uiuc.ncsa.security.storage.sql.SQLConnectionImpl
-
- edu.uiuc.ncsa.security.storage.sql.AdminConnectionParameters
-
- All Implemented Interfaces:
ConnectionParameters
- Direct Known Subclasses:
PostgresAdminConnectionParameters
public abstract class AdminConnectionParameters extends SQLConnectionImpl
Databases might require access as a specific administrator. This allows for that.Created by Jeff Gaynor
on Jun 23, 2010 at 8:09:12 AM
-
-
Field Summary
-
Fields inherited from class edu.uiuc.ncsa.security.storage.sql.SQLConnectionImpl
databaseName, host, jdbcDriver, password, port, schema, username, useSSL
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getClientUsername()
The name of the user who will be accessing the database.void
setClientUsername(String clientUsername)
-
Methods inherited from class edu.uiuc.ncsa.security.storage.sql.SQLConnectionImpl
addParameters, equals, fromJSON, getDatabaseName, getParameters, getPassword, getSchema, getUsername, init, toJSON, toString
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface edu.uiuc.ncsa.security.storage.sql.ConnectionParameters
getJdbcUrl
-
-
-
-
Method Detail
-
getClientUsername
public String getClientUsername()
The name of the user who will be accessing the database. This is used to set permissions. Contrast to the username here which in this case is the name of the administrator.- Returns:
-
setClientUsername
public void setClientUsername(String clientUsername)
-
-