Package com.microstrategy.web.transform
Interface StyleRequestContext
-
- All Known Implementing Classes:
DefaultStyleRequestContext
public interface StyleRequestContextTheStyleRequestContextprovides the context information for resolving the more dynamic nature of the Style Catalog. This includes the ability forActualParameternodes 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 WebComponentgetWebComponent()Returns theWebComponentwhich is associated with this request.WebIServerSessiongetWebIServerSession()Returns theWebIServerSessionobject.voidsetWebComponent(WebComponent webComponent)Sets theWebComponentwhich is associated with this request.voidsetWebIServerSession(WebIServerSession session)Sets aWebIServerSessionobject.
-
-
-
Method Detail
-
getWebIServerSession
WebIServerSession getWebIServerSession()
Returns theWebIServerSessionobject.- Returns:
- the WebIServerSession object.
-
setWebIServerSession
void setWebIServerSession(WebIServerSession session)
Sets aWebIServerSessionobject.- Parameters:
session- A WebIServerSession object.
-
getWebComponent
WebComponent getWebComponent()
Returns theWebComponentwhich is associated with this request.- Returns:
- The
WebComponentassociated with this request. - Since:
- MicroStrategy Web 9.0.0
-
setWebComponent
void setWebComponent(WebComponent webComponent)
Sets theWebComponentwhich is associated with this request.- Parameters:
webComponent- TheWebComponentassociated with this request.- Since:
- MicroStrategy Web 9.0.0
-
-