| |
|
| org.apache.jetspeed.om.page.ContentPage
All known Subclasses: org.apache.jetspeed.om.page.ContentPageImpl,
ContentPage | public interface ContentPage extends Page(Code) | | PageFragment is a volatile wrapper around a
org.apache.jetspeed.om.page.Page metadata
object for use in rendering. As with
the
org.apache.jetspeed.om.page.Fragment object,
Page objects are persistent, single-instance
metadata objects that should not be used to hold per-request
content. ContentPage solves this by providing a thin, wrapper
interface that can be used for rendering requested content associated
with the wrapped page relative to the currect user-request.
author: weaver@apache.org |
getContentFragmentById | ContentFragment getContentFragmentById(String id)(Code) | | Returns a ContentFragment that wraps the actual
Fragment metadata represented by the id argument.
Parameters: id - unique id of the Fragment we want to retrieve. |
getContentFragmentsByName | List getContentFragmentsByName(String name)(Code) | | Returns a list of ContentFragment that wrap the actual
Fragment metadata represented by the name argument.
Parameters: name - name of the Fragments we want to retrieve. |
getFragmentById | Fragment getFragmentById(String id)(Code) | | Overridden to to indicate that the
Fragment returned
must also be an instance of ContentFragment.
Parameters: id - the fragment id to look for the found ContentFragment object or null if not found |
getFragmentsByName | List getFragmentsByName(String name)(Code) | | Overridden to to indicate that the list of
Fragment instances returned must also be instances of ContentFragment.
Parameters: name - the fragments name to look for the list of found ContentFragment object or null if not found |
getRootContentFragment | ContentFragment getRootContentFragment()(Code) | | Provides access to a per-request safe ContentFragment.
ContentFragments add the additional ability to temporarily
store rendered content of the current request along with
original, persistent metadata of the Fragment itself.
ContentFragment wrapping the actual root Fragment. |
getRootFragment | Fragment getRootFragment()(Code) | | Overridden to to indicate that the
Fragment returned
must also be an instance of ContentFragment.
the base Fragment object for this page. |
|
|
|