Interface AuthData
-
public interface AuthDataThe AuthData interface is used to obtain the user and password from the configured auth data.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetKrb5Principal()java.nio.file.PathgetKrb5TicketCache()char[]getPassword()Gets the password as a char[] as defined in the configuration.java.lang.StringgetUserName()Gets the user name as defined in the configuration.
-
-
-
Method Detail
-
getUserName
java.lang.String getUserName()
Gets the user name as defined in the configuration.- Returns:
- the user name.
-
getPassword
char[] getPassword()
Gets the password as a char[] as defined in the configuration.- Returns:
- the char[] representation of the password.
-
getKrb5Principal
java.lang.String getKrb5Principal()
-
getKrb5TicketCache
java.nio.file.Path getKrb5TicketCache()
-
-