8 Folders Services

This chapter describes the services available when using and customizing Folders. The location for specific Folders services are listed within each individual service.

This chapter covers the following topics:

8.1 About Folder Services

A typical service entry is similar to the following:

COLLECTION_ADMIN_SELECT_COLLECTION
DocService 56 COLLECTION_PROFILE_SELECT_COLLECTION null null !csCollectionUnableToRetrieveCollections
3:evaluate:<$isAdmin="true"$>::null
3:loadAdminQueryConfig:::null

In this example:

  • the first line indicates the service name: COLLECTION_ADMIN_SELECT_COLLECTION.

  • the second line and third lines list the service's attributes:

    • Service class: DocService.

    • Access level: 54, indicating this is Scriptable, Global, and Admin permissions.

    • Template: COLLECTION_PROFILE_SELECT_COLLECTION

    • Service type: null

    • Subjects Notified: null

    • Error message and parameter used for error message: Unable to Retrieve Collections

  • The remainder of the entry lists the service's actions, each line designating one action:

    • action type: for example, 3, indicating a Java method.

    • action name: for example, evaluate

    • action parameters: for example, <$isAdmin="true"$>. If no parameters are specified, double colons (::) are included.

    • action control mask: for example, 0, indicating 'Ignore error' or 2, indicating 'Must exist (at least one record must be returned by the query). If no control mask is specified, double colons (::) or 0 is included.

    • action error message, such as Item No Longer In History, or null if no message is available.

Each element of the service's action is separated by a colon (:).

Important:

All services have at least one required parameter. The IdcService parameter takes the name of the service as its argument. If other parameters are required, they are noted in the description of the service.

See "Customizing Services" for details about a service's attributes and actions.

8.2 Folder Services

Individual service types are noted in each service description. The following services are described in this section:

8.2.1 COLLECTION_ADD

Service that creates a Oracle Content Server folder. The most likely errors are mismatched parameters or the folder does not exist.

Service Type: Service (general service)

Location: IdcHomeDir/components/folders_g/resources/folders_service.htm

Additional Required Service Parameters

  • hasParentCollectionID: Defines (true/false) whether the folder being added as a parent folder. If set to true, dParentCollectionID must be defined.

  • dCollectionName: The folder name.

  • dParentCollectionID: The folder ID for the parent folder. Used when hasParentCollectionID is set to true.

  • dCollectionOwner: The folder owner (defined when the folder is created).

Example

IdcService=COLLECTION_ADD
hasParentCollectionID=true
dCollectionName=Products
dParentCollectionID=1
dCollectionOwner=bsmith

8.2.2 COLLECTION_ADD_LINK

Service that adds a shortcut to a Oracle Content Server folder. The shortcut references the folder using either the folder ID or the actual path to the folder. The most likely errors are mismatched parameters or the folder does not exist.

Service Type: Service (general service)

Location: IdcHomeDir/components/folders_g/resources/folders_services.htm

Additional Required Service Parameters

  • dCollectionID: The folder ID of the parent folder referenced by the shortcut.

  • dDocID: The content ID. Used when making a shortcut to a content item rather than a folder.

  • dLinkName: The shortcut destination.

  • dLinkType: The shortcut type. Must be either COLLECTION or CONTENT.

  • tohasCollectionID: Defines (true/false) whether the folder is referenced using the folder ID. If set to true, todCollectionID nust be defined.

  • todCollectionID: The folder ID that the shortcut references.

Example

IdcService=COLLECTION_ADD_LINK
dCollectionID=194
dLinkType=COLLECTION
tohasCollectionID=false
todCollectionID=" "

8.2.3 COLLECTION_ADD_MOUNT

Service that maps a folder to a local file system. Whenever the folder changes, the mapped directory is updated.

There is no security on this directory.

The most likely errors are mismatched parameters or the folder does not exist.

Service Class: Search Service

Location: IdcHomeDir/components/Folders/resources/folders_mounted_service.htm

8.2.4 COLLECTION_BROWSE

