Package lumis.service.webpage
Class WebPage
- java.lang.Object
-
- lumis.portal.serviceinterface.GenericServiceInterface
-
- lumis.service.webpage.WebPage
-
- All Implemented Interfaces:
IServiceInterface
public class WebPage extends GenericServiceInterface
- Since:
- 4.0.0
- Version:
- $Revision: 17606 $ $Date: 2015-07-24 10:56:40 -0300 (Fri, 24 Jul 2015) $
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
PARAM_SEND_COOKIES
static java.lang.String
PARAM_URL
static java.lang.String
PARAM_USE_IFRAME
static java.lang.String
PARAM_USE_SAME_SESSION
-
Constructor Summary
Constructors Constructor Description WebPage()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
render(IServiceInterfaceRenderRequest request, IServiceInterfaceRenderResponse response)
Called by the service interface container to allow the service interface to generate the content of the response based on its current state.-
Methods inherited from class lumis.portal.serviceinterface.GenericServiceInterface
calculateIsRequestInitializerSupported, instanceAdded, instanceDeleted, instanceLoaded, instanceUnLoaded, isRequestInitializerSupported, load, processAction, register, renderBefore, unload
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface lumis.portal.serviceinterface.IServiceInterface
initializeRequest
-
-
-
-
Field Detail
-
PARAM_URL
public static final java.lang.String PARAM_URL
- See Also:
- Constant Field Values
-
PARAM_SEND_COOKIES
public static final java.lang.String PARAM_SEND_COOKIES
- See Also:
- Constant Field Values
-
PARAM_USE_IFRAME
public static final java.lang.String PARAM_USE_IFRAME
- See Also:
- Constant Field Values
-
PARAM_USE_SAME_SESSION
public static final java.lang.String PARAM_USE_SAME_SESSION
- See Also:
- Constant Field Values
-
-
Method Detail
-
render
public void render(IServiceInterfaceRenderRequest request, IServiceInterfaceRenderResponse response) throws ServiceInterfaceException, PortalException
Description copied from interface:IServiceInterface
Called by the service interface container to allow the service interface to generate the content of the response based on its current state.- Specified by:
render
in interfaceIServiceInterface
- Overrides:
render
in classGenericServiceInterface
- Parameters:
request
- the render requestresponse
- the render response- Throws:
ServiceInterfaceException
- if the service interface has problems fulfilling the rendering requestPortalException
- if the service interface is unavailable to perform render at this time
-
-