Package com.microstrategy.web.objects
Interface WebCommandManagerScript
-
- All Superinterfaces:
KeyedObject
,WebDisplayUnit
,WebFeatures
,WebObjectInfo
,WebPromptSite
public interface WebCommandManagerScript extends WebObjectInfo
The WebCommandManagerScript interface represents a command manager script object, which is a first-class object. The definition of the script,aside from the information inherited fromWebObjectInfo
, is simply an string script content with script typeEnumDSSXMLCommandManagerScriptTypes
- Since:
- MicroStrategy Web 11.2
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getScriptContent()
Returns the script contentjava.lang.String
getScriptRuntimeId()
Returns the script runtime idint
getScriptType()
Returns the script typeEnumDSSXMLCommandManagerScriptTypes
int
getScriptUsageType()
Returns the script usage typeEnumScriptUsageType
java.util.List<WebScriptVariable>
getVariables()
Get the script variablesvoid
setScriptContent(java.lang.String scriptContent)
Set or modify the script contentvoid
setScriptRuntimeId(java.lang.String scriptRuntimeID)
Set or modify the the script runtime idvoid
setScriptType(int scriptType)
Set or modify the script typevoid
setScriptUsageType(int iUsageType)
Set or modify the usage of the scriptvoid
setVariables(java.util.List<WebScriptVariable> scriptVariables)
Set the script variables-
Methods inherited from interface com.microstrategy.utils.KeyedObject
_getObKey
-
Methods inherited from interface com.microstrategy.web.objects.WebDisplayUnit
addDetails, applyVisitor, canHighlight, getChildUnits, getDisplayName, getDisplayUnitType, hasDetails, highlightUnit, highlightUnit, isHighlighted, isObjectInfo, isSelected, setDisplayName, setSelected
-
Methods inherited from interface com.microstrategy.web.objects.WebFeatures
isFeatureAvailable, isFeatureAvailable
-
Methods inherited from interface com.microstrategy.web.objects.WebObjectInfo
buildShortObjectAttributes, buildShortXML, getAbbreviation, getAccessGranted, getAncestors, getCardStatus, getCertifiedInfo, getComments, getContainerDid, getContainerType, getCreationTime, getCreationTimeStamp, getDataSources, getDefaultLanguage, getDescription, getExtendedType, getFactory, getFlags, getIconPath, getID, getModificationTime, getModificationTimeStamp, getName, getNonSchedulable, getOtherNameTransCount, getOwner, getParent, getPreSaveAsFlags, getProjectId, getProjectName, getPropertyFlags, getPropertySetFilter, getPropertySets, getRecommendationInfo, getSecurity, getState, getSubType, getTemplateInfo, getType, getVersionID, getViewMediaSettings, getVisualizationViewMode, getXML, getXML, hasOwner, isAncestorNamedFolder, isDirty, isEmbedded, isHidden, isNew, isPopulated, populate, populate, setAbbreviation, setComments, setDataSources, setDefaultLanguage, setDescription, setExtendedType, setFlags, setHidden, setIconPath, setName, setNonSchedulable, setPreSaveAsFlags, setPropertyFlags
-
Methods inherited from interface com.microstrategy.web.objects.WebPromptSite
getPromptInstances
-
-
-
-
Method Detail
-
getScriptContent
java.lang.String getScriptContent()
Returns the script content
-
getScriptType
int getScriptType()
Returns the script typeEnumDSSXMLCommandManagerScriptTypes
-
setScriptType
void setScriptType(int scriptType)
Set or modify the script type
-
setScriptContent
void setScriptContent(java.lang.String scriptContent)
Set or modify the script content
-
getScriptUsageType
int getScriptUsageType()
Returns the script usage typeEnumScriptUsageType
-
setScriptUsageType
void setScriptUsageType(int iUsageType)
Set or modify the usage of the script
-
getScriptRuntimeId
java.lang.String getScriptRuntimeId()
Returns the script runtime id
-
setScriptRuntimeId
void setScriptRuntimeId(java.lang.String scriptRuntimeID)
Set or modify the the script runtime id
-
setVariables
void setVariables(java.util.List<WebScriptVariable> scriptVariables)
Set the script variables
-
getVariables
java.util.List<WebScriptVariable> getVariables()
Get the script variables
-
-