Service that loads the defined folder metadata and the folder path. The most likely errors are mismatched parameters or the folder does not exist.

Service Class: Search Service

Location: IdcHomeDir/components/folders_g/resources/folders_interface_service.htm

Additional Required Service Parameters

  • dCollectionID: The folder ID of the parent folder referenced by the shortcut.

  • For example, ="+id+"

  • hasCollectionID: Defines (true/false) whether the folder has an assigned collection ID.

  • changeToUser: Reassigns the folder to a different user.

Example

IdcService=COLLECTION_BROWSE
dCollectionID="+id+"
hasCollectionID=true
changeToUser=bsmith

8.2.5 COLLECTION_CHECKIN_NEW

Service that checks new content into a folder. The most likely errors are mismatched parameters or the folder does not exist.

Service Class: Doc Service

Location: IdcHomeDir/components/folders_g/resources/folders_service.htm

8.2.6 COLLECTION_CHECKIN_REVISION

Service that checks in a revision to an existing folder.

This service sends the checkin request to one of the following subservices, which are the same subservices called during checkin through the browser or Repository Manager application. (These subservices are not called during a Batch Loader or Archive import.)

  • COLLECTION_CHECKIN_SEL_SUB

  • CHECKIN_SEL_FORM

  • COLLECTION_SEARCH_CONTENT

  • CHECKOUT_BY_NAMENULL

  • COLLECTION_LOCKNULL

  • DELETE_REVNULL

This service checks security to determine if the user has sufficient permission to check in the folder. The most likely errors are mismatched parameters or the folder does not exist.

Service Class: Doc Service

Location: IdcHomeDir/components/folder/resources/folders_service.htm

8.2.7 COLLECTION_CHECKIN_SEL_SUB

Service that checks in a revision to an existing folder under certain conditions. Used when the folder exists on the system but no valid revision was specified or when the content item is checked out (but not in a workflow).

The most likely errors are mismatched parameters or the folder does not exist.

Service Class: Doc Service

Location: IdcHomeDir/components/folders_g/resources/folders_service.htm

8.2.8 COLLECTION_COPY_ALL

Service that copies all content residing in the specified folder to the destination folder. The most likely errors are mismatched parameters or the folder does not exist.

Service Type: Service (general service)

Location: IdcHomeDir/components/folders_g/resources/folders_service.htm

8.2.9 COLLECTION_COPY_COLLECTION

Service that copies a specified Oracle Content Server folder. The most likely errors are mismatched parameters or the folder does not exist.

Service Type: Service (general service)

Location: IdcHomeDir/components/folders_g/resources/folders_service.htm

8.2.10 COLLECTION_COPY_ITEM

Service that copies a single content item in a folder to a destination folder. The most likely errors are mismatched parameters or the folder does not exist.

Service Type: File Service

Location: IdcHomeDir/components/folders_g/resources//folders_service.htm

8.2.11 COLLECTION_COPY_LOT

Service that copies a group of folders. The most likely errors are mismatched parameters or the folder does not exist.

Service Type: Service (general service)

Location: IdcHomeDir/components/folders_g/resources/folders_service.htm

8.2.12 COLLECTION_DELETE_ALL

Service that deletes all content residing in a folder. The most likely errors are mismatched parameters or the folder does not exist.

Service Type: Service (general service)

Location: IdcHomeDir/components/folders_g/resources/folders_service.htm

8.2.13 COLLECTION_DELETE_COLLECTION

Service that deletes a specified Oracle Content Server folder. The most likely errors are mismatched parameters or the folder does not exist.

Service Type: Search Service

Location: IdcHomeDir/components/folders_g/resources/olders_service.htm

8.2.14 COLLECTION_DELETE_ITEM

Service that deletes a single content item in a folder. The most likely errors are mismatched parameters or the folder does not exist.

Service Type: Doc Service

Location: IdcHomeDir/components/folders_g/resources/folders_service.htm

8.2.15 COLLECTION_DELETE_LOT

