Package com.microstrategy.web.objects
Interface WebReportExecutionSettings
-
public interface WebReportExecutionSettings
- Since:
- MicroStrategy Web 8.0.2
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getExecutionMode()
java.lang.String
getReportID()
java.lang.String
getSourceID()
int
getSourceType()
void
setExecutionMode(int mode)
Sets the execution modevoid
setReportID(java.lang.String reportID)
// * Sets the report DSSIDvoid
setSource(java.lang.String id, int type)
Sets the source
-
-
-
Method Detail
-
setReportID
void setReportID(java.lang.String reportID)
// * Sets the report DSSID- Parameters:
reportID
- the report DSSID
-
getReportID
java.lang.String getReportID()
- Returns:
- the report DSSID
-
setSource
void setSource(java.lang.String id, int type)
Sets the source- Parameters:
id
- the DSSID of the sourcetype
- the type. A value fromEnumWebReportSourceType
-
getSourceID
java.lang.String getSourceID()
- Returns:
- the source report DSSID
-
getSourceType
int getSourceType()
- Returns:
- the source type. A value from
EnumWebReportSourceType
-
setExecutionMode
void setExecutionMode(int mode)
Sets the execution mode- Parameters:
mode
- the execution mode. A value fromEnumExecutionMode
-
getExecutionMode
int getExecutionMode()
- Returns:
- the execution mode. A value from
EnumExecutionMode
-
-