Package com.microstrategy.web.app.tasks
Class GetMapBoxPolygonIDTask
- java.lang.Object
-
- com.microstrategy.web.tasks.AbstractBaseTask
-
- com.microstrategy.web.app.tasks.AbstractAppTask
-
- com.microstrategy.web.app.tasks.GetMapBoxPolygonIDTask
-
- All Implemented Interfaces:
Task
public class GetMapBoxPolygonIDTask extends AbstractAppTask
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description class
GetMapBoxPolygonIDTask.ParamsConfig
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
PARAM_parentKey
static java.lang.String
PARAM_queryField
static java.lang.String
PARAM_secondShapeId
static java.lang.String
PARAM_shapeId
static java.lang.String
PARAM_worldView
-
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 GetMapBoxPolygonIDTask()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
generateQueryInfo(java.lang.String queryStr, GetMapBoxPolygonIDTask.ParamsConfig paramsConfig)
Generate query field infojava.lang.StringBuffer
getDataStrJSON(java.lang.String shapePath, java.lang.String geoRole, GetMapBoxPolygonIDTask.ParamsConfig paramsConfig)
java.lang.String[]
getMatchKeysByShapeKey(java.lang.String shapeKey)
Get the match keys by configured shape key (',' separated), If the shape key is null, we will use "name" as the default match key.com.google.gson.JsonObject
getRootObjectByPath(java.lang.String path)
Get the root object of the lookup table json file.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_shapeId
public static final java.lang.String PARAM_shapeId
- See Also:
- Constant Field Values
-
PARAM_queryField
public static final java.lang.String PARAM_queryField
- See Also:
- Constant Field Values
-
PARAM_parentKey
public static final java.lang.String PARAM_parentKey
- See Also:
- Constant Field Values
-
PARAM_secondShapeId
public static final java.lang.String PARAM_secondShapeId
- See Also:
- Constant Field Values
-
PARAM_worldView
public static final java.lang.String PARAM_worldView
- See Also:
- Constant Field Values
-
-
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)
-
getMatchKeysByShapeKey
public java.lang.String[] getMatchKeysByShapeKey(java.lang.String shapeKey)
Get the match keys by configured shape key (',' separated), If the shape key is null, we will use "name" as the default match key.- Parameters:
shapeKey
-- Returns:
- String[]
-
getDataStrJSON
public java.lang.StringBuffer getDataStrJSON(java.lang.String shapePath, java.lang.String geoRole, GetMapBoxPolygonIDTask.ParamsConfig paramsConfig) throws TaskException
- Throws:
TaskException
-
getRootObjectByPath
public com.google.gson.JsonObject getRootObjectByPath(java.lang.String path) throws TaskException
Get the root object of the lookup table json file. TODO Use cache to improve the performance.- Throws:
TaskException
-
generateQueryInfo
public void generateQueryInfo(java.lang.String queryStr, GetMapBoxPolygonIDTask.ParamsConfig paramsConfig) throws TaskException
Generate query field info- Parameters:
queryStr
- {String} query string from clientparamsConfig
- {ParamsConfig}- Throws:
TaskException
-
-