Service that deletes a group of folders. The most likely errors are mismatched parameters or the folder does not exist.

Service Type: Service (general service)

Location: IdcHomeDir/components/folders_g/resources/folders_service.htm

Additional Required Service Parameters

  • tohasCollectionID: Defines (true/false) if the collection is referenced using the collection ID. If set to true, todCollectionID nust be defined.

  • todCollectionID: The folder ID that the shortcut references.

  • todCollectionPath: The URL path to the folder.

Example

IdcService=COLLECTION_DELETE_LOT
tohasCollectionID=true
todCollectionID=194
todCollectionPath=""

8.2.16 COLLECTION_DISPLAY

Service that loads folder metadata and displays the defined folder. The most likely errors are mismatched parameters or the folder does not exist.

Service Type: Search Service

Location: IdcHomeDir/components/folders_g/resources/folders_interface_service.htm

Additional Required Service Parameters

  • hasCollectionID: Defines (true/false) if the folder has an assigned collection ID.

  • dCollectionPath: The folder containing the folder.

  • orderby: Defines the column to sort on.

  • direction: Defines the direction of the order as descending (DESC) or ascending (ASC).

Example

IdcService=COLLECTION_DISPLAY
dCollectionPath=%2fContent%20Server%20Folders%2f
orderby=dName
direction=ASC

8.2.17 COLLECTION_EDIT

Service that edits a Oracle Content Server folder. The most likely errors are mismatched parameters or the folder does not exist.

Service type: Doc Service

Location: IdcHomeDir/components/folders_g/resources/folders_service.htm

Additional Required Service Parameters

  • hasCollectionID: Defines (true/false) if the folder has an assigned collection ID.

  • dCollectionID: The folder ID of the parent folder referenced by the shortcut.

8.2.18 COLLECTION_GET_ADMIN_CONFIG

Service that retrieves the current global values defined for the folders hierarchy. No specific collection is passed. The most likely errors are mismatched parameters or the folder does not exist.

Location: IdcHomeDir/components/folders_g/resources/folders_service.htm

8.2.19 COLLECTION_GET_ADMIN_INHERIT_CONFIG

Service Type: Service (general service)

Service that retrieves the current metadata fields that are propagated when it is requested. The most likely errors are mismatched parameters or the folder does not exist.

Location: IdcHomeDir/components/folders_g/resources/folders_service.htm

8.2.20 COLLECTION_GET_ADMIN_MARKED_CONFIG

Service that retrieves 'special' folders and their disabled/enabled status.

A disabled folder does not show up in the hierarchy. An enabled folder is accessible.

The most likely errors are mismatched parameters or the folder does not exist.

Service Type: Service (general service)

Location: IdcHomeDir/components/folders_g/resources/folders_service.htm

8.2.21 COLLECTION_GET_ADMIN_META_CONFIG

Service that retrieves the fields from the administration metadata ResultSet for the defined folder. The most likely errors are mismatched parameters or the folder does not exist.

Service Type: Service (general service)

Location: IdcHomeDir/components/folders_g/resources/folders_service.htm

8.2.22 COLLECTION_GET_ADMIN_METADATA_DEFAULTS

Service that retrieves the option lists for custom fields, default metadata, and the administration metadata of the folder configuration (retrieves field defaults).

The most likely errors are mismatched parameters or the folder does not exist.

Service Type: Doc Service

Location: IdcHomeDir/components/folders_g/resources/folders_service.htm

8.2.23 COLLECTION_GET_ADMIN_MOUNTED_CONFIG

Service that retrieves the folders system configuration for the local folder. The most likely errors are mismatched parameters or the folder does not exist.

Service Type: Search Service

Location: IdcHomeDir/components/folders_g/resources/folders_mounted_service.htm

8.2.24 COLLECTION_GET_ARCHIVE

Service that downloads the archived folder structure of the specified folder. This service does not download the contents of a folder. The most likely errors are mismatched parameters or the folder does not exist.

Service Type: File Service

