Package adams.core
Interface EnvironmentPasswordSupporter
-
- All Superinterfaces:
ActualPasswordSupporter
- All Known Implementing Classes:
AbstractDatabaseConnection,DatabaseConnection,IMAPConnection,SMBConnection,SMTPConnection,SSHConnection
public interface EnvironmentPasswordSupporter extends ActualPasswordSupporter
Interface for classes that handle a password.- Author:
- fracpete (fracpete at waikato dot ac dot nz)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetPasswordEnvVar()Returns the environment variable to obtaining the password from.StringpasswordEnvVarTipText()Returns the tip text for this property.voidsetPasswordEnvVar(String value)Sets the environment variable to obtaining the password from.-
Methods inherited from interface adams.core.ActualPasswordSupporter
getActualPassword, setActualPassword
-
-
-
-
Method Detail
-
setPasswordEnvVar
void setPasswordEnvVar(String value)
Sets the environment variable to obtaining the password from.- Parameters:
value- the variable
-
getPasswordEnvVar
String getPasswordEnvVar()
Returns the environment variable to obtaining the password from.- Returns:
- the variable
-
passwordEnvVarTipText
String passwordEnvVarTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the GUI or for listing the options.
-
-