Package lumis.portal.page.webresource
Interface IPageWebResourceDataProvider
-
- All Known Implementing Classes:
AbstractPageWebResourceDataProvider
,ContentPageWebResourceDataProvider
,DefaultPageWebResourceDataProvider
@StableMinor(version="14.0", sinceVersion="5.0") public interface IPageWebResourceDataProvider
Interface called by the portal framework to obtain customizable data about a page web resource.- Since:
- 5.0.0
- Version:
- $Revision: 24477 $ $Date: 2021-04-28 11:30:36 -0300 (Wed, 28 Apr 2021) $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PageWebResourceData
getPageWebResourceData()
Returns the data about a page web resource.void
init(PageWebResource pageWebResource)
Initializes this page web resource data provider.
-
-
-
Method Detail
-
init
void init(PageWebResource pageWebResource) throws PortalException
Initializes this page web resource data provider.- Parameters:
pageWebResource
- the page web resource this provider will provide data for.- Throws:
PortalException
- Since:
- 5.0.0
-
getPageWebResourceData
PageWebResourceData getPageWebResourceData() throws PortalException
Returns the data about a page web resource. The title property of the data must not be null.- Returns:
- the page web resource data.
- Throws:
PortalException
- Since:
- 5.0.0
-
-