Location: IdcHomeDir/components/folders_g/resources/folders_service.htm

8.2.25 COLLECTION_GET_BRANCH

Service that retrieves the structure of the specified folder and its subfolders. The most likely errors are mismatched parameters or the folder does not exist.

Service Type: Service (general service)

Location: IdcHomeDir/components/folders_g/resources/folders_service.htm

8.2.26 COLLECTION_GET_COLLECTION

Service that retrieves all the subfolders of the specified folder. Compare COLLECTION_GET_COLLECTIONS. The most likely errors are mismatched parameters or the folder does not exist.

Service Type: Search Service

Location: IdcHomeDir/components/folders_g/resources/folders_service.htm

8.2.27 COLLECTION_GET_COLLECTIONS

Service that retrieves the Oracle Content Server folder. Compare COLLECTION_GET_COLLECTION. The most likely errors are mismatched parameters or the folder does not exist.

Service Type: Search Service

Location: IdcHomeDir/components/folders_g/resources/folders_service.htm

Example

To retrieve a listing of hierarchical collections, the required parameters are:

hasCollectionID=1
dCollectionID=collectionnumber

8.2.28 COLLECTION_GET_CONTENT_FILE

Service that downloads the first content item of the specified collection that matches the metadata of the item passed in (excluding revisions). The most likely errors are mismatched parameters or the folder does not exist.

Service Type: File Service

Location: IdcHomeDir/components/folders_g/resources/folders_service.htm

8.2.29 COLLECTION_GET_CONTENTS

Service that retrieves all the sub-content of the specified folder. The most likely errors are mismatched parameters or the folder does not exist.

Service Type: Search Service

Location: IdcHomeDir/components/folders_g/resources/folders_service.htm

8.2.30 COLLECTION_GET_FILE

Service that determines the type of item specified and then downloads its content. The item may or may not be a content item. The most likely errors are mismatched parameters or the folder does not exist.

Service Type: File Service

Location: IdcHomeDir/components/folders_g/resources/folders_service.htm

8.2.31 COLLECTION_GET_INFO

Service that retrieves Oracle Content Server folder information for the local folder. The most likely errors are mismatched parameters or the folder does not exist.

Service Type: Search Service

Location: IdcHomeDir/components/folders_g/resources/folders_service.htm

8.2.32 COLLECTION_GET_LINKS

Service that retrieves the specified shortcut (dLinkID). The most likely errors are mismatched parameters or the folder does not exist.

Service Type: Service (general service)

Location: IdcHomeDir/components/folders_g/resources/folders_service.htm

8.2.33 COLLECTION_GET_META_MAPPING

Service used to retrieve the WebDAV equivalent properties of the specified folder. The most likely errors are mismatched parameters or the folder does not exist.

Service Type: Service (general service)

Location: IdcHomeDir/components/folders_g/resources/folders_service.htm

8.2.34 COLLECTION_GET_PROFILE_METADATA_DEFAULTS

Service used to retrieve the Default Information Field Configuration for a specific user. The most likely errors are mismatched parameters or the folder does not exist.

Service Type: Service (general service)

Location: IdcHomeDir/components/folders_g/resources/folders_service.htm

8.2.35 COLLECTION_GET_PROFILE_METADATA_REVISION_DEFAULTS

Service that retrieves the Revision Information Field Configuration values for a specific user. The most likely errors are mismatched parameters or the folder does not exist.

Service Type: Service (general service)

Location: IdcHomeDir/components/folders_g/resources/folders_service.htm

8.2.36 COLLECTION_GET_REFERENCE

Service used to determine what type of item the path being passed in is referencing (Link, Content, or Folder). The most likely errors are mismatched parameters or the folder does not exist.

Service Type: Service (general service)

Location: IdcHomeDir/components/folders_g/resources/folders_service.htm

8.2.37 COLLECTION_GET_SEARCH_FORM

Service that retrieves the folder specific search form. The most likely errors are mismatched parameters or the folder does not exist.

