Interface WebRDBMSLoginInfo
-
public interface WebRDBMSLoginInfoThis interface represents the RDBMS authentication settings which can be set on a user. This interface is obtained from theWebUserinterface, and can be used to read and write those settings related to RDBMS authentication on a user object.- Since:
- MicroStrategy Web 7.5.2
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetRDBMSLogin()Returns the RDBMS login associated with the user.voidsetRDBMSLogin(java.lang.String login)Sets the RDBMS login associated with the user.voidsetRDBMSPassword(java.lang.String p)Sets the RDBMS password associated with the user.
-
-
-
Method Detail
-
getRDBMSLogin
java.lang.String getRDBMSLogin()
Returns the RDBMS login associated with the user.- Returns:
- The RDBMS login associated with the user.
-
setRDBMSLogin
void setRDBMSLogin(java.lang.String login)
Sets the RDBMS login associated with the user.- Parameters:
login- The RDBMS login to associate with the user.
-
setRDBMSPassword
void setRDBMSPassword(java.lang.String p)
Sets the RDBMS password associated with the user.- Parameters:
password- the RDBMS password to associate with the user.
-
-