Package com.microstrategy.web.app.tasks
Class ImportSaveRWDTask
- java.lang.Object
 - 
- com.microstrategy.web.tasks.AbstractBaseTask
 - 
- com.microstrategy.web.app.tasks.AbstractAppTask
 - 
- com.microstrategy.web.app.tasks.ImportSaveRWDTask
 
 
 
 
- 
- All Implemented Interfaces:
 Task
- Direct Known Subclasses:
 ImportAsyncSaveRWDTask
public class ImportSaveRWDTask extends AbstractAppTask
 
- 
- 
Nested Class Summary
Nested Classes Modifier and Type Class Description protected classImportSaveRWDTask.ImportDashboardResultHandler 
- 
Field Summary
Fields Modifier and Type Field Description protected TaskParameterMetadatafolderIDParamprotected TaskParameterMetadatajsonpParamprotected static java.lang.StringPARAM_NAME_FOLDER_IDprotected TaskParameterMetadatataskEnvelopeParam- 
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 ImportSaveRWDTask() 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected voidcheckForRequiredParameters(RequestKeys requestKeys)Checks whether all required parameters are present or not.protected java.lang.StringgetCustomizedErrorMessage(AppTaskRequestContext context, java.lang.String originMsg, int errorCode)protected java.lang.StringgetFolderID(RequestKeys requestKeys, WebObjectsFactory factory)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.protected PostedFileretrieveUploadedFile(TaskRequestContext context, RequestKeys requestKeys)protected booleansupportsJSONP()- 
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, destroy, getCompressOutput, getID, getMetadata, getPrivileges, getSysDefaultPreferenceValue, init, processRequest, retrieveUploadedFile, setCompressOutput, setDescription, setID, setMetadata, setPrivileges, validateContentType 
 - 
 
 - 
 
- 
- 
Field Detail
- 
PARAM_NAME_FOLDER_ID
protected static final java.lang.String PARAM_NAME_FOLDER_ID
- See Also:
 - Constant Field Values
 
 
- 
folderIDParam
protected TaskParameterMetadata folderIDParam
 
- 
jsonpParam
protected TaskParameterMetadata jsonpParam
 
- 
taskEnvelopeParam
protected TaskParameterMetadata taskEnvelopeParam
 
 - 
 
- 
Method Detail
- 
supportsJSONP
protected boolean supportsJSONP()
 
- 
checkForRequiredParameters
protected void checkForRequiredParameters(RequestKeys requestKeys) throws TaskRequestMalformedException
Description copied from class:AbstractBaseTaskChecks whether all required parameters are present or not.- Overrides:
 checkForRequiredParametersin classAbstractBaseTask- Parameters:
 requestKeys- TheRequestKeysobject that contains all parameters.- Throws:
 TaskRequestMalformedException- If some required parameters are missing.
 
- 
getFolderID
protected java.lang.String getFolderID(RequestKeys requestKeys, WebObjectsFactory factory) throws WebObjectsException
- Throws:
 WebObjectsException
 
- 
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)
 
- 
getCustomizedErrorMessage
protected java.lang.String getCustomizedErrorMessage(AppTaskRequestContext context, java.lang.String originMsg, int errorCode)
 
- 
retrieveUploadedFile
protected PostedFile retrieveUploadedFile(TaskRequestContext context, RequestKeys requestKeys) throws TaskException
- Throws:
 TaskException
 
 - 
 
 -