Package com.exasol
Interface ExaConnectionInformation
-
public interface ExaConnectionInformationThis class holds all information about a specific connection, as it can be created using theCREATE CONNECTIONstatement.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classExaConnectionInformation.ConnectionTypeType of database connection
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetAddress()Get the target address of the connectionsStringgetPassword()Get the connection password.ExaConnectionInformation.ConnectionTypegetType()Get the connection type.StringgetUser()Get the username.
-
-
-
Method Detail
-
getType
ExaConnectionInformation.ConnectionType getType()
Get the connection type.- Returns:
- type of the connection
-
getAddress
String getAddress()
Get the target address of the connections- Returns:
- address of the connection, i.e. the part that follows the
TOkeyword in theCREATE CONNECTIONcommand
-
getUser
String getUser()
Get the username.- Returns:
- username of the connection, i.e. the part that follows the
USERkeyword in theCREATE CONNECTIONcommand
-
getPassword
String getPassword()
Get the connection password.- Returns:
- password of the connection, i.e. the part that follows the
IDENTIFIED BYkeyword in theCREATE CONNECTIONcommand
-
-