Package com.microstrategy.web.app
Class MSTRLoginForm
- java.lang.Object
-
- com.microstrategy.web.app.MSTRLoginForm
-
-
Constructor Summary
Constructors Constructor Description MSTRLoginForm()Class Constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetAuthMode()Returns the current setting of the authMode property, which determines the type of credentials used upon creating a session to the Intelligence Server.java.lang.StringgetFormErrorMessage()If the Form Status is false, then the External Security Provider can specify an error message for the Web Universal application to display.booleangetFormStatus()If the data supplied in the login form was successfully used to construct a WebIServerSession, then the External Security Provider set the Form Status to true.java.util.LocalegetLocale()Get the desired locale that the user is operating injava.lang.StringgetLoginName()Get the value of the Login name supplied by the userjava.lang.StringgetPassword()Get the value of the Password supplied by the userjava.lang.StringgetProjectName()Get the desired server project (if available)java.lang.StringgetServerName()Get the desired server name (if available)intgetServerPort()Get the desired server port (if available)WebIServerSessiongetWebIServerSession()Get the WebIServerSession object that the Web Universal application would use by default.voidsetAuthMode(int authMode)Sets the current setting of the authMode property, which determines the type of credentials used upon creating a session to the Intelligence Server.voidsetFormErrorMessage(java.lang.String errMsg)If the Form Status is false, then the External Security Provider can specify an error message for the Web Universal application to display.voidsetFormStatus(boolean status)If the data supplied in the login form was successfully used to construct a WebIServerSession, then the External Security Provider should set the Form Status to true.voidsetLocale(java.util.Locale locale)Set the desired locale that the user is operating invoidsetLoginName(java.lang.String lName)Set the value of the Login name supplied by the uservoidsetPassword(java.lang.String p)Set the value of the Password supplied by the uservoidsetProjectName(java.lang.String projectName)Set the desired server projectvoidsetServerName(java.lang.String serverName)Set the desired server namevoidsetServerPort(int serverPort)Set the desired server portvoidsetWebIServerSession(WebIServerSession session)If the Form Status is true, then the External Security Provider can specify the WebIServerSession object to use.
-
-
-
Method Detail
-
getLoginName
public java.lang.String getLoginName()
Get the value of the Login name supplied by the user- Specified by:
getLoginNamein interfaceLoginForm- Returns:
- a
Stringwith the login name given by the user
-
getPassword
public java.lang.String getPassword()
Get the value of the Password supplied by the user- Specified by:
getPasswordin interfaceLoginForm- Returns:
- a
Stringwith the password given by the user
-
getServerName
public java.lang.String getServerName()
Get the desired server name (if available)- Specified by:
getServerNamein interfaceLoginForm- Returns:
- a
Stringwith the server name information, if provided
-
getServerPort
public int getServerPort()
Get the desired server port (if available)- Specified by:
getServerPortin interfaceLoginForm- Returns:
- a
intwith the server port information, if provided
-
getProjectName
public java.lang.String getProjectName()
Get the desired server project (if available)- Specified by:
getProjectNamein interfaceLoginForm- Returns:
- a
Stringwith the server project information, if provided
-
getLocale
public java.util.Locale getLocale()
Get the desired locale that the user is operating in
-
getAuthMode
public int getAuthMode()
Returns the current setting of the authMode property, which determines the type of credentials used upon creating a session to the Intelligence Server.- Specified by:
getAuthModein interfaceLoginForm- Returns:
- The current authMode setting, from
EnumDSSXMLAuthModes. - Since:
- MicroStrategy Web 8.0.2
- See Also:
setAuthMode(int)
-
getWebIServerSession
public WebIServerSession getWebIServerSession()
Get the WebIServerSession object that the Web Universal application would use by default. This is constructed based on the values collected by the Web Application.- Specified by:
getWebIServerSessionin interfaceLoginForm- Returns:
- a
WebIServerSessioninstance that the application should use for the current request
-
setFormStatus
public void setFormStatus(boolean status)
If the data supplied in the login form was successfully used to construct a WebIServerSession, then the External Security Provider should set the Form Status to true. If there was an error in the form data or a WebIServerSession could not be constructed, then the External Security Provider should set this value to false.- Specified by:
setFormStatusin interfaceLoginForm- Parameters:
status-booleanindicating the form status to assign.
-
setFormErrorMessage
public void setFormErrorMessage(java.lang.String errMsg)
If the Form Status is false, then the External Security Provider can specify an error message for the Web Universal application to display. If no message is provided (null), then the Web Application will provide a generic error message.- Specified by:
setFormErrorMessagein interfaceLoginForm- Parameters:
errMsg-Stringwith the error message to assign.
-
setWebIServerSession
public void setWebIServerSession(WebIServerSession session)
If the Form Status is true, then the External Security Provider can specify the WebIServerSession object to use.- Specified by:
setWebIServerSessionin interfaceLoginForm- Parameters:
session-WebIServerSessioninstance to be used.
-
setLoginName
public void setLoginName(java.lang.String lName)
Set the value of the Login name supplied by the user- Specified by:
setLoginNamein interfaceLoginForm- Parameters:
lName-Stringwith the login name given by the user
-
setPassword
public void setPassword(java.lang.String p)
Set the value of the Password supplied by the user- Specified by:
setPasswordin interfaceLoginForm- Parameters:
p-Stringwith the password given by the user
-
setServerName
public void setServerName(java.lang.String serverName)
Set the desired server name- Specified by:
setServerNamein interfaceLoginForm- Parameters:
serverName-Stringwith the server name information
-
setServerPort
public void setServerPort(int serverPort)
Set the desired server port- Specified by:
setServerPortin interfaceLoginForm- Parameters:
serverPort-intwith the server port information
-
setProjectName
public void setProjectName(java.lang.String projectName)
Set the desired server project- Specified by:
setProjectNamein interfaceLoginForm- Parameters:
projectName-Stringwith the server project information
-
setAuthMode
public void setAuthMode(int authMode)
Sets the current setting of the authMode property, which determines the type of credentials used upon creating a session to the Intelligence Server.- Specified by:
setAuthModein interfaceLoginForm- Parameters:
authMode- The authMode setting to use, fromEnumDSSXMLAuthModes.- Since:
- MicroStrategy Web 8.0.2
- See Also:
getAuthMode()
-
setLocale
public void setLocale(java.util.Locale locale)
Set the desired locale that the user is operating in
-
getFormStatus
public boolean getFormStatus()
If the data supplied in the login form was successfully used to construct a WebIServerSession, then the External Security Provider set the Form Status to true. If there was an error in the form data or a WebIServerSession could not be constructed, then the External Security Provider set this value to false.- Specified by:
getFormStatusin interfaceLoginForm- Returns:
booleanindicating the form status to assign.
-
getFormErrorMessage
public java.lang.String getFormErrorMessage()
If the Form Status is false, then the External Security Provider can specify an error message for the Web Universal application to display.- Specified by:
getFormErrorMessagein interfaceLoginForm- Returns:
Stringwith the error message to assign. If no message is provided (null), then the Web Application can provide a generic error message.
-
-