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 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
public WebIServerSession getWebIServerSession()
Returns theWebIServerSessionobject.- Specified by:
getWebIServerSessionin interfaceStyleRequestContext- Returns:
- the WebIServerSession object.
-
setWebIServerSession
public void setWebIServerSession(WebIServerSession session)
Sets aWebIServerSessionobject.- Specified by:
setWebIServerSessionin interfaceStyleRequestContext- Parameters:
session- A WebIServerSession object.
-
getWebComponent
public WebComponent getWebComponent()
Description copied from interface:StyleRequestContextReturns theWebComponentwhich is associated with this request.- Specified by:
getWebComponentin interfaceStyleRequestContext- Returns:
- The
WebComponentassociated with this request. - Since:
- MicroStrategy Web 9.0.0
-
setWebComponent
public void setWebComponent(WebComponent webComponent)
Description copied from interface:StyleRequestContextSets theWebComponentwhich is associated with this request.- Specified by:
setWebComponentin interfaceStyleRequestContext- Parameters:
webComponent- TheWebComponentassociated with this request.- Since:
- MicroStrategy Web 9.0.0
-
-