public interface SitemapManager
The following code snippet depicts how one can get hold of SitemapManager:
SitemapManagerFactory factory =
FactoryFinder.getFactory(SitemapManagerFactory.class.getCanonicalName());
SitemapManager manager = factory.getSitemapManager();
Modifier and Type | Method and Description |
---|---|
void |
deleteSitemap(java.lang.String spaceName)
Deletes the sitemap information for the space in the sitemap index.
|
void |
generateSitemap()
Generates the Sitemap for public spaces.
|
oracle.webcenter.spaces.sitemap.beans.space.SpaceSitemap |
generateSitemap(java.lang.String spaceName)
Generates the Sitemap for the specified space.
|
oracle.webcenter.spaces.sitemap.beans.Sitemap |
getSitemap()
Returns the sitemap index.
|
oracle.webcenter.spaces.sitemap.beans.space.SpaceSitemap |
getSitemap(java.lang.String spaceName)
Returns the sitemap for a space.
|
org.w3c.dom.Document |
getSitemapDocument()
Returns the sitemap index document.
|
org.w3c.dom.Document |
getSitemapDocument(java.lang.String spaceName)
Returns the sitemap document for a space.
|
void |
updateSitemap(java.lang.String spaceName)
Updates the sitemap information for the space in the sitemap index.
|
oracle.webcenter.spaces.sitemap.beans.Sitemap getSitemap() throws SitemapException
SitemapException
org.w3c.dom.Document getSitemapDocument() throws SitemapException
SitemapException
oracle.webcenter.spaces.sitemap.beans.space.SpaceSitemap getSitemap(java.lang.String spaceName) throws SitemapException
spaceName
- the name of the spaceSitemapException
org.w3c.dom.Document getSitemapDocument(java.lang.String spaceName) throws SitemapException
spaceName
- the name of the spaceSitemapException
void updateSitemap(java.lang.String spaceName) throws SitemapException
spaceName
- the name of the spaceSitemapException
void deleteSitemap(java.lang.String spaceName) throws SitemapException
spaceName
- the name of the spaceSitemapException
void generateSitemap() throws SitemapException
SitemapException
oracle.webcenter.spaces.sitemap.beans.space.SpaceSitemap generateSitemap(java.lang.String spaceName) throws SitemapException
spaceName
- the name of the spaceSitemapException