Skip navigation links

Oracle® Fusion Middleware Site Studio for External Applications Java API Reference
11g Release 1 (11.1.1)

E17273-02


Uses of Class
oracle.stellent.wcm.server.content.spi.ContentID

Packages that use ContentID
oracle.stellent.wcm.server.content   
oracle.stellent.wcm.server.content.impl   
oracle.stellent.wcm.server.content.spi   
oracle.stellent.wcm.server.content.spi.fs   
oracle.stellent.wcm.server.request.logic.placeholder   
oracle.stellent.wcm.server.request.logic.url   

 

Uses of ContentID in oracle.stellent.wcm.server.content

 

Methods in oracle.stellent.wcm.server.content that return ContentID
 ContentID ProviderContent.getContentID()
           

 

Methods in oracle.stellent.wcm.server.content with parameters of type ContentID
 void ContentCache.clearContentObjects(ContentID contentID)
          Clear all objects under a given content ID
 boolean ContentCache.containsKey(ContentID contentID, java.lang.String name)
          Determine if the cache contains the given key
<T> T
ContentCache.getContentObject(ContentID contentID, ContentCache.Key<T> key)
          Retrieve an item from the cache that is of the type specified by the key
 java.lang.Object ContentCache.getContentObject(ContentID contentID, java.lang.String name)
          Retrieve an item from the cache
 ProviderContent ContentFactory.getStagedFile(ContentID contentID, SiteRequest siteRequest)
          Retrieve the path to the file in the JSP context
 ProviderContent ContentFactory.getStagedFile(ContentID contentID, SiteRequest siteRequest, java.lang.String cacheKey)
          Retrieve the path to the file in the JSP context.
<T> void
ContentCache.setContentObject(ContentID contentID, ContentCache.Key<T> key, T object)
          Associate the object with the given content ID and key name
 void ContentCache.setContentObject(ContentID contentID, java.lang.String name, java.lang.Object object)
          Associate the object with the given content ID and key

 

Constructors in oracle.stellent.wcm.server.content with parameters of type ContentID
ProviderContent(Provider provider, ContentID contentID, oracle.stellent.ridc.IdcContext idcContext)
           

 

Uses of ContentID in oracle.stellent.wcm.server.content.impl

 

Methods in oracle.stellent.wcm.server.content.impl with parameters of type ContentID
 void GlobalContentCache.clearContentObjects(ContentID contentID)
          Clear all objects under a given content ID
 void LocalContentCache.clearContentObjects(ContentID contentID)
          Clear all objects under a given content ID
 boolean GlobalContentCache.containsKey(ContentID contentID, java.lang.String name)
          Determine if the cache contains the given key
 boolean LocalContentCache.containsKey(ContentID contentID, java.lang.String name)
          Determine if the cache contains the given key
protected  GlobalContentCache.Item GlobalContentCache.getContentItem(ContentID contentID, boolean create)
           
<T> T
GlobalContentCache.getContentObject(ContentID contentID, ContentCache.Key<T> key)
          Retrieve an item from the cache that is of the type specified by the key
<T> T
LocalContentCache.getContentObject(ContentID contentID, ContentCache.Key<T> key)
          Retrieve an item from the cache that is of the type specified by the key
 java.lang.Object GlobalContentCache.getContentObject(ContentID contentID, java.lang.String name)
          Retrieve an item from the cache
 java.lang.Object LocalContentCache.getContentObject(ContentID contentID, java.lang.String name)
          Retrieve an item from the cache
protected  java.util.Map<java.lang.String,java.lang.Object> LocalContentCache.getItemMap(ContentID key, boolean create)
           
 boolean GlobalContentCache.CacheCallback.isValid(ContentCache cache, ContentID contentID, java.util.Map<java.lang.String,java.lang.Object> contentItems)
          Determine if this contentID is valid
<T> void
GlobalContentCache.setContentObject(ContentID contentID, ContentCache.Key<T> key, T object)
          Associate the object with the given content ID and key name