Search Type: Service (general service)

Location: IdcHomeDir/components/folders_g/resources/folders_service.htm

8.2.38 COLLECTION_GET_SYSTEM_FILE

Service that retrieves the files that are usually dynamically built at the time of the request and have no counterpart on the system. The most likely errors are mismatched parameters or the folder does not exist.

Service Type: File Service

Location: IdcHomeDir/components/folders_g/resources/folders_service.htm

8.2.39 COLLECTION_GET_USER_CONFIG

Service that retrieves user specific configuration for the display and behavior of their folder structure. The most likely errors are mismatched parameters or the folder does not exist.

Service Type: Service (general service)

Location; IdcHomeDir/components/folders_g/resources/folders_service.htm

8.2.40 COLLECTION_INDEX_MOUNTS

Service that updates content that has been demoted by the Oracle Content Server indexer to the local folder by the new version. The most likely errors are mismatched parameters or the folder does not exist.

Service Type: Service (general service)

Location: IdcHomeDir/components/folders_g/resources/folders_mounted_service.htm

8.2.41 COLLECTION_INFO

Service that retrieves the metadata associated with this particular folder. The most likely errors are mismatched parameters or the folder does not exist.

Service Type: Doc Service

Location: IdcHomeDir/components/folders_g/resources/folders_service.htm

Additional Required Service Parameters

  • hasCollectionID: Defines (true/false) if the folder has an assigned collection ID.

  • dCollectionID: The folder ID of the parent folder referenced by the shortcut.

8.2.42 COLLECTION_ISVALID_META

Service that verifies that the folder can be added by the item of the specified metadata. The most likely errors are mismatched parameters or the folder does not exist.

Service Type: Service (general service)

Location: IdcHomeDir/components/folders_g/resources/folders_service.htm

8.2.43 COLLECTION_LOCK

Service that checks out a folder by name (dDocName) and locks the folder. The most likely errors are mismatched parameters or the folder does not exist.

Service Type: Doc Service

Location: IdcHomeDir/components/folders_g/resources/folders_service.htm

8.2.44 COLLECTION_MOVE_ALL

Service that moves the content in a specified folder to the destination folder. The most likely errors are mismatched parameters or the folder does not exist.

Service Type: Service (general service)

Location: IdcHomeDir/components/folders_g/resources/folders_service.htm

8.2.45 COLLECTION_MOVE_COLLECTION

Service that moves a folder. Compare COLLECTION_MOVE_ALL. The most likely errors are mismatched parameters or the folder does not exist.

Service Type: Search Service

Location: IdcHomeDir/components/folders_g/resources/folders_service.htm

8.2.46 COLLECTION_MOVE_ITEM

Service that moves a single content item (or link) from the specified folder to the destination folder. If an item with the same file name exists in the target folder, the move fails. The most likely errors are mismatched parameters or the folder does not exist.

Service Type: Doc Service

Location: IdcHomeDir/components/folders_g/resources/folders_service.htm

8.2.47 COLLECTION_MOVE_LOT

Service that can move multiple references to folders and content items to a destination folder. The most likely errors are mismatched parameters or the folder does not exist.

Service Type: Service (general service)

Location: IdcHomeDir/components/folders_g/resources/folders_service.htm

Additional Required Service Parameters

  • tohasCollectionID: Defines (true/false) if the folder is referenced using the folder ID.

  • If set to true, todCollectionID must be defined.

  • todCollectionID: The destination folder collection ID.

  • todCollectionPath: The URL path to the folder.

Example

IdcService=COLLECTION_MOVE_LOT
tohasCollectionID=true
todCollectionID=194
todCollectionPath=""

8.2.48 COLLECTION_NEW

Service used to create a new folder. The most likely errors are mismatched parameters or the folder does not exist.

Service Type: Doc Service

Location: IdcHomeDir/components/folders_g/resources/folders_service.htm

