org.apache.pluto.driver.services.portal
Interface RenderConfigService

All Superinterfaces:
DriverConfigurationService
All Known Implementing Classes:
RenderConfigServiceImpl

public interface RenderConfigService
extends DriverConfigurationService

Service interface defining methods necessary for a provider wishing to manage page administration.

Since:
Aug 10, 2005

Method Summary
 void addPage(PageConfig pageConfig)
           
 PageConfig getDefaultPage()
          Retrieve the PageConfig for the default page.
 PageConfig getPage(java.lang.String id)
          Retrieve the PageConfig for the given page id.
 java.util.List getPages()
          Retrieve an ordered list of all PageConfig instances.
 void removePage(PageConfig pageConfig)
           
 
Methods inherited from interface org.apache.pluto.driver.services.portal.DriverConfigurationService
destroy, init
 

Method Detail

getPages

java.util.List getPages()
Retrieve an ordered list of all PageConfig instances.

Returns:
list of all PageConfig instances.

getDefaultPage

PageConfig getDefaultPage()
Retrieve the PageConfig for the default page.

Returns:
PageConfig instance of the default page.

getPage

PageConfig getPage(java.lang.String id)
Retrieve the PageConfig for the given page id.

Parameters:
id -
Returns:
PageConfig instance for the specified id.

addPage

void addPage(PageConfig pageConfig)

removePage

void removePage(PageConfig pageConfig)


Copyright © 2003-2009 Apache Software Foundation. All Rights Reserved.