Package lumis.service.pageblockviewer
Class PageBlockViewInterface
- java.lang.Object
-
- lumis.portal.serviceinterface.GenericServiceInterface
-
- lumis.service.pageblockviewer.PageBlockViewInterface
-
- All Implemented Interfaces:
IServiceInterface
public class PageBlockViewInterface extends GenericServiceInterface
Interface that renders a page block. When you include this interface, you should configure the page block and rendering type for it to render information.- Since:
- 10.0.0
- Version:
- $Revision: 21983 $ $Date: 2018-10-09 18:26:08 -0300 (Tue, 09 Oct 2018) $
-
-
Field Summary
Fields Modifier and Type Field Description static String
PAGE_BLOCK_VIEWER_PAGE_BLOCK_ID_PROPERTY
static String
PAGE_BLOCK_VIEWER_RENDERAS_PROPERTY
-
Constructor Summary
Constructors Constructor Description PageBlockViewInterface()
-
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
instanceAdded, instanceDeleted, instanceLoaded, instanceUnLoaded, load, processAction, register, renderBefore, unload
-
-
-
-
Field Detail
-
PAGE_BLOCK_VIEWER_RENDERAS_PROPERTY
public static final String PAGE_BLOCK_VIEWER_RENDERAS_PROPERTY
- See Also:
- Constant Field Values
-
PAGE_BLOCK_VIEWER_PAGE_BLOCK_ID_PROPERTY
public static final String PAGE_BLOCK_VIEWER_PAGE_BLOCK_ID_PROPERTY
- 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
-
-