Package com.microstrategy.web.transform
Class DefaultStyleRequestContext
- java.lang.Object
-
- com.microstrategy.web.transform.DefaultStyleRequestContext
-
- All Implemented Interfaces:
StyleRequestContext
public class DefaultStyleRequestContext extends java.lang.Object implements StyleRequestContext
Theclass provides the default implementation of StyleRequestContext
.- Since:
- MicroStrategy Web 8.0.0
-
-
Constructor Summary
Constructors Constructor Description DefaultStyleRequestContext()
-
Method Summary
All Methods Instance Methods Concrete 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
public WebIServerSession getWebIServerSession()
Returns theWebIServerSession
object.- Specified by:
getWebIServerSession
in interfaceStyleRequestContext
- Returns:
- the WebIServerSession object.
-
setWebIServerSession
public void setWebIServerSession(WebIServerSession session)
Sets aWebIServerSession
object.- Specified by:
setWebIServerSession
in interfaceStyleRequestContext
- Parameters:
session
- A WebIServerSession object.
-
getWebComponent
public WebComponent getWebComponent()
Description copied from interface:StyleRequestContext
Returns theWebComponent
which is associated with this request.- Specified by:
getWebComponent
in interfaceStyleRequestContext
- Returns:
- The
WebComponent
associated with this request. - Since:
- MicroStrategy Web 9.0.0
-
setWebComponent
public void setWebComponent(WebComponent webComponent)
Description copied from interface:StyleRequestContext
Sets theWebComponent
which is associated with this request.- Specified by:
setWebComponent
in interfaceStyleRequestContext
- Parameters:
webComponent
- TheWebComponent
associated with this request.- Since:
- MicroStrategy Web 9.0.0
-
-