Package com.microstrategy.web.app.tasks
Class ChangePasswordTask
- java.lang.Object
-
- com.microstrategy.web.tasks.AbstractBaseTask
-
- com.microstrategy.web.app.tasks.AbstractAppTask
-
- com.microstrategy.web.app.tasks.ChangePasswordTask
-
- All Implemented Interfaces:
Task
public class ChangePasswordTask extends AbstractAppTask
-
-
Field Summary
Fields Modifier and Type Field Description protected TaskParameterMetadata
authModeTaskParam
protected TaskParameterMetadata
loginTaskParam
protected TaskParameterMetadata
newPasswordTaskParam
protected TaskParameterMetadata
oldPasswordTaskParam
static java.lang.String
PARAM_NAME_L
The name of the user ID parameter.static java.lang.String
PARAM_NAME_LOGIN
Deprecated.static java.lang.String
PARAM_NAME_NEW_P
The name of the new password parameter.static java.lang.String
PARAM_NAME_NEW_PASSWORD
Deprecated.static java.lang.String
PARAM_NAME_OLD_P
The name of the old password parameter.static java.lang.String
PARAM_NAME_OLD_PASSWORD
Deprecated.static java.lang.String
PARAM_NAME_PORT
The name of the port parameter.static java.lang.String
PARAM_NAME_SERVER
The name of the server parameter.protected TaskParameterMetadata
portTaskParam
protected TaskParameterMetadata
serverTaskParam
-
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 Constructor Description ChangePasswordTask()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
processRequest(TaskRequestContext context, MarkupOutput markupOutput)
The default implementation of this version of processRequest is empty.-
Methods inherited from class com.microstrategy.web.app.tasks.AbstractAppTask
getDescriptor, newRequestContext
-
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_SERVER
public static final java.lang.String PARAM_NAME_SERVER
The name of the server parameter.- See Also:
- Constant Field Values
-
PARAM_NAME_OLD_P
public static final java.lang.String PARAM_NAME_OLD_P
The name of the old password parameter.- See Also:
- Constant Field Values
-
PARAM_NAME_OLD_PASSWORD
@Deprecated public static final java.lang.String PARAM_NAME_OLD_PASSWORD
Deprecated.- See Also:
- Constant Field Values
-
PARAM_NAME_NEW_P
public static final java.lang.String PARAM_NAME_NEW_P
The name of the new password parameter.- See Also:
- Constant Field Values
-
PARAM_NAME_NEW_PASSWORD
@Deprecated public static final java.lang.String PARAM_NAME_NEW_PASSWORD
Deprecated.- 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_LOGIN
@Deprecated public static final java.lang.String PARAM_NAME_LOGIN
Deprecated.- See Also:
- Constant Field Values
-
PARAM_NAME_PORT
public static final java.lang.String PARAM_NAME_PORT
The name of the port parameter.- Since:
- MicroStrategy Web 8.1.2
- See Also:
- Constant Field Values
-
serverTaskParam
protected TaskParameterMetadata serverTaskParam
-
loginTaskParam
protected TaskParameterMetadata loginTaskParam
-
oldPasswordTaskParam
protected TaskParameterMetadata oldPasswordTaskParam
-
newPasswordTaskParam
protected TaskParameterMetadata newPasswordTaskParam
-
authModeTaskParam
protected TaskParameterMetadata authModeTaskParam
-
portTaskParam
protected TaskParameterMetadata portTaskParam
-
-
Method Detail
-
processRequest
public void processRequest(TaskRequestContext context, MarkupOutput markupOutput) throws TaskException
Description copied from class:AbstractBaseTask
The default implementation of this version of processRequest is empty. Task implementators may override either version of processRequest.- Specified by:
processRequest
in interfaceTask
- Overrides:
processRequest
in classAbstractBaseTask
- Parameters:
context
- TheTaskRequestContext
object that maintains the state of the request.markupOutput
- TheMarkupOutput
that records the contents of the Task response.- Throws:
TaskException
- If the Task was unable to satisfy the request.- See Also:
Task.processRequest(TaskRequestContext, MarkupOutput)
-
-