Additional Required Service Parameters

  • hasParentCollectionID: Defines (true/false) if the folder being added as a parent folder. If set to true, dParentCollectionID must be defined.

  • dParentCollectionID: The folder ID for the parent folder. Used when hasParentCollectionID is set to true.

  • dCollectionInherit: Used to inherit folder metadata.

Example

IdcService=COLLECTION_NEW
hasParentCollectionID=true
dParentCollectionID=1
dCollectionInherit=0

8.2.49 COLLECTION_PROFILE_UPDATE_COLUMNS

Service that updates user hierarchy columns. The most likely errors are mismatched parameters or the folder does not exist.

Service Type: Doc Service

Location: IdcHomeDir/components/folders_g/resources/folders_service.htm

8.2.50 COLLECTION_REBUILD_MOUNT

Service that rewrites the files of the specified local folder. The most likely errors are mismatched parameters or the folder does not exist.

Service Type: Search Service

Location: IdcHomeDir/components/folders_g/resources/folders_mounted_service.htm

8.2.51 COLLECTION_REMOVE_MOUNT

Service that removes the specified local folder. The most likely errors are mismatched parameters or the folder does not exist.

Service Type: Search Service

Location: IdcHomeDir/components/folders_g/resources/folders_mounted_service.htm

8.2.52 COLLECTION_RESTORE_COLLECTION

Service that restores a folder that is currently in the 'Trash' folder to its original location. The most likely errors are mismatched parameters or the folder does not exist.

Service Type: Search Service

Location: IdcHomeDir/components/folders_g/resources/folders_service.htm

8.2.53 COLLECTION_RESTORE_ITEM

Service that restores an item that is currently in the 'Trash' folder to its original location. The most likely errors are mismatched parameters or the folder does not exist.

Service Type: Search Service

Location: IdcHomeDir/components/folders_g/resources/folders_service.htm

8.2.54 COLLECTION_SEARCH_CONTENT

Service that retrieves all content that matches all of the metadata that is passed in for a content item. The most likely errors are mismatched parameters or the folder does not exist.

Service Type: Search Service

Location: IdcHomeDir/components/folders_g/resources/folders_service.htm

8.2.55 COLLECTION_SEARCH_RESULTS

Service that displays the search results of a folder search. The most likely errors are mismatched parameters or the folder does not exist.

Service Type: Search Service

Location: IdcHomeDir/components/folders_g/resources/folders_service.htm

8.2.56 COLLECTION_SET_ARCHIVE

Service that takes the uploaded archive and applies it to the system. This service deletes any folders that are in conflict with the archive. The most likely errors are mismatched parameters or the folder does not exist.

Service Type: Doc Service

Location: IdcHomeDir/components/folders_g/resources/olders_service.htm

8.2.57 COLLECTION_SET_USER_CONFIG

Service that sets the user configuration for the display and behavior of their folder structure. The most likely errors are mismatched parameters or the folder does not exist.

Service Type: Service (general service)

Location: IdcHomeDir/components/folders_g/resources/folders_service.htm

8.2.58 COLLECTION_UNLOCK

Service that undoes a checkout of a content item and makes it available for use. This service frees content after a COLLECTION_LOCK. The most likely errors are mismatched parameters or the folder does not exist.

Service Type: Doc Service

Location: IdcHomeDir/components/folders_g/resources/folders_service.htm

8.2.59 COLLECTION_UPDATE

Service that updates information for a collection. The most likely errors are mismatched parameters or the folder does not exist.

Service Type: Service (general service)

Location: IdcHomeDir/components/folders_g/resources/folders_service.htm

Additional Required Service Parameters

  • dCollectionName: The folder name.

  • hasParentCollectionID: Defines (true/false) whether the folder being added as a parent folder. If set to true, dParentCollectionID must be defined.

  • dParentCollectionID: The folder ID for the parent folder. Used when hasParentCollectionID is set to true.

  • dCollectionOwner: The folder owner (defined when the folder is created).

Example

IdcService=COLLECTION_UPDATE
dCollectionName=Products
dParentCollectionID=1
dCollectionOwner=bsmith

