{ } }
Tree PREV CLASS NEXT CLASS FRAMES NO FRAMES SUMMARY: NESTED | FIELD | CONSTR | METHOD DETAIL: FIELD | CONSTR | METHOD com.ibm.workplace.wcm.api
Interface Content
- All Superinterfaces:
- ContentComponentContainer, Document, Editable, EditableItem, Hierarchical, Item, Localized, Placeable, TemplatedDocument, WCMApiObject, WorkflowedDocument
public interface Content- extends ContentComponentContainer, TemplatedDocument, Placeable, Hierarchical
A Content object represents a Content item in the WCM repository. Each Content object is based on an AuthoringTemplate, which defines its base properties and attributes (such as Workflow, security etc.)
Content objects can be created and saved through the API, and existing ones can be retrieved to be edited and saved.
Content objects can contain components that are defined in the AuthoringTemplate which do not exist in the component library (ie. they exist only on the Content item itself). These components are referred to as 'content components'. New content components cannot be added to a Content object through the API - only ones that are defined on the template may be manipulated. The Content interface also provides methods to access the item's workflow properties. This includes moving the item to the next stage in the workflow, creating a draft, checking its published/expired status etc.
Method Summary Content cancelDraft()
Deprecated. use cancelDraftDocument() instead.Content createDraft()
Deprecated. use createDraftDocument() instead.DocumentId getDirectParent()
Deprecated. Since 8.0, use Hierarchical.getParentId()DocumentIdIterator getLinkedParents()
Return an iterator of parent DocumentIds this content is linked to.DocumentIdIterator getParents()
Return an iterator of the parent DocumentIds of this content.
Methods inherited from interface com.ibm.workplace.wcm.api.ContentComponentContainer addCategoryIds, addComponent, componentIterator, createComponent, getCategoryIds, getCombinedCategoryIds, getComponent, getComponentByReference, getComponentNames, getKeywords, hasComponent, removeCategoryIds, removeComponent, setComponent, setKeywords
Methods inherited from interface com.ibm.workplace.wcm.api.Item getCreationDate, getDescription, getIdentity, getModifiedDate, getName, getTitle
Methods inherited from interface com.ibm.portal.Localized getLocales
Methods inherited from interface com.ibm.workplace.wcm.api.EditableItem setDescription, setName, setTitle
Methods inherited from interface com.ibm.workplace.wcm.api.TemplatedDocument getAuthoringTemplateID, setAuthoringTemplateID
Methods inherited from interface com.ibm.workplace.wcm.api.Placeable getValidSiblingTypes
Methods inherited from interface com.ibm.workplace.wcm.api.Hierarchical getParentId
Method Detail getParents
DocumentIdIterator getParents()
- Return an iterator of the parent DocumentIds of this content. The parent of a content is the site area it belongs to. If this content is linked to additional site areas, the links are listed after the direct parent.
This method will only return DocumentIds of parents the user has access to.
- Returns:
- an iterator of the parent DocumentId of this content
getDirectParent
DocumentId getDirectParent()
- Deprecated. Since 8.0, use Hierarchical.getParentId()
- Return the parent DocumentId of this content. The parent of a content is the site area it belongs to.
- Returns:
- the ID of the parent SiteArea of this content
getLinkedParents
DocumentIdIterator getLinkedParents() throws DocumentRetrievalException
- Return an iterator of parent DocumentIds this content is linked to.
- Returns:
- an iterator of the parent DocumentId this content is linked to.
- Throws:
- DocumentRetrievalException - if there was a problem retrieving the linked parents.
createDraft
Content createDraft() throws AuthorizationException, WorkflowException
- Deprecated. use createDraftDocument() instead.
- Create draft copy of this content object.
NOTE: Creating a draft saves the original, so any changes already made to the original before a draft is created will be seen in both documents.
NOTE: You do not need to save the new draft after it is created, unless you have made changes to the draft document after creating the draft.
- Returns:
- the draft content copy
- Throws:
- AuthorizationException - if the user does not have the appropriate access permission
- WorkflowException - if this content is not workflowable or an error occurred while creating the draft
cancelDraft
Content cancelDraft() throws AuthorizationException, WorkflowException
- Deprecated. use cancelDraftDocument() instead.
- Cancels a draft document, if it exists.
NOTE: This method may be performed on either the draft or the published content.
- Returns:
- The associated published document. If there is no draft to cancel, this will return null.
- Throws:
- AuthorizationException - if the user does not have the appropriate access permission
- WorkflowException - if this content is not workflowable or an error occurred while cancelling the draft
Tree PREV CLASS NEXT CLASS FRAMES NO FRAMES SUMMARY: NESTED | FIELD | CONSTR | METHOD DETAIL: FIELD | CONSTR | METHOD