Package com.microstrategy.web.app.tasks
Class LoginFirstTask
- java.lang.Object
-
- com.microstrategy.web.tasks.AbstractBaseTask
-
- com.microstrategy.web.app.tasks.LoginFirstTask
-
- All Implemented Interfaces:
Task
public class LoginFirstTask extends AbstractBaseTask
-
-
Field Summary
Fields Modifier and Type Field Description protected TaskParameterMetadataapplicationTypeTaskParamprotected TaskParameterMetadataauthModeTaskParamstatic java.lang.StringBLOCK_NAME_LOGINTASKDATAThe name of the Block that should contain the resulting task response.protected TaskParameterMetadataidentificationNameTaskParamstatic java.lang.StringPARAM_NAME_APPLICATION_TYPEThe application type making the request.static java.lang.StringPARAM_NAME_AUTH_MODEThe name of the authentication mode parameter.static java.lang.StringPARAM_NAME_LThe name of the user ID parameter.static java.lang.StringPARAM_NAME_PThe name of the password parameter.static java.lang.StringPROP_NAME_LOGINTASKDATA_SESSION_STATEThe name of the session ID property in the Block.protected TaskParameterMetadataunlockPhraseTaskParam-
Fields inherited from class com.microstrategy.web.tasks.AbstractBaseTask
compressOutput, CONTENT_TYPE_BINARY, CONTENT_TYPE_HTML, CONTENT_TYPE_JSON, CONTENT_TYPE_JSON_ALL, CONTENT_TYPE_JSON_D, CONTENT_TYPE_JSON_P, CONTENT_TYPE_XML, CONTENT_TYPE_XML_ANF, DEFAULT_MAX_WAIT, DEFAULT_POLLING_FREQ, execFlagsParam, INDEFINITE_MAX_WAIT, maxWaitParam, metadata, mPrivileges, msgIDParam, objectIDParam, OTHER_CONTENT_KEY_LAYOUTS, PARAM_NAME_EXEC_FLAGS, PARAM_NAME_MAX_WAIT, PARAM_NAME_MESSAGE_ID, PARAM_NAME_OBJECT_ID, PARAM_NAME_POLLING_FREQ, PARAM_NAME_RESULT_FLAGS, PARAM_NAME_SESSION_ID, PARAM_NAME_SESSION_STATE, PARAM_NAME_STATE_ID, pollingFreqParam, PREFERENCE_DEFAULT_MAX_WAIT_IN_TASK, resultFlagsParam, sessionIDParam, sessionStateParam, stateIDParam
-
-
Constructor Summary
Constructors Modifier Constructor Description LoginFirstTask()Creates a new LoginTask object.protectedLoginFirstTask(java.lang.String desc)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected java.lang.Stringconfigure(Block block, TaskRequestContext context, WebAppSessionManager sessionManager)TaskRequestContextnewRequestContext()Returns a new object to hold per-request data for this Task.voidprocessRequest(TaskRequestContext context, TaskOutput taskOutput)The default implementation of this method of processRequest gets the Primary Content from the TaskOutput and invokes theAbstractBaseTask.processRequest(TaskRequestContext, MarkupOutput)version.-
Methods inherited from class com.microstrategy.web.tasks.AbstractBaseTask
addExecFlagsParam, addJuilLayouts, addMaxWaitParam, addMaxWaitParam, addMessageIDParam, addObjectIDParam, addParameterMetadata, addParameterMetadata, addParameterMetadata, addPollingFrequencyParam, addPollingFrequencyParam, addResultFlagsParam, addSessionIDParam, addSessionStateParam, addStateIDParam, checkForRequiredParameters, destroy, getCompressOutput, getID, getMetadata, getPrivileges, getSysDefaultPreferenceValue, init, processRequest, retrieveUploadedFile, setCompressOutput, setDescription, setID, setMetadata, setPrivileges, validateContentType
-
-
-
-
Field Detail
-
PARAM_NAME_P
public static final java.lang.String PARAM_NAME_P
The name of the password parameter.- See Also:
- Constant Field Values
-
PARAM_NAME_L
public static final java.lang.String PARAM_NAME_L
The name of the user ID parameter.- See Also:
- Constant Field Values
-
PARAM_NAME_AUTH_MODE
public static final java.lang.String PARAM_NAME_AUTH_MODE
The name of the authentication mode parameter.- See Also:
- Constant Field Values
-
BLOCK_NAME_LOGINTASKDATA
public static final java.lang.String BLOCK_NAME_LOGINTASKDATA
The name of the Block that should contain the resulting task response.- See Also:
- Constant Field Values
-
PROP_NAME_LOGINTASKDATA_SESSION_STATE
public static final java.lang.String PROP_NAME_LOGINTASKDATA_SESSION_STATE
The name of the session ID property in the Block.- See Also:
- Constant Field Values
-
PARAM_NAME_APPLICATION_TYPE
public static final java.lang.String PARAM_NAME_APPLICATION_TYPE
The application type making the request.- See Also:
EnumDSSXMLApplicationType, Constant Field Values
-
identificationNameTaskParam
protected TaskParameterMetadata identificationNameTaskParam
-
unlockPhraseTaskParam
protected TaskParameterMetadata unlockPhraseTaskParam
-
authModeTaskParam
protected TaskParameterMetadata authModeTaskParam
-
applicationTypeTaskParam
protected TaskParameterMetadata applicationTypeTaskParam
-
-
Method Detail
-
newRequestContext
public TaskRequestContext newRequestContext()
Description copied from interface:TaskReturns a new object to hold per-request data for this Task.- Specified by:
newRequestContextin interfaceTask- Overrides:
newRequestContextin classAbstractBaseTask- Returns:
- A new
TaskRequestContextobject for this Task.
-
configure
protected java.lang.String configure(Block block, TaskRequestContext context, WebAppSessionManager sessionManager) throws TaskException
- Throws:
TaskException
-
processRequest
public void processRequest(TaskRequestContext context, TaskOutput taskOutput) throws TaskException
Description copied from class:AbstractBaseTaskThe default implementation of this method of processRequest gets the Primary Content from the TaskOutput and invokes theAbstractBaseTask.processRequest(TaskRequestContext, MarkupOutput)version.- Specified by:
processRequestin interfaceTask- Overrides:
processRequestin classAbstractBaseTask- Parameters:
context- TheTaskRequestContextobject that maintains the state of the request.taskOutput- TheTaskOutputthat contains the output generated by the Task.- Throws:
TaskException- If the Task was unable to satisfy the request.- See Also:
Task.processRequest(TaskRequestContext, TaskOutput)
-
-