Package com.microstrategy.web.app.beans
Interface DirectExportBean
-
- All Superinterfaces:
AppComponent
,Transformable
,WebComponent
public interface DirectExportBean extends AppComponent
- Since:
- MicroStrategy Web 7.3.1 or earlier
-
-
Field Summary
-
Fields inherited from interface com.microstrategy.web.app.beans.AppComponent
COMPONENT_POSITION_NOT_INITIALIZED
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
getDirectExport()
Returns if the export bean was called by a Direct Export link (new page enforced)boolean
getSkipOutput()
Get if this bean shall not generate any output - if it is only used for processing other informationvoid
setDirectExport(boolean value)
Sets if the export bean was called by a Direct Export link (new page enforced)void
setSkipOutput(boolean value)
Sets if this bean shall not generate any output - if it is only used for processing other information-
Methods inherited from interface com.microstrategy.web.app.beans.AppComponent
getAppContext, getDescriptor, getDescriptor, getEventManager, getExtraInput, getExtraUrl, getLeft, getResultFilterMode, getTop, isDialog, isForcedChildrenStateSaving, isModal, isModalOpen, isOpen, setExtraInput, setExtraUrl, setForcedChildrenStateSaving, setHasJustOpened, setIsDialog, setIsModal, setIsOpen, setLeft, setTop
-
Methods inherited from interface com.microstrategy.web.beans.Transformable
addTransform, addTransformByClass, addTransformByStyle, addTransformByStyle, clearTransforms, getBeanContext, getMessageString, getMyTransformInstances, getTransformInstance, getTransformInstance, getTransformInstances, getType, hasTransform, hasTransform, invalidateTransformCache, setBeanContext, transform, transform
-
Methods inherited from interface com.microstrategy.web.beans.WebComponent
addChild, addChildStateInfo, addChildStateInfo, collectData, collectMinimalData, generateOutput, getBeanContext, getChild, getChild, getChildByClass, getChildByType, getChildCount, getChildrenByClass, getDefaultStateLevel, getFeaturesManager, getMaximumStateLevel, getName, getOutputFormat, getParent, getPath, getPersistMode, getRenderingFilter, getRoot, getTargetBean, getTargetBeanPath, getWebEvent, getWebEvent, getWebEventHandler, getXMLStatus, handleRequest, hasChanged, hasJustOpened, initBean, invalidateChildrenState, isBeanContextEmpty, isFeatureAvailable, prepareForReuse, removeChild, removeChild, searchChild, setBeanContext, setBeanContext, setChanged, setChanged, setDefaultStateLevel, setFeaturesManager, setName, setOutputFormat, setParent, setPersistMode, setRenderingFilter, setTargetBean, setTargetBeanPath, setWebEventHandler
-
-
-
-
Method Detail
-
getDirectExport
boolean getDirectExport()
Returns if the export bean was called by a Direct Export link (new page enforced)- Returns:
- a
boolean
value indicating if the request comes from a Direct Export link
-
setDirectExport
void setDirectExport(boolean value)
Sets if the export bean was called by a Direct Export link (new page enforced)- Parameters:
value
- aboolean
value indicating if the request comes from a Direct Export link
-
getSkipOutput
boolean getSkipOutput()
Get if this bean shall not generate any output - if it is only used for processing other information- Returns:
boolean
value indicating if the output of this bean should be rendered to the user or not.
-
setSkipOutput
void setSkipOutput(boolean value)
Sets if this bean shall not generate any output - if it is only used for processing other information- Parameters:
value
-boolean
value indicating if the output of this bean should be rendered to the user or not.
-
-