Package com.exasol
Interface ExaConnectionInformation
-
public interface ExaConnectionInformation
This class holds all information about a specific connection, as it can be created using theCREATE CONNECTION
statement.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
ExaConnectionInformation.ConnectionType
Type of database connection
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getAddress()
Get the target address of the connectionsString
getPassword()
Get the connection password.ExaConnectionInformation.ConnectionType
getType()
Get the connection type.String
getUser()
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
TO
keyword in theCREATE CONNECTION
command
-
getUser
String getUser()
Get the username.- Returns:
- username of the connection, i.e. the part that follows the
USER
keyword in theCREATE CONNECTION
command
-
getPassword
String getPassword()
Get the connection password.- Returns:
- password of the connection, i.e. the part that follows the
IDENTIFIED BY
keyword in theCREATE CONNECTION
command
-
-