Oracle® WebCenter Interaction Development Kit 10.3.3.0.0

Plumtree.Remote.PRC.Collaboration.Document Namespace

Provides classes and interfaces for creating, modifying, managing, and querying Collaboration document folders and documents. See Document Examples.

Since IDK 5.1

Namespace hierarchy

Classes

ClassDescription
DocumentFolderQueryOrder Represents a pair that consists of a DocumentFolderAttributes attribute and a boolean value indicating whether to order ascending. This class is used in IFilter.
DocumentQueryOrder Represents a pair that consists of a DocumentAttributes attribute and a boolean value indicating whether to order ascending. This class is used in IFilter.
DocumentVersion 

Interfaces

InterfaceDescription
IDocument Interface that represents a document, or more specifically, a collection of metadata about a Collaboration document. To retrieve an existing document, use IDocumentManager.GetDocument. To insert a new document, first obtain a new empty IDocument using IDocumentManager.CreateNewDocument, set some of the metadata such as author, then call IDocumentManager.InsertNewDocument. To retrieve the actual content of a saved document, call GetContentAsInputStream() Any modification of a document will not be stored permanently until Store is called.
IDocumentFilter Interface for filters used for querying Collaboration documents.
IDocumentFolder Interface that represents a document folder or a collection of metadata about a document folder. To retrieve an existing folder use IDocumentManager.GetFolder. To insert a newly created folder, first obtain a new empty folder using IDocumentManager.CreateNewFolder, set some of the metadata, then store the document folder by calling IDocumentManager.InsertNewFolder. Any modifications made to the metadata of a document folder will not be stored permanently until Store is called.
IDocumentFolderFilter Filters used for querying document folders.
IDocumentManager Interface for managing IDocument and IDocumentFolder functionality. It handles creation, copying, removal and querying for documents and document folders.

See Document Examples.
IDocumentVersion

Enumerations

EnumerationDescription
DocumentAttributes An enumerated type used to describe the specific fields that can be used in constructing a DocumentQueryOrder for documents.
DocumentFilterTypes An enumerated type used to describe the possible filter types for documents. It is used in IDocumentFilter.FilterType.
DocumentFolderAttributes An enumerated type used to describe the specific fields that can be used in constructing a DocumentFolderQueryOrder for document folders.
DocumentFolderPermissions An enumerated type used to describe the permissions for document folders. It is used in IDocument.IsActionAllowed method.
DocumentPermissions An enumerated type used to describe the permissions for Documents. This is used in IDocument.IsActionAllowed method.