Interface UniversalCredential
- All Known Implementing Classes:
MysqlCredential
public interface UniversalCredential
Api credential
- Author:
- ykingboos
-
Method Summary
Modifier and Type Method Description java.lang.String
getDatabase()
Get the database to desired database namejava.lang.String
getHostname()
Get the hostname to desired hostjava.lang.String
getPassword()
Get the password to authenticate with mysql serverjava.lang.String
getUser()
Get the user to authenticate with mysql server
-
Method Details
-
getHostname
java.lang.String getHostname()Get the hostname to desired host- Returns:
- raw name of hostname
-
getDatabase
java.lang.String getDatabase()Get the database to desired database name- Returns:
- raw name of database
-
getUser
java.lang.String getUser()Get the user to authenticate with mysql server- Returns:
- raw name of user
-
getPassword
java.lang.String getPassword()Get the password to authenticate with mysql server- Returns:
- raw name of password
-