8.2.60 COLLECTION_UPDATE_ADMIN_CONFIG

Service that updates the folders system configuration settings. The most likely errors are mismatched parameters or the folder does not exist.

Service Type: Service (general service)

Location: IdcHomeDir/components/folders_g/resources/folders_service.htm

8.2.61 COLLECTION_UPDATE_ADMIN_INHERIT_CONFIG

Service that updates the folders system configuration setting by inheriting the metadata from an existing folder (from which metadata is propagated). The most likely errors are mismatched parameters or the folder does not exist.

Service Type: Service (general service)

Location: IdcHomeDir/components/folders_g/resources/folders_service.htm

8.2.62 COLLECTION_UPDATE_ADMIN_METADATA_DEFAULTS

Service that updates the folders system metadata field default system settings. The most likely errors are mismatched parameters or the folder does not exist.

Service Type: Doc Service

Location: IdcHomeDir/components/folders_g/resources/folders_service.htm

8.2.63 COLLECTION_UPDATE_ALL

Service that updates all items in a collection and changes the defined metadata. The most likely errors are mismatched parameters or the folder does not exist.

Service Type: Service (general service)

Location: IdcHomeDir/components/folders_g/resources/folders_service.htm

8.2.64 COLLECTION_UPDATE_ITEM

Service that updates a specific item in a collection and changes the defined metadata. Folders related service (table Folders_Services). The most likely errors are mismatched parameters or the folder does not exist.

Service Type: Doc Service

Location: IdcHomeDir/components/folders_g/resources/folders_service.htm

8.2.65 COLLECTION_UPDATE_META

Service that updates folder metadata. The most likely errors are mismatched parameters or the folder does not exist.

Service Type: Meta Service

Location: IdcHomeDir/components/folders_g/resources/folders_service.htm

8.2.66 COLLECTION_UPDATE_META_TABLE

Service that updates a folder metadata table. The most likely errors are mismatched parameters or the folder does not exist.

Service Type: Meta Service

Location: IdcHomeDir/components/folders_g/resources/folders_service.htm

8.2.67 COLLECTION_UPDATE_MOUNTS

Service that updates the files of the specified local folder. The most likely errors are mismatched parameters or the folder does not exist.

Service Type: Search Service

Location: IdcHomeDir/components/folders_g/resources/folders_mounted_service.htm

8.2.68 COLLECTION_UPDATE_PROFILE_METADATA_DEFAULTS

Service that updates the profile metadata field defaults. The most likely errors are mismatched parameters or the folder does not exist.

Service Type: Doc Service

Location: IdcHomeDir/components/folders_g/resources/folders_service.htm

8.2.69 COLLECTION_UPDATE_PROFILE_METADATA_REVISION_DEFAULTS

Service that updates the profile metadata field defaults of a revision. The most likely errors are mismatched parameters or the folder does not exist.

Service Type: Doc Service

Location: IdcHomeDir/components/folders_g/resources//folders_service.htm

8.2.70 COLLECTION_UPDATE_STRUCTURE

Service that refreshes the folder cache. The most likely errors are mismatched parameters or the folder does not exist.

Service Type: Meta Service

Location: IdcHomeDir/components/folders_g/resources/folders_service.htm

8.2.71 GOTO_COLLECTION

Service that displays a folder. The most likely errors are mismatched parameters or the folder does not exist.

Service Type: Doc Service

Location: IdcHomeDir/components/folders_g/resources/folders_service.htm

8.2.72 GOTO_ROOT_COLLECTION

Service that displays the root folder. The most likely errors are mismatched parameters or the folder does not exist.

Service Type: Doc Service

Location: IdcHomeDir/components/folders_g/resources//folders_service.htm

8.2.73 GET_OPTION_LISTS

Folders-related service that retrieves the option lists. The most likely errors are mismatched parameters or the folder does not exist.

Service Type: Service (general service)

Location: IdcHomeDir/components/folders_g/resources/folders_service.htm