<T> void
LocalContentCache.setContentObject(ContentID contentID, ContentCache.Key<T> key, T object)
          Associate the object with the given content ID and key name
 void GlobalContentCache.setContentObject(ContentID contentID, java.lang.String name, java.lang.Object object)
          Associate the object with the given content ID and key
 void LocalContentCache.setContentObject(ContentID contentID, java.lang.String name, java.lang.Object object)
          Associate the object with the given content ID and key

 

Uses of ContentID in oracle.stellent.wcm.server.content.spi

 

Methods in oracle.stellent.wcm.server.content.spi that return ContentID
 ContentID ContentURI.getContentID()
           

 

Methods in oracle.stellent.wcm.server.content.spi that return types with arguments of type ContentID
 java.util.Set<ContentID> CacheSyncInfo.getModifiedContentIDs()
           

 

Methods in oracle.stellent.wcm.server.content.spi with parameters of type ContentID
 void ContentAdapter.flushContent(ContentID contentID)
          Flush any local cache or content related to the given content ID
 ContentURI ContentAdapter.getContentUri(ContentID contentID, oracle.stellent.ridc.model.DataBinder metaBinder)
          Retrieve the ContentURI for this content object, based on the given metadata.
 ContentURI ContentAdapter.getDataFileUri(ContentID contentID, oracle.stellent.ridc.model.DataBinder metaBinder, ContentAdapter.DataFileParams params)
          Retrieve the ContentURI for this data file content object, based on the given metadata and params.
 ContentURI ContentAdapter.getRenditionUri(ContentID contentID, oracle.stellent.ridc.model.DataBinder metaBinder, ContentAdapter.RenditionParams params)
          Retrieve the ContentURI for a given rendition.
 oracle.stellent.ridc.model.DataBinder ContentAdapter.loadMetadata(ContentID contentID)
          Load metadata from the provider for the given content ID.

 

Constructors in oracle.stellent.wcm.server.content.spi with parameters of type ContentID
ContentURI(java.lang.String webPath, java.lang.String cachedPath, java.util.Map<java.lang.String,java.lang.String> serverQuery, ContentID contentID, oracle.stellent.ridc.model.DataBinder metadata)
          This constructor is for managed contents.

 

Uses of ContentID in oracle.stellent.wcm.server.content.spi.fs

 

Methods in oracle.stellent.wcm.server.content.spi.fs with parameters of type ContentID
 void FSContentAdapter.flushContent(ContentID contentID)
          Flush any local cache or content related to the given content ID.
 ContentURI FSContentAdapter.getContentUri(ContentID contentID, oracle.stellent.ridc.model.DataBinder metaBinder)
          Retrieve the URI for this content object, based on the given metadata.
 ContentURI FSContentAdapter.getDataFileUri(ContentID contentID, oracle.stellent.ridc.model.DataBinder metaBinder, ContentAdapter.DataFileParams params)
          Retrieve the ContentURI for this data file content object, based on the given metadata and params.
 ContentURI FSContentAdapter.getRenditionUri(ContentID contentID, oracle.stellent.ridc.model.DataBinder metaBinder, ContentAdapter.RenditionParams params)
          Retrieve the ContentURI for a given rendition.
 oracle.stellent.ridc.model.DataBinder FSContentAdapter.loadMetadata(ContentID contentID)
          Load metadata from the provider for the given content ID.

 

Uses of ContentID in oracle.stellent.wcm.server.request.logic.placeholder

 

Methods in oracle.stellent.wcm.server.request.logic.placeholder with parameters of type ContentID
 ProviderContent PlaceholderLogic.loadDataFile(PlaceholderRequest placeholderRequest, ContentID contentID)
          Load the data file

 

Uses of ContentID in oracle.stellent.wcm.server.request.logic.url

 

Methods in oracle.stellent.wcm.server.request.logic.url with parameters of type ContentID
protected  UrlLogic.PageTemplateMapping UrlLogic.getPageTemplateForDataFile(UrlRequest urlRequest, SectionNode section, ContentID contentID)
          Determine which page template to use to display the given content ID

 


Skip navigation links

Oracle® Fusion Middleware Site Studio for External Applications Java API Reference
11g Release 1 (11.1.1)

E17273-02


Copyright © 2010, 2011, Oracle and/or its affiliates. All rights reserved.