Class PortletRegistryReader
- java.lang.Object
-
- com.sun.portal.portletcontainer.admin.PortletRegistryReader
-
- Direct Known Subclasses:
PortletAppRegistryReader
,PortletWindowPreferenceRegistryReader
,PortletWindowRegistryReader
public abstract class PortletRegistryReader extends Object
PortletRegistryReader reads the specified registry xml file into a DOM Document. The registry xml files can be portlet-app-registry.xml portlet-window-registry.xml portlet-window-preference-registry.xml.
-
-
Constructor Summary
Constructors Constructor Description PortletRegistryReader(String registryLocation, String filename)
PortletRegistryReader(String registryLocation, String filename, String context)
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract PortletRegistryObject
create()
Creates specific Portlet Registry Object.PortletRegistryObject
readDocument()
Reads the specified registry xml file in to the appropriate Portlet Registry Object.
-
-
-
Method Detail
-
readDocument
public PortletRegistryObject readDocument() throws PortletRegistryException
Reads the specified registry xml file in to the appropriate Portlet Registry Object.- Returns:
- a
PortletRegistryObject
, that represents the registry xml file. - Throws:
PortletRegistryException
-
create
public abstract PortletRegistryObject create()
Creates specific Portlet Registry Object.- Returns:
- a specific
PortletRegistryObject
.
-
-