Package com.microstrategy.web.transform
Interface StyleRequestContext
-
- All Known Implementing Classes:
DefaultStyleRequestContext
public interface StyleRequestContext
TheStyleRequestContext
provides the context information for resolving the more dynamic nature of the Style Catalog. This includes the ability forActualParameter
nodes to have dynamic values as well as enable mapping style names based on dynamic conditions.- Since:
- MicroStrategy Web 8.0.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description WebComponent
getWebComponent()
Returns theWebComponent
which is associated with this request.WebIServerSession
getWebIServerSession()
Returns theWebIServerSession
object.void
setWebComponent(WebComponent webComponent)
Sets theWebComponent
which is associated with this request.void
setWebIServerSession(WebIServerSession session)
Sets aWebIServerSession
object.
-
-
-
Method Detail
-
getWebIServerSession
WebIServerSession getWebIServerSession()
Returns theWebIServerSession
object.- Returns:
- the WebIServerSession object.
-
setWebIServerSession
void setWebIServerSession(WebIServerSession session)
Sets aWebIServerSession
object.- Parameters:
session
- A WebIServerSession object.
-
getWebComponent
WebComponent getWebComponent()
Returns theWebComponent
which is associated with this request.- Returns:
- The
WebComponent
associated with this request. - Since:
- MicroStrategy Web 9.0.0
-
setWebComponent
void setWebComponent(WebComponent webComponent)
Sets theWebComponent
which is associated with this request.- Parameters:
webComponent
- TheWebComponent
associated with this request.- Since:
- MicroStrategy Web 9.0.0
-
-