java.lang.Object | |||||
↳ | com.microstrategy.web.tasks.AbstractBaseTask | ||||
↳ | com.microstrategy.web.app.tasks.AbstractAppTask | ||||
↳ | com.microstrategy.web.app.tasks.WebComponentTask | ||||
↳ | com.microstrategy.web.app.tasks.BeanTask | ||||
↳ | com.microstrategy.web.app.tasks.GetRWGraphImageTask |
This Task retrieves the binary image data for a graph node in a Report Writing document.
[Expand]
Inherited Constants | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() | |||||||||||
![]() |
[Expand]
Inherited Fields | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() | |||||||||||
![]() |
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
GetRWGraphImageTask() |
Protected Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
void |
checkForRequiredParameters(RequestKeys requestKeys)
Checks whether all required parameters are present or not.
| ||||||||||
void |
collectData(BeanTaskRequestContext btrContext)
This method calls the 'collectData' method on the WebBean
instance.
| ||||||||||
WebGraph | getWebGraph(BeanTaskRequestContext btrContext) | ||||||||||
void |
handleEvent(BeanTaskRequestContext btrContext)
This method instructs the WebBean to handle the event.
| ||||||||||
void |
registerParameterMetadata(TaskParameterMetadata parameterMetadata)
Registers a specific Task parameter metadata.
| ||||||||||
void |
serializeResult(BeanTaskRequestContext btrContext, TaskOutput taskOutput)
This method attempts to serialize the results to the supplied
TaskOutput object.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() | |||||||||||
![]() | |||||||||||
![]() | |||||||||||
![]() | |||||||||||
![]() | |||||||||||
![]() |
Checks whether all required parameters are present or not.
requestKeys | The RequestKeys object that contains all
parameters. |
---|
This method calls the 'collectData' method on the WebBean
instance. This method is called by processRequest(TaskRequestContext, TaskOutput)
.
btrContext | The BeanTaskRequestContext object. |
---|
TaskException |
---|
This method instructs the WebBean to handle the event. It is
called from processRequest(TaskRequestContext, TaskOutput)
.
btrContext | The BeanTaskRequestContext that contains the WebBean instance. |
---|
TaskException |
---|
Registers a specific Task parameter metadata. This method is
called by registerTaskMetadata(TaskMetadata)
. It is helpful to
override in a Task so that a specific TaskParameterMetadata may be
saved for later use.
parameterMetadata | The TaskParameterMetadata object being saved. |
---|
This method attempts to serialize the results to the supplied
TaskOutput object. This method is called by processRequest(TaskRequestContext, TaskOutput)
and in turn does the
following:
addTransform(BeanTaskRequestContext)
)overrideActualParameters(BeanTaskRequestContext, TransformInstance)
)transformBean(BeanTaskRequestContext, TaskOutput)
)btrContext | The BeanTaskRequestContext object. |
---|---|
taskOutput | The TaskOutput object to populate. |
TaskException |
---|